:root {
    --primary-color: #3b5765;
    --secondary-color: #a657ff;
    --accent-color: #7dff00;
    --dark-color: #181a20;
    --light-color: #f4f4f4;
    --success-color: #28a745;
    --glow-color: rgba(166, 87, 255, 0.5);
    --glow-color-secondary: #0365ed;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: var(--dark-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Hero Section */
.hero {
    position: relative;
    min-height: 40vh;
    padding: 20px 0;
    overflow: hidden;
    background-color: #181a209f;
    margin: auto;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../Images/FullBG.png') center/cover;
    opacity: 0.03;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-icon {
    position: absolute;
    color: var(--secondary-color);
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay);
    
}

.float-icon:nth-child(1) { top: 15%; left: 10%; font-size: 2rem; }
.float-icon:nth-child(2) { top: 45%; left: 5%; font-size: 1.5rem; }
.float-icon:nth-child(3) { top: 25%; right: 15%; font-size: 2.5rem; }
.float-icon:nth-child(4) { top: 60%; right: 8%; font-size: 2rem; }
.float-icon:nth-child(5) { top: 85%; left: 35%; font-size: 1.8rem; }



@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding-top: 40px;
}

.hero-content {
    max-width: 600px;
    margin: 0 0 100px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 20px 0;
    color: white;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--secondary-color);
    opacity: 0.1;
    z-index: -1;
    transform: skew(-15deg);
}

.subheadline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #2063ec, #a657ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--glow-color);
    background: linear-gradient(135deg, #2063ec, var(--secondary-color));
}

.secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
}

.hero-screens {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.screen {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
    opacity: 0.9;
}

.system-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--glow-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screen:hover .glow-effect {
    opacity: 1;
}

.screen-1 {
    width: 45%;
    height: auto;
    right: 0;
    top: 0;
    z-index: 5;
    transform: rotate(2deg);
}

.screen-2 {
    width: 70%;
    height: auto;
    left: 0;
    top: 100px;
    z-index: 4;
    transform: rotate(-5deg);
}

.screen-3 {
    width: 75%;
    height: auto;
    right: 5%;
    top: 200px;
    z-index: 3;
    transform: rotate(3deg);
}

.screen-4 {
    width: 60%;
    height: auto;
    left: 5%;
    top: 300px;
    z-index: 2;
    transform: rotate(-4deg);
}

.screen-5 {
    width: 95%;
    height: auto;
    right: 5%;
    top: 330px;
    z-index: 1;
    transform: rotate(5deg);
}

@media (max-width: 992px) {
    .hero-screens {
        height: 500px;
        margin-top: 40px;
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .hero-screens {
        height: 400px;
        transform: scale(0.8);
    }

    
    .screen-1 { width: 90%; }
    .screen-2 { width: 75%; top: 80px; }
    .screen-3 { width: 80%; top: 160px; }
    .screen-4 { width: 65%; top: 240px; }
    .screen-5 { width: 70%; top: 280px; }
}

/* Social Proof Section */
.social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    margin-right: -15px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(43, 138, 196, 0.2);
}

.avatar:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(43, 138, 196, 0.4);
    z-index: 2;
}

.social-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

.promotion-text {
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: -20px;
    
    text-align: center;
    width: 100%;
}

.social-text .highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .social-proof {
        flex-direction: column;
        gap: 15px;
    }

    .avatar {
        width: 40px;
        height: 40px;
        margin-right: -12px;
    }

    .social-text {
        font-size: 1rem;
    }
}

/* Feature Badge */
.feature-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(43, 138, 196, 0.1);
    border: 1px solid rgba(43, 138, 196, 0.3);
    border-radius: 10px;
    margin-top: 30px;
}

.feature-badge i {
    font-size: 24px;
    color: var(--secondary-color);
}

.feature-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Floating Elements */
.hero-visuals {
    position: relative;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(43, 138, 196, 0.2);
    border: 1px solid rgba(43, 138, 196, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    animation: float 6s infinite ease-in-out;
}

.chart-icon {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.dollar-icon {
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

.percent-icon {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Floating Screens */
.floating-screens {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 60px;
}

.screen {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(36, 6, 63, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
    opacity: 0.9;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.screen-1 {
    width: 45%;
    left: 30%;
    top: 0;
    transform: rotate(-5deg) translateZ(-20px);
    z-index: 4;
}

.screen-2 {
    width: 35%;
    left: 10%;
    top: 50px;
    transform: rotate(-5deg) translateZ(-20px);
    z-index: 3;
}

.screen-3 {
    width: 35%;
    right: 10%;
    top: 50px;
    transform: rotate(5deg) translateZ(-20px);
    z-index: 3;
}

.screen-4 {
    width: 30%;
    left: 35%;
    top: 200px;
    transform: rotate(-3deg) translateZ(-40px);
    z-index: 2;
}

.screen:hover {
    transform: translateY(-10px) scale(1.02);
    opacity: 1;
    box-shadow: 0 20px 40px rgba(43, 138, 196, 0.4);
    z-index: 5;
}

.system-screen {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(43, 138, 196, 0.3);
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(43, 138, 196, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screen:hover .glow-effect {
    opacity: 1;
}

/* Problem Section */
.problem {
    position: relative;
    padding: 30px 0 50px;
    background-color: var(--dark-color);
    overflow: hidden;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(43, 138, 196, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(43, 138, 196, 0.1) 0%, transparent 50%);
    opacity: 0.8;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0px;
}

.section-subtitle {
    font-size: 1.4rem;
    color: var(--secondary-color);
    opacity: 0.9;
    margin: 0 10px;
}

.carousel-container {
    position: relative;
}

.problem-grid.carousel-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden; /* garante que não bloqueie gesto vertical */
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y; /* libera gestos nas duas direções */
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 15px 0; 
    gap: 30px;
 
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}

/* Carousel Navigation Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(59, 87, 101, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.8;
}

.carousel-button:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

.carousel-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

/* Problem Grid - Carousel Track 
.problem-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    margin: 40px 0;
    overflow-x: auto;
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y; 
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    position: relative;
    scroll-padding: 0 30px;
}*/

.feature-card {
    flex: 0 0 300px;
    min-width: 300px;
    background: rgba(43, 138, 196, 0.05);
    border: 1px solid rgba(43, 138, 196, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: start;
    flex-shrink: 0;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 138, 196, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(43, 138, 196, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(43, 138, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .card-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.feature-card:hover .card-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .card-link i {
    transform: translateX(5px);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--glow-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover .card-glow {
    opacity: 0.1;
}

@media (max-width: 992px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .problem {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 30px 25px;
    }
}

/* Solution Section */
.solution {
    padding: 50px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}



.solution::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 45%, 
        rgba(43, 138, 196, 0.05) 45%,
        rgba(43, 138, 196, 0.05) 55%,
        transparent 55%);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none; /* não bloquear gestos de rolagem nos filhos */
}

.solution .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.solution .floating-element {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(43, 138, 196, 0.1) 0%, transparent 70%);
    animation: float 15s infinite ease-in-out;
    z-index: 1;
}

.solution .floating-element:nth-child(1) {
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.solution .floating-element:nth-child(2) {
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    animation-delay: -7s;
}

.solution .floating-element:nth-child(3) {
    top: 50%;
    left: -80px;
    width: 120px;
    height: 120px;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(0, 30px) rotate(-5deg);
    }
    75% {
        transform: translate(-20px, -10px) rotate(3deg);
    }
}

.solution h2 {
    margin-bottom: 20px;
}

.solution .benefits-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    margin: 40px 0;
    overflow-x: auto;
    overflow-y: hidden; /* mantém só horizontal visível */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y; /* permitir ambos gestos */
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    position: relative; /* eleva acima do ::after do section */
    z-index: 2;
}

.solution .benefits-grid::-webkit-scrollbar {
    display: none;
}

.solution .benefit-card {
    flex: 0 0 300px;
    min-width: 300px;
    background: rgba(43, 138, 196, 0.05);
    border: 1px solid rgba(43, 138, 196, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.solution .benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(43, 138, 196, 0.3);
}

.solution .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(43, 138, 196, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.solution .card-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.solution .benefit-card:hover .card-icon {
    background: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

.solution .benefit-card:hover .card-icon i {
    color: white;
}

.solution h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.solution p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.solution .learn-more {
    margin-top: 40px;
    text-align: center;
}

.solution .learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--secondary-color), #1d5f88);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.solution .learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--glow-color);
    background: linear-gradient(135deg, #1d5f88, var(--secondary-color));
}

.solution .learn-more-btn i {
    transition: transform 0.3s ease;
}

.solution .learn-more-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .solution {
        padding: 60px 0px;
        
    }

    .solution .benefits-grid {
        gap: 20px;
        margin-top: 30px;
        padding: 15px 15px;
        justify-content: flex-start;
    }

    .solution .benefit-card {
        flex: 0 0 280px;
        min-width: 280px;
        padding: 25px;
        text-align: center;
    }

    .solution .card-icon {
        width: 50px;
        height: 50px;
    }

    .solution .card-icon i {
        font-size: 1.3rem;
    }

    .solution .learn-more-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

/* Comparison Section */
.comparison {
    position: relative;
    padding: 50px 0;
    background-color: var(--dark-color);
    overflow: hidden;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(43, 138, 196, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(43, 138, 196, 0.1) 0%, transparent 50%);
    opacity: 0.8;
    z-index: 1;
    pointer-events: none; /* não bloquear rolagem/gestos */
}

/*.problem-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    margin: 40px 0;
    overflow-x: auto;
    overflow-y: hidden; 
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y; 
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}*/

/* Hide scrollbar for the carousel */
.problem-grid::-webkit-scrollbar {
    display: none;
}

/* Feature Card Styling */
.problem-grid .feature-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    margin: 0 5px;
}

/* Hover effect for cards */
.problem-grid .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Card content styling */
.problem-grid .feature-card .card-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.problem-grid .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.problem-grid .feature-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.problem-grid .feature-card .card-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.problem-grid .feature-card .card-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.problem-grid .feature-card .card-link:hover {
    color: #fff;
}

.problem-grid .feature-card .card-link:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .carousel-container {
        padding: 0 50px;
    }
    
    .problem-grid .feature-card {
        flex: 0 0 280px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .problem-grid .feature-card {
        flex: 0 0 260px;
        padding: 18px;
    }
    
    .problem-grid .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .problem-grid .feature-card p {
        font-size: 0.95rem;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .carousel-button {
        opacity: 0.6;
    }
    
    .carousel-button:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .problem-grid .feature-card:active {
        transform: scale(0.98);
    }
}

/* Accessibility improvements */
.carousel-button:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(125, 255, 0, 0.3);
}

/* Focus styles for keyboard navigation */
.problem-grid:focus-within .feature-card:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 8px;
}

/* Smooth scrolling for the carousel */
@media (prefers-reduced-motion: reduce) {
    .problem-grid {
        scroll-behavior: auto;
    }
    
    .carousel-button {
        transition: none;
    }
}

.benefit-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(43, 138, 196, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(43, 138, 196, 0.1);
    transition: all 0.3s ease;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 138, 196, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(43, 138, 196, 0.3);
}

.benefit-item:hover::before {
    opacity: 1;
}

.check-icon {
    width: 40px;
    height: 40px;
    background: rgba(196, 171, 43, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.check-icon i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.benefit-item:hover .check-icon {
    background: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

.benefit-item:hover .check-icon i {
    color: white;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    } 
}

@media (max-width: 768px) {
    .comparison {
        padding: 50px 0;
    }

    .benefit-item {
        padding: 20px;
    }

    .check-icon {
        width: 35px;
        height: 35px;
    }

    .benefit-content h3 {
        font-size: 1.1rem;
    }

    .benefit-content p {
        font-size: 0.9rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 40px 0;
    background-color: #0E1824;
    position: relative;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-icon {
    position: absolute;
    color: rgba(43, 138, 196, 0.1);
    animation: float 6s ease-in-out infinite;
}

.bg-icon:nth-child(1) {
    top: 15%;
    left: 15%;
    font-size: 1.2rem;
    animation-delay: -2s;
}

.bg-icon:nth-child(2) {
    top: 25%;
    right: 20%;
    font-size: 1.4rem;
    animation-delay: -1s;
}

.bg-icon:nth-child(3) {
    bottom: 20%;
    left: 10%;
    font-size: 1rem;
    animation-delay: -3s;
}

.bg-icon:nth-child(4) {
    bottom: 30%;
    right: 15%;
    font-size: 1.3rem;
    animation-delay: -4s;
}

.bg-icon:nth-child(5) {
    top: 50%;
    right: 10%;
    font-size: 1.1rem;
    animation-delay: -2.5s;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43, 138, 196, 0.1) 0%, rgba(43, 138, 196, 0) 70%);
}

.bg-circle:nth-child(6) {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    animation: pulse 8s ease-in-out infinite;
}

.bg-circle:nth-child(7) {
    width: 150px;
    height: 150px;
    bottom: -25px;
    right: -25px;
    animation: pulse 8s ease-in-out infinite reverse;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(43, 138, 196, 0.1) 0%,
        rgba(0, 255, 133, 0.05) 100%
    );
    opacity: 0.5;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.pricing .container {
    max-width: 280px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.pricing h2 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-container {
    text-align: center;
    margin: 25px 0;
    background: rgba(43, 138, 196, 0.1);
    border-radius: 6px;
    padding: 10px 15px 10px 15px;
    margin: 12px;
    border: 1px solid rgba(43, 138, 196, 0.1);
}

.price.installment {
    display: block;
    
    margin-bottom: 10px;
    align-items: center;
}


.price-label {
    font-size: 1.5rem;
    color: #00FF85;
    margin-bottom: 5px;
    margin-top: 10px;
}

.price.installment .price-value {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: bold;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    line-height: 1;
    color: #00FF85;
}

.price.installment .currency {
    font-size: 1.5rem;
    margin-bottom: 5px;
    margin-top: 10px;
}

.price.full-price {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price.full-price .price-value {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(43, 138, 196, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
 
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(43, 138, 196, 0.15);
}

.price-card h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: 12px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    text-align: left;
}

.features li {
    color: white;
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features li:last-child {
    border-bottom: none;
}

.features li i {
    color: #00FF85;
    margin-right: 8px;
    font-size: 0.8rem;
}

.cta-button {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    background: #00FF85;
    color: #0A1118;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 10px 0;
}

.cta-button:hover {
    background: #074627;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(137, 218, 179, 0.2);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    padding: 10px;
    border-top: 1px solid rgba(43, 138, 196, 0.1);
}

.guarantee i {
    font-size: 1rem;
    color: #00FF85;
}

.guarantee p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .pricing {
        padding: 30px 0;
    }

    .pricing .container {
        padding: 0px;
    }

    .price-card {
        padding: 12px 10px;
    }

    .price-label {
        font-size: 1.1rem;
    }

    .price.installment .price-value {
        font-size: 3rem;
    }

    .price.installment .currency {
        font-size: 1.8rem;
    }

    .price.full-price {
        font-size: 1rem;
    }

    .features li {
        font-size: 0.75rem;
        padding: 6px 0;
    }

    .cta-button {
        padding: 8px 0;
        font-size: 0.75rem;
    }
}

/* FAQ Section */
.faq {
    padding: 50px 0;
    background: linear-gradient(50deg, rgba(10, 17, 24, 0) 0%, rgba(43, 138, 196, 0.05) 100%);
}

.faq .container {
    max-width: 800px;
    margin: 0 auto;
}

.faq .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(43, 138, 196, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 255, 133, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

.faq-question i {
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: rgba(43, 138, 196, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-answer a {
    color: #00FF85;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #00A3FF;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

    .faq .container {
        padding: 0 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
        padding: 15px 20px;
    }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
}

nav.obrigado {
    justify-content: center;
}

nav.obrigado .logo {
    margin: 0 auto;
    font-size: 2.2rem;
}   

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-color);
    text-decoration: none;
    position: relative;
    text-shadow: 0 0 15px var(--glow-color);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(43, 138, 196, 0.1);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 138, 196, 0.3);
    font-size: 0.95rem;
}

.nav-cta:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--glow-color);
}

@media (max-width: 768px) {
    nav {
        padding: 15px 0;
        margin-bottom: 30px;
        
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .problem-grid,
    .benefits-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }

    
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .cta-group {
        justify-content: center;
    }

    .social-proof {
        justify-content: center;
    }

    .hero-screens {
        height: 400px;
        margin-top: 40px;
    }

    .float-icon {
        display: none;
    }
}

@media (max-width: 768px) { 
    .hero h1 {
        font-size: 2.5rem;
    }

    
    .subheadline {
        font-size: 1.1rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .hero-screens {
        height: 300px;
    }
    
}

/* Trader Challenge Section */
.trader-challenge {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background-color: var(--dark-color);
}

.challenge-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 138, 196, 0.1) 0%, rgba(43, 138, 196, 0.05) 100%);
    opacity: 0.5;
    z-index: 1;
    background-size: 20px 20px;
    background-image: 
        linear-gradient(to right, rgba(43, 138, 196, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(43, 138, 196, 0.1) 1px, transparent 1px);
}

.trader-challenge .container {
    position: relative;
    z-index: 2;
}

.challenge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.challenge-content {
    max-width: 600px;
}

.challenge-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.challenge-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.impact-message {
    position: relative;
    padding: 30px;
    background: rgba(43, 138, 196, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(43, 138, 196, 0.2);
}

.impact-message i.fa-quote-left {
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 2rem;
    color: var(--secondary-color);
    background: var(--dark-color);
    padding: 10px;
    border-radius: 50%;
}

.impact-message p {
    font-size: 1.5rem;
    color: white;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.impact-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-end;
}

.impact-icons i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.challenge-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.trader-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.challenge-image:hover .trader-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 138, 196, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

@media (max-width: 992px) {
    .challenge-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .challenge-content {
        max-width: 100%;
        text-align: center;
    }

    .challenge-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .impact-message {
        text-align: left;
    }

    .trader-img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .trader-challenge {
        padding: 60px 0;
    }

    .challenge-content h2 {
        font-size: 2rem;
    }

    .impact-message p {
        font-size: 1.2rem;
    }

    .trader-img {
        max-width: 100%;
    }
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--primary-color);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(43, 138, 196, 0.2);
}

/* Section Headers */
h2 {
    text-align: center;
    margin-bottom: 20px;
    margin: 15px 15px 15px 15px;
    color: var(--secondary-color);
    font-size: 2rem;
    text-shadow: 0 0 15px var(--glow-color);
    position: relative;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 20px auto 0;
    box-shadow: 0 0 10px var(--glow-color);
}

/* Comparison Section with Screenshots */
.comparison-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.screenshot-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(43, 138, 196, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    aspect-ratio: 16/10;
}

.screenshot-card:nth-child(even) {
    transform: translateY(20px);
}

.screenshot-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(0, 255, 133, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(0, 255, 133, 0.2);
    z-index: 2;
}

.screenshot-card:nth-child(even):hover {
    transform: translateY(10px) scale(1.05);
}

.screenshot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(10, 17, 24, 0.95) 0%,
        rgba(10, 17, 24, 0.7) 50%,
        rgba(10, 17, 24, 0) 100%
    );
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.card-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Animation for cards */
.screenshot-card {
    animation: float 6s ease-in-out infinite;
}

.screenshot-card:nth-child(2) {
    animation-delay: -1s;
}

.screenshot-card:nth-child(3) {
    animation-delay: -2s;
}

.screenshot-card:nth-child(4) {
    animation-delay: -3s;
}

.screenshot-card:nth-child(5) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1200px) {
    .comparison-container {
        gap: 40px;
    }
    
    .screenshots-grid {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .screenshot-card:nth-child(even) {
        transform: translateY(0);
    }

    .screenshot-card:hover,
    .screenshot-card:nth-child(even):hover {
        transform: translateY(0) scale(1.03);
    }

    .card-overlay {
        transform: translateY(0);
        background: linear-gradient(
            to top,
            rgba(10, 17, 24, 0.95) 0%,
            rgba(10, 17, 24, 0.7) 70%,
            rgba(10, 17, 24, 0) 100%
        );
    }

    .card-overlay h4 {
        font-size: 1.1rem;
    }

    .card-overlay p {
        font-size: 0.85rem;
    }
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
        padding: 0 30px;
    }

    .hero-screens {
        transform: scale(0.9);
    }

    .feature-card {
        padding: 35px 25px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-screens {
        transform: scale(0.8);
    }

    .problem-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 800px;
        padding: 0 25px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-group {
        justify-content: center;
    }

    .social-proof {
        justify-content: center;
    }

    .floating-elements {
        display: none;
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }

    .price-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .feature-card {
        padding: 25px 20px;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .solution {
        overflow: visible; /* evita que a seção corte a barra de rolagem do grid */
    }

    .container {
        padding: 0 20px;
    }

    nav {
        padding: 15px 0;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero-screens {
        transform: scale(0.6);
        margin: -80px auto;
    }

    .problem-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        
    }

    .feature-card {
        padding: 25px 20px;
        
    }

    .benefit-card {
        padding: 20px;
    }

    .price-card {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2.4rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
        margin: 10px 0;
    }

    .cta-group {
        flex-direction: column;
        justify-self: center;
    }

    /* Typography hierarchy */
    .section-header h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
    .subheadline {
        font-size: 1rem;
    }

    /* Navigation & CTAs */
    .logo { font-size: 1.3rem; }
    .nav-cta { padding: 10px 18px; font-size: 0.9rem; }
    .primary-cta, .secondary-cta { padding: 12px 20px; font-size: 0.95rem; }

    /* Cards & content text */
    .feature-card h3, .benefit-content h3 { font-size: 1.1rem; }
    .feature-card p, .benefit-content p { font-size: 0.95rem; }

    /* Comparison table adjustments */
    .comparison-title, .comparison-option { font-size: 0.85rem; padding: 14px 10px; }
    .feature, .value { padding: 16px 10px; }

    /* Pricing */
    .plan-badge { font-size: 0.9rem; padding: 8px 18px; }
    .pricing-header h3 { font-size: 1.5rem; }
    .price-value-container .price-value { font-size: 3rem; }
    .price-subtitle { font-size: 0.85rem; }
    .features li { font-size: 0.95rem; }

    /* Reviews */
    .review-card { padding: 16px; }
    .review-text { font-size: 0.95rem; }

    /* FAQ */
    .faq-question h3 { font-size: 1rem; }
    .faq-answer { font-size: 0.95rem; }

    /* Footer */
    footer { font-size: 0.9rem; }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 20px 0;
    }

    .hero-screens {
        transform: scale(0.5);
        margin: -100px auto;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .price {
        flex-direction: column;
        gap: 10px;
    }

    .installment {
        font-size: 1.8rem;
    }

    .full-price {
        font-size: 1rem;
    }

    .features li {
        font-size: 0.9rem;
    }

    .social-proof .avatars {
        gap: 5px;
    }

    .avatar {
        width: 35px;
        height: 35px;
    }

    .social-text {
        font-size: 0.9rem;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .hero-screens {
        transform: scale(0.4);
        margin: -120px auto;
    }

    h1 {
        font-size: 1.8rem;
    }

    .primary-cta,
    .secondary-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Fix for high pixel density screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-bg,
    .feature-card,
    .benefit-card,
    .price-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* Fix for landscape mode on mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-screens {
        transform: scale(0.5);
        margin: -80px auto;
    }

}

@media (max-width: 768px) {
    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .secondary-cta {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        /*width: fit-content;*/
    }
}


/* Screens Carousel */
.screens-carousel {
    margin: 60px 0;
    position: relative;
    padding: 20px 0;
}

.carousel-wrapper {
    position: relative;
    overflow: visible;
    margin: 0 -20px;
    padding: 40px 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    padding: 0 20px;
}

.carousel-slide {
    flex: 0 0 400px;
    padding: 10px;
    perspective: 1000px;
}

.screen-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(43, 138, 196, 0.05);
    border: 1px solid rgba(43, 138, 196, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.screen-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: rgba(0, 255, 133, 0.4);
    box-shadow: 0 30px 50px -10px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(0, 255, 133, 0.2);
}

.screen-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
}

.screen-card:hover img {
    transform: scale(1.1);
}

.screen-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 17, 24, 0) 0%,
        rgba(10, 17, 24, 0.8) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.screen-card:hover .screen-overlay {
    opacity: 1;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 255, 133, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(0, 255, 133, 0.2);
    border-color: rgba(0, 255, 133, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 133, 0.3);
}

.carousel-nav.prev {
    left: -10px;
}

.carousel-nav.next {
    right: -10px;
}

.carousel-nav i {
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(0, 255, 133, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-dot.active {
    width: 30px;
    background: #00FF85;
    border-color: rgba(0, 255, 133, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 133, 0.4);
}

@media (max-width: 1200px) {
    .carousel-slide {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .screens-carousel {
        margin: 40px 0;
    }

    .carousel-slide {
        flex: 0 0 300px;
    }

    .carousel-wrapper {
        padding: 30px 15px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .screen-card:hover {
        transform: translateY(-10px) rotateX(3deg);
    }
}

@media (max-width: 576px) {
    .carousel-slide {
        flex: 0 0 260px;
    }

    .carousel-wrapper {
        padding: 20px 10px;
    }

    .carousel-nav {
        width: 36px;
        height: 36px;
    }

    .carousel-nav i {
        font-size: 1rem;
    }

    .screen-card {
        border-radius: 12px;
    }
}

/* Pricing & Reviews Section */
.pricing-reviews {
    padding: 10px 0;
    background: linear-gradient(180deg, var(--dark-color) 0%, rgba(14, 24, 36, 0.95) 100%);
    position: relative;
    overflow: hidden;
}



.pricing-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.pricing-card {
    background: rgba(85, 143, 179, 0.05);
    border: 1px solid rgba(43, 138, 196, 0.2);
    border-radius: 20px;
    padding: 10px 0px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(43, 138, 196, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Pricing Section */

.pricing-card.pro {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    padding: 15px;
    border-color: var(--secondary-color);
    box-shadow: 0 0 24px rgba(166, 87, 255, 0.25);
    text-align: center;
transform: scale(0.8);
}

.plan-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 30px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    margin: 15px 0;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: white;
    text-align: center;
    margin-bottom: 10px;
}

.price-value-container {
    margin: 20px 0;
}

.price-value-container .price-value {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1;
}

.price-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.pricing {

    padding: 40px 0;
    background-color: #0E1824;
    position: relative;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.currency {
    font-size: 2rem;
}

.period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
    margin: 30px 0;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 15px 30px;
    background: #00CC6A;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 133, 0.2);
    
    text-decoration: none;
    text-transform: uppercase; 
    color: #062e20;
    border-radius: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--glow-color);
    background: linear-gradient(165deg, #1f9c3c, #00CC6A);
}

.pricing-garantia {
    font-size: 1.4rem;
    padding: 8px 15px;
    align-self: center;
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Reviews Section */
.reviews-section {
    padding: 20px;
}

.reviews-section h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-top: 40px;
    text-align: center;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: auto;
    overflow-y: auto;
    padding-right: 15px;
    
}

.reviews-container::-webkit-scrollbar {
    width: 8px;
}

.reviews-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.reviews-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(43, 138, 196, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    border: 2px solid var(--primary-color);
}

.review-info h4 {
    color: white;
    margin-bottom: 5px;
}

.review-stars {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .reviews-container {
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .pricing-reviews {
        padding: 60px 0;
    }
    
    .pricing-card {
        padding: 30px 10px;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .currency {
        font-size: 1.8rem;
    }
    
    .period {
        font-size: 1rem;
    }
    
    .review-card {
        padding: 15px;
    }
}

/* Comparison Table */
.comparison {
    padding: 50px 0;
    background: linear-gradient(180deg, #0a1118 0%, #0a0e14 100%);
    position: relative;
    overflow: hidden;
    
}

.comparison-table {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(43, 138, 196, 0.2);
    margin: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(43, 138, 196, 0.1);
    border-bottom: 1px solid rgba(43, 138, 196, 0.2);
}

.comparison-title, .comparison-option {
    padding: 20px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: rgba(43, 138, 196, 0.05);
}

.feature, .value {
    padding: 20px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.feature {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 500;
    color: #fff;
}

.feature i {
    margin-right: 12px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

.value {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 25px 15px;
}

.value i {
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: block;
}

.value.fa-check {
    color: #00e676;
}

.value.fa-times {
    color: #ff6b6b;
}

.highlight {
    background: rgba(166, 87, 255, 0.1);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(166, 87, 255, 0.05), transparent);
    z-index: -1;
}

.comparison-option.highlight {
    background: var(--secondary-color);
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .comparison-header, .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .feature, .value, .comparison-title, .comparison-option .comparison-table{
        padding: 15px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .comparison {
        padding: 40px 0;
        overflow: visible; /* permite que o conteúdo rolável apareça */
        
    }

    .comparison .container {
        overflow-x: scroll; /* força exibir scroll quando necessário */
        overflow-y: visible; /* não bloqueia rolagem vertical */
        -webkit-overflow-scrolling: touch;
        display: block;
        width: 100%;
        max-width: 100%;
        touch-action: pan-x pan-y; /* permite gestos horizontais e verticais */
        white-space: nowrap; /* garante que o conteúdo mais largo não quebre linhas */
        overscroll-behavior-x: contain; /* evita conflito com o scroll da página */
        position: relative; /* eleva acima do pseudo-elemento de fundo */
        z-index: 2;
    }

    .comparison-table {
        min-width: 500px; /* preserva as 3 colunas e o visual do desktop */
        width: -moz-fit-content;
        width: fit-content; /* suporte amplo */
        width: max-content; /* fallback adicional */
        margin: 20px 0;        
        display: inline-block; /* faz o container respeitar a largura intrínseca para scroll */
    }

    .comparison-header {
        display: grid;
        grid-template-columns: minmax(320px, 2fr) minmax(260px, 1fr) minmax(260px, 1fr);
    }

    .comparison-row {
        display: grid;
        grid-template-columns: minmax(320px, 2fr) minmax(260px, 1fr) minmax(260px, 1fr);
    }

    .feature, .value, .comparison-title, .comparison-option {
        padding: 14px 12px;
        font-size: 0.9rem;
    }

    .feature i {
        font-size: 1rem;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    /* Comparison specific */
    .comparison-table {
        min-width: 600px;
    }

    .feature, .value, .comparison-title, .comparison-option {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    /* Tighten overall typography on very small screens */
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.1rem; }
    .section-subtitle { font-size: 1.0rem; }
    .primary-cta, .secondary-cta { padding: 10px 16px; font-size: 0.9rem; }
    .plan-badge { font-size: 0.85rem; padding: 7px 14px; }
    .pricing-header h3 { font-size: 1.3rem; }
    .price-value-container .price-value { font-size: 2.6rem; }
    .price-subtitle { font-size: 0.8rem; }
}

/* Video Showcase Section */
.video-showcase {
    padding: 50px 0;
    background: linear-gradient(180deg, var(--dark-color) 0%, rgba(14, 24, 36, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(43, 138, 196, 0.15) 0%, transparent 20%);
    pointer-events: none;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 10px auto;
    margin-top: 5%;
    border-radius: 20px;
    overflow: visible;
    transition: transform 0.3s ease;
    z-index: 1;
    background: #0a0e14;
    padding: 4px;
    box-shadow: 0 0 100px rgba(3, 101, 237, 0.3);
    opacity: 0.8;
}

.video-container::before {
    content: '';
    position: relative;
    top: -50%;
    left: 0;
    right: 0;
    height: 90%;
    background: linear-gradient(180deg, 
        rgba(3, 101, 237, 0.2) 0%,
        rgba(117, 42, 204, 0.15) 50%,
        rgba(3, 101, 237, 0) 60%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.6;
    transform: translateY(30%) scale(1.2);
}

.video-container::after {
    content: '';
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 80%;
    background: linear-gradient(180deg,
    rgba(117, 42, 204, 0.2) 60%),
        rgba(3, 101, 237, 0.4) 20%;
        
    z-index: -1;
    opacity: 0.8;
    filter: blur(80px);
    border-radius: 50% 50% 0 0;
    transform: translateY(-30%) scale(1.5, 1);
}

.video-container:hover {
    transform: translateY(-10px);
    }

.video-container video {
    width: 100%;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(43, 138, 196, 0.3);
    background: #0a0e14;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    
}

.video-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(180deg,
        var(--secondary-color) 100%,    
        var(--glow-color-secondary) 0%);
    box-shadow: 0 0 100px rgba(3, 101, 237, 0.3);
    pointer-events: none;
    opacity: 0.4;
    z-index: 1;
    transform: translateY(-10%) scale(1.05);
    filter: blur(30px);
}

.video-container:hover .video-glow {
    opacity: 0.4;
}

/* Video Responsive Design */
@media (max-width: 992px) {
    .video-container {
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .video-showcase {
        padding: 60px 0;
    }
    
    .video-container {
        margin: 30px auto;
    }
    
    .video-container:hover {
        transform: translateY(-5px);
    }
}

.countdown-container {
    text-align: center;
    margin: 15px 0;
}

.original-price {
    color: #ff6b6b;
    text-decoration: line-through;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.countdown {
    background: rgba(255, 107, 107, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 5px;
}

#countdown-timer {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.6rem;
}

.price-container {
    animation: priceGlow 2s infinite alternate;
}

@keyframes priceGlow {
    from {
        text-shadow: 0 0 5px rgba(0, 204, 106, 0.2);
    }
    to {
        text-shadow: 0 0 15px rgba(0, 204, 106, 0.6);
    }
}

.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.exit-popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 90%;
    animation: popupSlideIn 0.3s ease-out forwards;
}

.close-popup {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: #ff4444;
    transform: scale(1.1);
}

.exit-message {
    font-size: 1.4rem;
    color: #ff6b6b;
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

@keyframes popupSlideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.show-popup {
    display: block;
}

/* Lead Capture Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-overlay.show {
    display: flex;
}

.popup-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.popup-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.popup-header p {
    color: #666;
}

.form-group {
    margin-bottom: 1rem;
}

#lead-capture-form {
    position: relative;
}

.close-form {
    position: absolute;
    top: -170px;
    right: -50px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ff4444;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1;
}

.close-form:hover {
    background: #ff6b6b;
    transform: scale(1.1);
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #007bff;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #0056b3;
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.9rem;
}
