:root {
    --primary: #00f3ff;
    --secondary: #2563eb;
    /* Corporate Blue */
    --accent: #3b82f6;
    --bg: #0a0e17;
    --bg-light: #0f1520;
    --surface: rgba(255, 255, 255, 0.05);
    --surface-hover: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --success: #00ff88;
    --warning: #ff6b35;
    --gradient: linear-gradient(135deg, #00f3ff 0%, #2563eb 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.4);
}

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

*,
*::before,
*::after {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-badge {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.25rem 0.6rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.6rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: var(--surface);
}

.nav-link.cta {
    background: var(--gradient);
    color: #000;
    font-weight: 600;
}

.nav-link.cta:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector select {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
}

.language-selector select:hover {
    border-color: var(--primary);
}

.language-selector select option {
    background: var(--bg-light);
    color: var(--text);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.main-content {
    flex: 1;
}

.section {
    padding: 5rem 2rem;
    margin-bottom: 2rem;
}

.section+.section {
    border-top: 1px solid var(--border);
    padding-top: 4rem;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero {
    padding: 5rem 2rem 6rem;
    min-height: 90vh;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    text-align: center;
    width: 100%;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 700px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
    align-items: center;
    width: 100%;
    max-width: 500px;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
    text-align: left;
    width: auto;
    font-size: 1.05rem;
    display: inline-block;
}

.hero-checklist li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.hero-checklist li i {
    color: var(--success);
    margin-right: 10px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--surface-hover);
    border-color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-filter {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-filter:hover::before {
    left: 100%;
}

.btn-filter:hover {
    background: var(--primary);
    color: var(--bg);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.5);
    transform: translateY(-2px);
}

.btn-filter.active {
    background: var(--primary);
    color: var(--bg);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-badge i {
    color: var(--primary);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.video-placeholder {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.video-placeholder i {
    font-size: 2.5rem;
    color: var(--primary);
}

.video-container {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.video-container video {
    width: 100%;
    display: block;
}

.glass-card {
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card-grid {
    gap: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.glass-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.service-card {
    padding: 0;
    overflow: hidden;
}

.service-card .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.service-card .card-content {
    padding: 1.5rem;
}

.service-card .card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.stats-section {
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.testimonials-wrapper {
    overflow: hidden;
    width: 100%;
    touch-action: pan-y pinch-zoom;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    user-select: none;
}

.testimonials-track.dragging {
    cursor: grabbing;
    transition: none;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    flex: 0 0 calc(100% - 0rem);
    max-width: calc(100% - 0rem);
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 1rem);
        max-width: calc(33.333% - 1rem);
    }
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--bg);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    transform: scale(1.2);
}

.testimonial-stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cta-section {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1) 0%, rgba(188, 19, 254, 0.1) 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas para desktop */
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas para tablets */
    }
}

@media (max-width: 768px) {
    .footer-grid {
        display: flex; /* Volta para flex p/ mobile */
        flex-direction: column;
        gap: 1.5rem;
    }
}

.footer-brand {
    text-align: left;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

.footer-tagline {
    color: var(--text-secondary);
    margin: 1rem 0;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-location i {
    color: var(--primary);
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-compliance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-compliance i {
    color: var(--success);
}
@media (max-width: 1023px) {
    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.75rem;
    }

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

    .hero-title,
    .hero-subtitle {
        text-align: center;
    }

    .hero-title br {
        display: block;
    }

    .hero-subtitle br {
        display: block;
    }

    /* Mostrar CTA mobile, esconder desktop */
    .hero-mobile-cta {
        display: block !important;
        width: 100%;
    }

    /* Esconder elementos desktop-only em mobile */
    .hero-visual .hero-price-box,
    .hero-visual .hero-cta-side,
    .hero-visual .hero-trust-side {
        display: none !important;
    }

    .hero-visual {
        height: auto;
        width: 100%;
        max-width: 560px;
        display: flex;
        justify-content: center;
        padding-top: 0;
        order: -1;
    }

    .vsl-container {
        width: 100%;
        margin: 0 auto;
        border-radius: 16px;
        overflow: hidden;
        background: var(--surface);
        box-shadow: 0 0 40px rgba(0, 243, 255, 0.15);
        min-height: 200px;
    }

    .vsl-container video {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        display: block;
        border-radius: 16px;
        object-fit: cover;
        min-height: 200px;
    }

    .hero-cta {
        justify-content: center;
        align-items: center;
    }

    .hero-checklist {
        text-align: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-checklist li {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 1rem;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 2rem 1rem 4rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

    .hero-visual {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .vsl-container {
        width: 100%;
        margin: 0 auto;
        border-radius: 16px;
        overflow: hidden;
        background: var(--surface);
        box-shadow: 0 0 40px rgba(0, 243, 255, 0.15);
        min-height: 200px;
    }

    .vsl-container video {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        display: block;
        border-radius: 16px;
        object-fit: cover;
        min-height: 200px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .footer-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        overflow-x: hidden;
    }

    .card-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Scroll horizontal para cards do MÉTHODO FLUYON no mobile */
    #metodo-fluyon .card-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE 10+ */
        padding-bottom: 1rem;
    }

    #metodo-fluyon .card-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    #metodo-fluyon .card-grid .glass-card {
        flex: 0 0 85%;
        min-width: 280px;
        max-width: 320px;
        scroll-snap-align: start;
        margin-right: 0.5rem;
    }

    /* Indicador visual de scroll para mobile */
    #metodo-fluyon .container {
        position: relative;
    }

    #metodo-fluyon .container::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
        margin-top: 0.5rem;
    }

    .glass-card {
        padding: 1.25rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .portfolio-nav {
        gap: 0.5rem !important;
    }

    .btn-filter {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .author-name {
        font-size: 0.9rem;
    }

    .author-role {
        font-size: 0.75rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .trust-badges {
        gap: 1rem;
    }

    .trust-badge {
        font-size: 0.75rem;
    }

    .carousel-nav {
        gap: 0.5rem;
    }

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

    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* VSL Video Container */
.vsl-container {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 0 60px rgba(0, 243, 255, 0.2);
    margin: 0 auto;
    min-height: 220px;
}

.vsl-container video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    min-height: 200px;
}

/* ========================================
   HERO SECTION - DESKTOP LAYOUT - V4
   Layout de 2 colunas: conteúdo + visual
   ======================================== */

/* Desktop: Layout de 2 colunas otimizado */
@media screen and (min-width: 1024px) {
    .hero {
        padding: 3rem 2rem 4rem;
        min-height: auto;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        max-width: 1200px;
        align-items: start;
        text-align: left;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
        text-align: left;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 1.25rem;
    }

    .hero-title {
        font-size: 2.6rem;
        line-height: 1.15;
        margin-bottom: 1rem;
        text-align: left;
        max-width: 100%;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: left;
        max-width: 100%;
    }

    .hero-subtitle br {
        display: none;
    }

    /* Preço e CTA na coluna direita com o vídeo */
    .hero-visual {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .vsl-container {
        width: 100%;
        margin-bottom: 1.5rem;
        box-shadow: 0 0 40px rgba(0, 243, 255, 0.15);
        border-radius: 16px;
        overflow: hidden;
    }

    .vsl-container video {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        display: block;
        border-radius: 16px;
        object-fit: cover;
    }

    /* Caixa de preço destacada */
    .hero-price-box {
        background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(16,185,129,0.08));
        border: 2px solid var(--primary);
        border-radius: 16px;
        padding: 1.25rem;
        margin-bottom: 1.25rem;
        text-align: center;
    }

    .hero-price-box .price-original {
        font-size: 0.85rem;
        color: var(--text-muted);
        text-decoration: line-through;
        margin-bottom: 0.25rem;
    }

    .hero-price-box .price-current {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 0.25rem;
    }

    .hero-price-box .price-note {
        font-size: 0.85rem;
        color: var(--text-secondary);
    }

    /* CTA na coluna direita */
    .hero-cta-side {
        text-align: center;
        margin-bottom: 1rem;
    }

    .hero-cta-side .btn {
        width: 100%;
        justify-content: center;
    }

    /* Trust badges em linha */
    .hero-trust-side {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-trust-side .trust-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    .hero-trust-side .trust-badge i {
        font-size: 1rem;
        flex-shrink: 0;
    }
}

/* Desktop large screens - 1280px+ */
@media screen and (min-width: 1280px) {
    .hero {
        padding: 4rem 3rem 5rem;
    }

    .hero-container {
        max-width: 1300px;
        gap: 4rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-price-box .price-current {
        font-size: 3rem;
    }
}

/* Extra large screens - 1440px+ */
@media screen and (min-width: 1440px) {
    .hero {
        padding: 5rem 4rem 6rem;
    }

    .hero-container {
        max-width: 1400px;
        gap: 5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-price-box .price-current {
        font-size: 3.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.faq-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   DESKTOP: 4 cards do MÉTHODO FLUYON na mesma linha
   ======================================== */
@media (min-width: 1024px) {
    #metodo-fluyon .card-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    #metodo-fluyon .card-grid .glass-card {
        min-width: 0; /* Permite que os cards encolham */
    }
}

/* Para telas médias (tablet), manter 2x2 grid */
@media (min-width: 768px) and (max-width: 1023px) {
    #metodo-fluyon .card-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* ========================================
   FIX: VSL Video Mobile Visibility
   ======================================== */
@media (max-width: 1023px) {
    /* Garantir que o container do vídeo seja visível */
    .vsl-container {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        min-height: 220px !important;
        max-height: none !important;
        overflow: hidden !important;
        position: relative !important;
        background: var(--surface) !important;
        border-radius: 16px !important;
    }
    
    /* Garantir que o vídeo seja renderizado corretamente */
    .vsl-container video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: auto !important;
        min-height: 220px !important;
        max-height: none !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Garantir que o hero-visual seja visível */
    .hero-visual {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Fix adicional para mobile pequeno */
@media (max-width: 576px) {
    .vsl-container {
        min-height: 200px !important;
        border-radius: 12px !important;
    }
    
    .vsl-container video {
        min-height: 200px !important;
        border-radius: 12px !important;
    }
}

/* Fix para garantir que o vídeo não seja escondido por regras anteriores */
.vsl-container,
.vsl-container video,
#heroVSL {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ========================================
   HERO SECTION MOBILE RESPONSIVE FIX
   Garante layout em coluna em mobile ≤768px
   ======================================== */

@media screen and (max-width: 768px) {
    /* Container principal em coluna */
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    /* Coluna de conteúdo (texto) em ordem 2 */
    .hero-content {
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
    }

    /* Coluna visual (vídeo) em ordem 1 - aparece primeiro */
    .hero-visual {
        order: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    /* Container do vídeo - full width em mobile */
    .vsl-container {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        margin: 0 auto !important;
    }

    /* Vídeo em si - ocupa toda a largura */
    .vsl-container video,
    #heroVSL {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9 !important;
        object-fit: cover !important;
        display: block !important;
        border-radius: 12px !important;
    }

    /* Badge do mecanismo */
    .mechanism-badge {
        display: inline-flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
        margin-bottom: 0.75rem !important;
    }

    /* Título menor em mobile */
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    /* Subtítulo */
    .hero-subtitle {
        font-size: 0.95rem !important;
        text-align: center !important;
        line-height: 1.5 !important;
    }

    /* CTA Mobile - visível apenas em mobile */
    .hero-mobile-cta {
        display: block !important;
        width: 100% !important;
        order: 3 !important;
    }

    /* Esconder elementos desktop-only em mobile */
    .hero-visual .hero-price-box,
    .hero-visual .hero-cta-side,
    .hero-visual .hero-trust-side,
    .hero-visual .scarcity-banner,
    .hero-visual .countdown-container {
        display: none !important;
    }
}

/* ========================================
   EXTRA SMALL DEVICES ≤480px
   ======================================== */

@media screen and (max-width: 480px) {
    .hero {
        padding: 1.5rem 1rem 3rem !important;
    }

    .hero-container {
        gap: 1rem !important;
    }

    .hero-title {
        font-size: 1.4rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
    }

    /* Vídeo ainda maior em telas pequenas */
    .vsl-container {
        border-radius: 10px !important;
    }

    .vsl-container video,
    #heroVSL {
        border-radius: 10px !important;
        min-height: 180px !important;
    }

    /* Preço box em mobile */
    .hero-mobile-cta .hero-price-box {
        padding: 1rem !important;
        margin: 1rem 0 !important;
    }

    .hero-mobile-cta .hero-price-box div[style*="font-size: 3rem"] {
        font-size: 2.5rem !important;
    }
}

/* ========================================
   VERY SMALL DEVICES ≤320px
   ======================================== */

@media screen and (max-width: 320px) {
    .hero-title {
        font-size: 1.2rem !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
    }

    .vsl-container video,
    #heroVSL {
        min-height: 160px !important;
    }

    .mechanism-badge {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.6rem !important;
    }

    .mechanism-badge span {
        font-size: 0.75rem !important;
    }
}