/* ===================================
   Site Busca Voos - Stylesheet Completo
   =================================== */

:root {
    --color-background: #000c1d;
    --color-surface: #001229;
    --color-surface-hover: #001a3d;

    --color-primary: #b8860b;
    /* Aged Gold */
    --color-accent: #8c6d1d;
    --color-bronze: #4a3a12;
    --color-neon-blue: #00f2ff;

    --color-text: #d4d4d4;
    --color-text-dim: #999999;
    --color-white: #ffffff;

    --font-main: 'Outfit', sans-serif;

    --radius-sharp: 0px;
    --radius-subtle: 0px;
    --radius-pill: 0px;

    --transition-fluid: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-fast: 0.3s ease;

    --container-max: 1300px;

    --glow: 0 0 20px rgba(184, 134, 11, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    padding-top: 77px;
}

h1, h2, h3, h4, 
.section-title, 
.hero-headline,
.footer-title {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   FLUID BACKGROUND
   =================================== */
.fluid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background-color: var(--color-background);
}

.fluid-background::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Noise Texture - Extremely subtle grain for all viewports */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.80' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    /* Reduced from 0.03 for a near-invisible premium texture */
    pointer-events: none;
    z-index: 5;
}

.fluid-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 20s infinite ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-neon-blue) 0%, transparent 70%);
    animation-delay: 0s;
    opacity: 0.15;
}

.orb-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.5) 0%, transparent 70%);
    animation-delay: -5s;
    opacity: 0.1;
}

.orb-3 {
    top: 40%;
    left: 30%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #001a3d 0%, transparent 70%);
    animation-delay: -10s;
    opacity: 0.1;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #000c1d;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
    padding: 12px 0;
    transition: var(--transition-fluid);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 52px;
    filter: brightness(0) invert(1);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    opacity: 0.7;
}

.nav-link:hover {
    color: var(--color-primary);
    opacity: 1;
    letter-spacing: 1.5px;
    transform: translateY(-2px);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 45px;
    border-radius: var(--radius-subtle);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fluid);
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-primary);
    color: #000;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-primary:hover::after {
    left: 150%;
}

.btn-primary:hover {
    background: var(--color-accent);
    box-shadow: 0 0 30px rgba(184, 134, 11, 0.4);
    transform: translateY(-3px) scale(1.02);
}

@keyframes liquidPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(184, 134, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(184, 134, 11, 0);
    }
}

.btn-primary.hero-cta {
    animation: liquidPulse 3s infinite;
}

#header-cta {
    background: #25D366;
    border: 1px solid #25D366;
    color: #fff;
    padding: 10px 24px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

#header-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

#header-cta:hover::after {
    left: 150%;
}

#header-cta:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

.btn-success {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-white);
}

.btn-large {
    padding: 22px 60px;
    font-size: 1rem;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
    padding: 40px 0;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--color-white);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* ===================================
   HERO SECTION: AUREUM FLUIDUM
   =================================== */
.hero {
    height: 700px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 30px 0 0 0; /* Changed from margin-top to padding-top so background fills the space */
    overflow: hidden;
    
    /* Novo Fundo do Hero */
    background-image: url('images/bg-hero-section.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

/* Retícula pontilhada leve sobre o banner */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 0.8px, transparent 0.8px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
}


/* Mobile Hero Background handled in the responsive section at the end of file */


.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 769px) {
    .hero-grid {
        margin-left: -100px;
        width: calc(100% + 100px);
    }
}

.hero-content {
    text-align: left;
    max-width: 100%;
    grid-column: 1;
}

.hero-headline {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    /* Significantly reduced */
    color: var(--color-white) !important;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    max-width: 20ch;
    /* Forcing line breaks around 3 lines */
}

/* Gold Gradient Text */
.highlight-gold {
    background: linear-gradient(to right, #ffd700, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    /* Fix for some browsers */
}

.hero-subheadline {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--color-white) !important;
    font-weight: 400;
    max-width: 460px;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.6;
}

/* Layered CTA & Badges */
.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 20;
    width: 100%;
}

.hero-cta-group {
    transform: translateY(0);
    transition: var(--transition-fluid);
    width: 100%;
    /* Full width within wrapper */
    max-width: 350px;
    /* Reduced by 30% (500 -> 350) */
}

.hero-cta-group .btn-large {
    width: 100%;
    /* Button fills the group */
}

.hero-cta-group:hover {
    transform: translateY(-5px);
}

.hero-trust-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    /* Tighter gap to fit */
    margin-top: 15px;
    background: rgba(12, 12, 12, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 134, 11, 0.3);
    padding: 12px 15px;
    /* Reduced padding */
    border-radius: var(--radius-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

    /* Equal Width Strategy */
    width: 100%;
    max-width: 350px;
    /* Matched to CTA */
    box-sizing: border-box;
    flex-wrap: wrap;
    /* Safety wrap if needed on very small screens, though 350 is fine usually */
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #000c1d;
    margin-left: -10px;
    background: #001229;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.avatar-img:first-child {
    margin-left: 0;
}

.social-proof-text {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 400;
    opacity: 0.8;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge i {
    font-size: 1.1rem;
    /* Slightly smaller */
    color: var(--color-primary);
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
    color: var(--color-white);
    line-height: 1.1;
}

.trust-badge-text span {
    font-size: 0.55rem;
    /* Smaller detail text */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.6;
}

.trust-badge-text strong {
    font-size: 0.75rem;
    /* Smaller strong text */
    font-weight: 600;
}

/* Custom Video Player (Hidden by default now) */
.custom-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-bronze);
    background: #000;

}

.custom-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.custom-video-wrapper.playing video {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.custom-video-wrapper.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-btn-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(184, 134, 11, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-btn-circle i {
    font-size: 30px;
    color: var(--color-primary);
    margin-left: 5px;
    /* Visual balance */
}

.custom-video-wrapper:hover .play-btn-circle {
    transform: scale(1.1);
    background: rgba(184, 134, 11, 0.2);
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-video-wrapper.playing:hover .video-controls,
.custom-video-wrapper.paused .video-controls {
    opacity: 1;
}

.progress-bar-container {
    flex-grow: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0px;
    cursor: pointer;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: var(--color-primary);
    width: 0%;
    border-radius: 0px;
    box-shadow: 0 0 10px var(--color-primary);
    position: relative;
    transition: width 0.1s linear;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.highlight-yellow {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(184, 134, 11, 0.3);
}

/* Media Query Updates */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-cta-wrapper {
        align-items: center;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-cta-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-trust-badges {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        padding: 10px 20px;
        width: 100%;
        max-width: 400px;
        margin: 25px auto 0;
        background: rgba(12, 12, 12, 0.6);
        /* More transparent on mobile */
    }


    .trust-badge i {
        font-size: 1.1rem;
    }

    .trust-badge-text strong {
        font-size: 0.7rem;
    }
}

/* ===================================
   HOW IT WORKS
   =================================== */
.how-section {
    background: transparent;
    position: relative;
    overflow: hidden;
    /* Prevent blob overflow */
}

.how-section::after {
    display: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background: rgba(12, 12, 12, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 134, 11, 0.1);
    padding: 40px 30px;
    border-radius: 0px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.step-card:hover {
    transform: perspective(1000px) translateY(-10px) rotateX(4deg) rotateY(-2deg) scale(1.02);
    border-color: var(--color-primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow);
    z-index: 10;
}


.step-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.step-description {
    color: var(--color-text);
}

/* ===================================
   TEAM SECTION: BOUTIQUE PORTRAITS
   =================================== */
.team-section {
    padding: 40px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.team-card {
    background: transparent;
    padding: 0;
    text-align: left;
    transition: var(--transition-fluid);
    border: none;
}

.team-image {
    width: 100%;
    height: 450px;
    margin-bottom: 25px;
    border-radius: var(--radius-sharp);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-bronze);
}

.team-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-background) 0%, transparent 40%);
    opacity: 0.8;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5) contrast(1.1);
    transition: var(--transition-fluid);
}

.team-card:hover .team-image img {
    filter: grayscale(0) contrast(1);
    transform: scale(1.05);
}

.team-card:hover .team-image {
    border-color: var(--color-primary);
    box-shadow: var(--glow);
}

.team-name {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.team-role {
    color: var(--color-primary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: block;
}

.team-bio {
    color: var(--color-text-dim);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===================================
   WHY CHOOSE US: ASYMMETRIC GRID
   =================================== */
.why-section {
    padding: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

/* Feature Cards Base */
.feature-card {
    background: rgba(12, 12, 12, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 134, 11, 0.1);
    padding: 50px;
    transition: var(--transition-fluid);
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    border-color: var(--color-primary);
    transform: perspective(1000px) translateY(-10px) rotateX(4deg) rotateY(-2deg) scale(1.02);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-fluid);
}

.feature-card:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

/* Glass Highlight on Hover */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-fluid);
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
}

/* Pattern: 7-5, 5-7, 6-6 */
.feature-card:nth-child(1) {
    grid-column: span 7;
}

.feature-card:nth-child(2) {
    grid-column: span 5;
}

.feature-card:nth-child(3) {
    grid-column: span 5;
}

.feature-card:nth-child(4) {
    grid-column: span 7;
}

.feature-card:nth-child(5) {
    grid-column: span 6;
}

.feature-card:nth-child(6) {
    grid-column: span 6;
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    transition: var(--transition-fluid);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) translateX(5px);
}

.feature-title {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.feature-description {
    color: var(--color-text-dim);
    font-weight: 300;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .feature-card {
        grid-column: span 12 !important;
        min-height: auto;
        padding: 40px 30px;
    }
}

/* ===================================
   REGISTRATION SECTION
   =================================== */
.registration-section {
    background: transparent;
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.registration-qr {
    text-align: center;
}

.registration-title {
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.qr-code-box {
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    display: inline-block;
    margin-bottom: 15px;
}

.qr-code-img {
    width: 200px;
    height: 200px;
}

.qr-description {
    color: var(--color-text-light);
}

.registration-form-box {
    background: rgba(12, 12, 12, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 134, 11, 0.1);
    padding: 40px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.registration-title-green {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.registration-subtitle {
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.registration-note {
    color: var(--color-text);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* ===================================
   TESTIMONIALS: REFINED VOICES
   =================================== */
.testimonials-swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 80px;
    perspective: 1200px;
}

.swiper-slide {
    height: auto; /* To make cards equal height */
    transition: transform 0.8s ease, filter 0.8s ease, opacity 0.8s ease;
    filter: blur(8px);
    opacity: 0.15;
}

.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-prev {
    filter: blur(0);
    opacity: 1;
}

.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(12, 12, 12, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 134, 11, 0.15);
    padding: 40px;
    border-radius: 0px;
    transition: var(--transition-fluid);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--glow);
    z-index: 10;
}

.testimonial-card::after {
    content: '\"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--color-bronze);
    filter: grayscale(1);
    transition: var(--transition-fast);
}

.testimonial-card:hover .testimonial-avatar {
    filter: grayscale(0);
    border-color: var(--color-primary);
}

.testimonial-name {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-rating {
    color: var(--color-primary);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.testimonial-text-wrapper {
    position: relative;
    flex: 1;
}

.testimonial-text {
    color: var(--color-text-dim);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    overflow: hidden;
    display: block;
    max-height: none;
    overflow: visible;
}

.testimonial-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
}

@media (max-width: 768px) {
    .testimonial-text {
        -webkit-line-clamp: 3;
    }
}

/* "...mais" inline at end of 4th line */
.testimonial-read-more-inline {
    display: inline;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    line-height: inherit;
    transition: opacity 0.2s;
    letter-spacing: 0.02em;
    padding: 0;
    margin-left: 5px;
}

.testimonial-read-more-inline:hover {
    opacity: 0.7;
}

 /* Inline Read More handled by JS truncation */

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    display: none;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(12, 12, 12, 0.5);
    backdrop-filter: blur(8px);
    margin-bottom: 12px;
    border-radius: 0px;
    overflow: hidden;
    border: 1px solid rgba(140, 109, 29, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
    background: #0d0d0d;
    border-color: var(--color-primary);
    box-shadow: var(--glow);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

.faq-item.active .faq-question {
    color: var(--color-primary);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   FINAL CTA
   =================================== */
.cta-final-section {
    background: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.cta-final-content {
    background: rgba(10, 10, 10, 0.6);
    padding: 60px 40px;
    border-radius: 0px;
    border: 1px solid #1e2d4d;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.cta-final-content:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.1);
    background: rgba(15, 20, 30, 0.8);
}

.cta-final-section::before {
    display: none;
}

.cta-final-title {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.cta-final-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: transparent;
    padding-top: 40px;
    padding-bottom: 15px;
    border-top: 1px solid rgba(184, 134, 11, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 52px;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-title {
    color: var(--color-secondary);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer-text {
    color: var(--color-text);
    margin-bottom: 6px;
    line-height: 1.4;
}

.footer-text a {
    color: var(--color-primary);
    text-decoration: none;
}

.footer-contact-item {
    white-space: nowrap;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 6px;
    line-height: 1.4;
}

.footer-links a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    justify-content: flex-start;
}

.footer-social a {
    color: var(--color-text);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    font-size: 0.72rem;
    opacity: 0.8;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.creator-link {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.creator-link:hover {
    filter: brightness(1.2);
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* ===================================
   MODAL
   =================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 90%;
    max-width: 800px;
    border-radius: 0px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 204, 0, 0.15);
    border: 1px solid rgba(255, 204, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-logo-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.modal-logo {
    height: 62px;
    filter: brightness(0) invert(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--color-primary);
}

/* Progress Bar */
.progress-wrapper {
    margin-bottom: 30px;
}

.progress-bar {
    height: 6px;
    background: var(--color-background);
    border-radius: 0px;
    position: relative;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: 0px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-plane {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%) rotate(0deg);
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: left 0.3s ease;
}

.progress-label {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-title {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.modal-subtitle {
    color: var(--color-text-light);
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    color: var(--color-secondary);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: #000000 !important;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input::placeholder {
    color: #444444;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1);
}

.form-group input.error {
    border-color: #ef4444;
}

.form-group input.valid {
    border-color: var(--color-success);
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.input-helper {
    color: var(--color-text);
    font-size: 0.85rem;
    display: block;
    margin-top: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Phone Input */
.phone-input-wrapper {
    display: flex;
    gap: 10px;
}

.ddi-wrapper {
    position: relative;
}

.ddi-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: #000000 !important;
    cursor: pointer;
    transition: all 0.3s;
}

.ddi-trigger span {
    color: inherit !important;
}

.ddi-trigger:hover {
    border-color: var(--color-primary);
}

.ddi-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    width: 300px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.ddi-dropdown.active {
    display: block;
}

.ddi-search {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-white);
}

.ddi-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    /* Increased for 44px+ touch target */
    cursor: pointer;
    transition: background 0.2s;
}

.ddi-item:hover {
    background: var(--color-surface);
}

.ddi-item .flag {
    font-size: 1.5rem;
}

.ddi-item .country-name {
    flex: 1;
    color: var(--color-secondary);
}

.ddi-item .ddi-code {
    color: var(--color-text);
}

/* Airport Dropdown */
.airport-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.airport-dropdown.active {
    display: block;
}

.airport-option {
    padding: 12px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    gap: 8px;
}

.airport-option:hover {
    background: var(--color-surface);
}

.airport-iata {
    color: var(--color-primary);
    font-weight: 600;
}

.airport-city {
    color: var(--color-secondary);
}

.airport-location {
    color: var(--color-text);
}

/* Radio Groups */
.radio-group,
.radio-group-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-group-inline {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
}

.radio-group-inline .radio-label {
    flex: 1;
    justify-content: center;
    padding: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: #000000 !important;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.radio-label span {
    color: inherit !important;
    display: inline-block;
    /* Garante que o texto se comporte bem */
}

.radio-label input[type="radio"] {
    margin: 0;
    flex-shrink: 0;
    /* Impede o círculo de encolher */
}

.radio-label:hover {
    border-color: var(--color-primary);
}

.radio-label input[type="radio"] {
    width: auto;
}

/* Passenger Selector */
.passenger-select-wrapper {
    position: relative;
}

.passenger-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: #000000 !important;
    cursor: pointer;
    transition: all 0.3s;
}

.passenger-trigger span {
    color: inherit !important;
}

.passenger-trigger:hover {
    border-color: var(--color-primary);
}

.passenger-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 15px;
    z-index: 100;
    display: none;
}

.passenger-dropdown.active {
    display: block;
}

.passenger-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
}

.passenger-row:last-child {
    border-bottom: none;
}

.passenger-info strong {
    display: block;
    color: var(--color-secondary);
}

.passenger-info small {
    color: var(--color-text);
}

.passenger-counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover:not(:disabled) {
    background: var(--color-primary);
    color: var(--color-background);
}

.counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.counter-value {
    color: var(--color-secondary);
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

/* Baggage Options */
.baggage-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.baggage-card {
    position: relative;
    cursor: pointer;
    flex: 1;
    min-width: 180px;
    background: linear-gradient(145deg, rgba(30, 25, 10, 0.9) 0%, rgba(15, 12, 5, 0.95) 100%);
    border-radius: 0px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.baggage-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.baggage-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    background: transparent;
    border-radius: 0px;
    transition: all 0.3s;
}

.baggage-card:hover .baggage-content {
    border-color: var(--color-primary);
}

.baggage-card input:checked+.baggage-content {
    border-color: var(--color-primary);
    background: rgba(255, 204, 0, 0.1);
}

.baggage-content i {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.baggage-content strong {
    color: var(--color-secondary);
    text-align: center;
}

.baggage-content small {
    color: var(--color-text);
}

/* ===================================
   ABOUT TEAM SECTION (NEW)
   =================================== */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.15);
    transition: var(--transition-fluid);
}

.about-image-wrapper:hover {
    transform: perspective(1000px) translateY(-10px) rotateX(4deg) rotateY(-2deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow);
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    /* Garante altura mínima para alinhar com texto */
    border-radius: 0px;
}

.about-content {
    text-align: left;
}

.mentor-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 204, 0, 0.15);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 0px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-title {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: var(--font-heading);
    font-weight: 700;
}

.about-bio {
    color: var(--color-text);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.highlight-text {
    color: var(--color-primary);
    font-weight: 700;
}

.about-skills-box {
    background: rgba(12, 12, 12, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 0px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.about-skills-box:hover {
    border-color: var(--color-primary);
    box-shadow: var(--glow);
    transform: translateY(-3px);
}

.skill-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(184, 134, 11, 0.15);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border: 1px solid rgba(184, 134, 11, 0.3);
}

.skills-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-white);
    font-size: 1.05rem;
}



.about-social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icon-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-youtube {
    border-color: rgba(255, 0, 0, 0.4);
    color: rgba(255, 0, 0, 0.9);
}

.social-instagram {
    border-color: rgba(225, 48, 108, 0.4);
    color: rgba(225, 48, 108, 0.9);
}

.social-site {
    border-color: rgba(0, 119, 255, 0.4);
    color: rgba(0, 119, 255, 0.9);
}

.social-icon-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(15, 15, 15, 1);
}

.social-youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    color: #ff0000;
}

.social-instagram:hover {
    border-color: #e1306c;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
    color: #e1306c;
}

.social-site:hover {
    border-color: #0077ff;
    box-shadow: 0 0 20px rgba(0, 119, 255, 0.3);
    color: #0077ff;
}

/* ===================================
   STATS SECTION (OLD)
   =================================== */
.stats-section {
    background: var(--color-surface);
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
    display: block;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--color-text-dim);
    text-transform: lowercase;
}

.border-left {
    border-left: 1px solid var(--color-border);
}

/* ===================================
   CADASTUR SECTION
   =================================== */
.cadastur-section {
    background: transparent;
}

.cadastur-banner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 20px 0;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

/* Glow removed as per user request */

.cadastur-img {
    width: 100%;
    max-width: 650px;
    border-radius: 0px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-fluid);
}

.cadastur-img:hover {
    transform: perspective(1000px) translateY(-10px) rotateX(4deg) rotateY(-2deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.cadastur-title {
    color: var(--color-white);
    font-size: 2.8rem;
    /* Padronizado com section-title */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cadastur-text {
    color: var(--color-text-light);
    /* Padronizado com section-subtitle */
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 25px;
    text-transform: none;
    /* Removendo uppercase forçado */
    letter-spacing: normal;
}

.cadastur-description {
    color: var(--color-text);
    margin-bottom: 35px;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ===================================
   WHATSAPP BANNER
   =================================== */
.whatsapp-banner {
    padding: 40px 0;
    margin-bottom: 30px;
}

.whatsapp-banner-content {
    background: rgba(10, 10, 10, 0.6);
    padding: 50px 40px;
    border-radius: 0px;
    border: 1px solid #1e2d4d;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* ===================================
   CONVERSION SECTION (NEW DESIGN)
   =================================== */
.conversion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.support-box {
    display: flex;
    flex-direction: row;
    /* Horizontal layout */
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: rgba(12, 12, 12, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px;
    /* Reduced padding */
    border-radius: 0px;
    /* Slightly tighter radius */
    border: 1px solid rgba(184, 134, 11, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    gap: 20px;
    min-height: auto;
    /* Remove any min-height implications */
}

.support-box-content {
    flex: 1;
}

.support-box:hover {
    transform: perspective(1000px) translateY(-10px) rotateX(4deg) rotateY(-2deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow);
    border-color: var(--color-primary);
    z-index: 10;
}

.support-box.support-box-red {
    background: rgba(12, 12, 12, 0.4);
    border: 1px solid rgba(184, 134, 11, 0.15);
}

.support-box-red:hover {
    transform: perspective(1000px) translateY(-10px) rotateX(4deg) rotateY(-2deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow);
    border-color: var(--color-primary);
    z-index: 10;
}

.support-box .icon-circle {
    width: 50px;
    /* Smaller icon container */
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    /* Remove bottom margin */
    font-size: 1.2rem;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.support-box .icon-circle i {
    font-size: 24px !important;
    color: var(--color-primary);
}

.support-box h3 {
    color: white;
    font-size: 1.3rem;
    /* Smaller title */
    margin: 0 0 5px 0;
}

.support-box p {
    color: #a8b2d1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    display: none;
    /* Hiding description for maximum compactness as requested "minimo possivel" or keep it very small? User said "minimo possivel". Let's keep it but maybe hide on very small screens or make it very subtle. Actually, the user asked to "reduce boxes". Let's keep p but small. */
    display: block;
    max-width: 300px;
}

.support-box .btn {
    padding: 12px 25px;
    /* Compact button */
    font-size: 0.85rem;
    white-space: nowrap;
}

.support-box .btn-support-whatsapp,
.support-box .btn-support-red {
    position: relative;
    overflow: hidden;
    transition: var(--transition-fluid);
}

.support-box .btn-support-whatsapp {
    background: #25D366 !important;
    color: white !important;
    border: none;
}

.support-box .btn-support-red {
    background: #e74c3c !important;
    color: white !important;
    border: none;
}

.support-box .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.support-box .btn:hover::after {
    left: 150%;
}

.support-box .btn:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
    .conversion-grid {
        grid-template-columns: 1fr;
    }

    .support-box {
        flex-direction: column;
        /* Stack on mobile again or smaller screens */
        text-align: center;
        padding: 25px;
    }

    .support-box .icon-circle {
        margin-bottom: 15px;
    }

    .support-box .btn {
        width: 100%;
        margin-top: 15px;
    }
}

/* ===================================
   PARTNERS SECTION (MARQUEE)
   =================================== */
/* ===================================
   PARTNERS SECTION (MARQUEE)
   =================================== */
.partners-section {
    background: #001229; /* Deep Premium Blue */
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

/* Fades removed to match reference image style */
.partners-section::before,
.partners-section::after {
    display: none;
}

.partners-marquee {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 50s linear infinite;
    position: relative;
    z-index: 1;
}

.partners-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    height: 35px;
    width: auto;
    margin: 0 45px;
    filter: brightness(0) invert(1);
    /* Logos brancas para fundo escuro */
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
    object-fit: contain;
    display: block;
}

.partner-logo:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}



/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-actions .btn {
    flex: 1;
}

/* ===================================
   RESPONSIVE
   =================================== */

/* Menu Toggle Button Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 0px;
    transition: all 0.3s ease;
}

/* Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
    .header-cta {
        display: none !important;
    }
}

@media (max-width: 1100px) {
    .header {
        background: #000c1d !important;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1001;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--color-background);
        padding: 100px 30px;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0 !important;
        display: block !important;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        /* Changed to use padding on links for touch targets */
        align-items: center;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-menu.active .nav-list li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation */
    .nav-menu.active .nav-list li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-list li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-list li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active .nav-list li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu.active .nav-list li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-link {
        display: block;
        padding: 16px 30px;
        /* 44px+ touch target */
        font-size: 1.25rem;
    }

    /* Hero Responsive */
    .hero {
        background-image: url('images/banner-hero-section-site-mobile.png') !important;
        background-size: cover !important;
        background-position: center -20px !important; /* Subiu o fundo 20px */
        height: auto;
        padding-top: 310px; /* Adjusted to 310px to compensate for removed 30px margin-top */
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-headline {
        font-size: 1.6rem; /* Adjusted for 3 lines */
        line-height: 1.2;
        margin-bottom: 20px;
        max-width: 100%; /* Overriding the 20ch desktop restriction */
        padding: 0 5px; 
    }

    .hero-subheadline {
        font-size: 0.9rem; /* Reduced to fit in 3 lines */
        line-height: 1.4;
        margin-bottom: 35px;
        padding: 0 10px; /* Slight padding to prevent edge touching */
    }

    .hero-cta-wrapper {
        margin: 0 auto;
    }

    /* Stats Section Mobile */
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }

    .stat-item {
        width: 100%;
    }

    .border-left {
        border-left: none;
    }

    .stat-number {
        font-size: 2.2rem;
        /* Slightly larger for emphasis */
    }

    .stat-text {
        font-size: 0.95rem;
    }

    /* Modal Progress Refinement */
    .progress-container {
        margin: 20px 10px;
    }

    .progress-plane {
        font-size: 1.2rem;
        /* Avoid overlap on tiny screens */
    }

    /* Layout Spacing */
    .section {
        padding: 40px 0;
    }

    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* About Section Mobile */
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
        order: -1;
        /* Image first on mobile */
    }

    .about-hero-img {
        min-height: 400px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-skills-box {
        text-align: left;
    }

    .about-social-icons {
        justify-content: center;
    }

    /* Cadastur Banner Mobile */
    .cadastur-banner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .cadastur-visual {
        order: -1;
    }

    .cadastur-img {
        max-width: 100%;
    }

    .cadastur-title {
        font-size: 1.8rem;
    }

    /* Form & Modals */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Grids Fallbacks */
    .features-grid, .team-grid, .steps-grid, .stats-grid, .registration-grid {
        grid-template-columns: 1fr !important;
    }
    
    .feature-card:nth-child(n) {
        grid-column: span 1 !important;
    }

    .team-image {
        height: 350px;
    }

    .modal-container {
        padding: 25px 15px 20px;
        width: 95%;
        max-height: 95vh;
    }

    .modal-logo {
        height: 40px;
    }
    
    .modal-header {
        margin-bottom: 15px;
    }
    
    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .progress-wrapper {
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        margin-bottom: 4px;
        font-size: 0.9rem;
    }
    
    .form-group input, .form-group select, .ddi-trigger, .radio-label, .passenger-trigger {
        padding: 8px 10px;
    }

    .radio-group-inline {
        gap: 5px;
    }

    .radio-group-inline .radio-label {
        padding: 8px 5px;
        gap: 4px;
    }

    .radio-group-inline .radio-label span {
        font-size: 0.75rem;
    }

    .baggage-card {
        min-width: 0; /* Important to avoid overflow */
    }

    .baggage-options {
        gap: 8px;
    }
    
    .baggage-content {
        padding: 8px 4px;
        gap: 4px;
    }
    
    .baggage-content i {
        font-size: 1.3rem;
    }
    
    .baggage-content strong {
        font-size: 0.8rem;
        line-height: 1.1;
    }
    
    .baggage-content small {
        font-size: 0.7rem;
    }
    
    .passenger-row {
        padding: 8px 0;
    }
    
    .counter-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    /* Conversion Box Mobile */
    .whatsapp-support-content {
        padding: 40px 20px !important;
    }

    .cta-final-title {
        font-size: 1.8rem;
    }

    /* Footer Mobile Centering */
    .footer {
        text-align: center;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-col {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* ===================================
   TABLET SPECIFIC (769px - 1024px)
   =================================== */
    @media (min-width: 769px) and (max-width: 1024px) {

        /* Layout */
        .section {
            padding: 40px 0;
        }

        .container {
            padding: 0 40px;
        }

        /* Hero */
        .hero {
            padding-top: 140px;
        }

        .hero-grid {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 60px;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 80%;
            margin: 0 auto;
        }

        .hero-headline {
            font-size: 3.8rem;
            max-width: 100%;
            text-align: center;
        }

        .hero-subheadline {
            font-size: 1.2rem;
            max-width: 70%;
        }

        .hero-cta-wrapper {
            align-items: center;
        }

        /* Features / Why Choose Us */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            /* 2 Columns for Tablet */
            gap: 30px;
        }

        /* Override the complex spans */
        .feature-card:nth-child(n) {
            grid-column: span 1 !important;
        }

        /* Team */
        .team-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        /* Stats */
        .stats-grid {
            display: flex;
            justify-content: space-around;
            gap: 20px;
        }

        /* Registration */
        .registration-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .registration-qr {
            order: -1;
            /* QR code on top for tablet too usually better */
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .registration-form-box {
            max-width: 80%;
            margin: 0 auto;
        }
    }

    /* Fix specific section overflows to prevent "samba" */
    .how-section,
    .cadastur-section,
    .stats-section,
    .why-section,
    .about-section {
        overflow: hidden !important;
    }

    /* Subtle Lighting Effect for Mobile (Glint/Reflection) */
    .feature-card,
    .step-card,
    .support-box,
    .about-skills-box,
    .modal-container {
        position: relative;
        overflow: hidden;
    }

    /* Refined Light Reflection Effect - Does not change base color */
    .feature-card::after,
    .step-card::after,
    .support-box::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.05), transparent 60%);
        pointer-events: none;
        z-index: 1;
        opacity: 0.8;
    }

    /* Soft top glow accent to define the boxes */
    .feature-card::before,
    .step-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.4), transparent);
        z-index: 2;
    }
}

/* ===================================
   RGPD / COOKIE BANNER
   =================================== */
.gdpr-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    max-width: 800px;
    background: rgba(12, 12, 12, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(184, 134, 11, 0.2);
    padding: 25px 35px;
    border-radius: 0px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(184, 134, 11, 0.1);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: none;
}

.gdpr-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.gdpr-content {
    flex: 1;
}

.gdpr-content p {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.gdpr-content a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
}

.gdpr-actions {
    display: flex;
    gap: 15px;
}

.btn-gdpr-accept {
    background: var(--color-primary);
    color: #000 !important;
    padding: 10px 25px;
    border-radius: 0px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-gdpr-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

@media (max-width: 768px) {
    .gdpr-banner {
        flex-direction: column;
        padding: 20px;
        bottom: 20px;
        text-align: center;
        gap: 20px;
    }
    
    .gdpr-actions {
        width: 100%;
    }
    
    .btn-gdpr-accept {
        width: 100%;
    }
}
/* Mobile 3D Scroll Effect Activation */
@media (max-width: 768px) {
.feature-card.mobile-3d-active,
    .step-card.mobile-3d-active,
    .about-image-wrapper.mobile-3d-active,
    .cadastur-img.mobile-3d-active,
    .support-box.mobile-3d-active,
    .support-box-red.mobile-3d-active,
    .cta-final-content.mobile-3d-active {
        transform: perspective(1000px) translateY(-10px) rotateX(4deg) rotateY(-2deg) scale(1.02);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow);
        z-index: 10;
        border-color: var(--color-primary);
    }
}

@media (max-width: 1100px) {
    .nav-menu:not(.active) {
        display: none !important;
    }
}

/* ===================================
   TABLET REFACTORED (769px - 1100px)
   =================================== */
@media (min-width: 769px) and (max-width: 1100px) {
    .hero {
        background-position: center bottom !important;
        background-size: cover !important;
        padding-top: 100px !important;
        padding-bottom: 50px !important;
        height: auto !important;
        min-height: 800px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero-content {
        max-width: 90% !important;
        margin: 0 auto !important;
        background: rgba(0, 12, 29, 0.8) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        padding: 40px 20px !important;
        border: 1px solid rgba(184, 134, 11, 0.3) !important;
        text-align: center !important;
    }

    .hero-headline {
        font-size: 2rem !important;
    }
    
    .hero-grid {
        display: block !important;
    }

    .features-grid, 
    .steps-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .cadastur-banner, .about-grid {
        grid-template-columns: 1fr !important;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}


/* ===================================
   TESTIMONIALS SECTION: PREMIUM CAROUSEL
   =================================== */
.testimonials-section {
    padding: 40px 0;
    background: transparent;
    overflow: hidden;
}

.testimonials-swiper {
    overflow: hidden;
    padding-bottom: 50px !important;
}

.swiper-slide .testimonial-card {
    height: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-swiper {
        padding: 0 0 40px 0 !important;
    }

    .testimonial-card {
        margin: 0 auto;
        width: 100%;
    }
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    margin-top: 20px;
}

.google-badge-img {
    height: 24px;
}

.google-stats .stars {
    color: #ffb400;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.google-stats span {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Carousel Layout */
.testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 30px;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius-sharp);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-fluid);
}

.testimonial-card:hover {
    border-color: var(--color-primary);
    background: rgba(20, 20, 20, 0.8);
    transform: none;
}

.testimonial-content {
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 2rem;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
    font-weight: 300;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.user-info strong {
    display: block;
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Controls */
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.control-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fluid);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: var(--color-primary);
    color: #000;
    border-color: var(--color-primary);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fluid);
}

.dot.active {
    background: var(--color-primary);
    transform: scale(1.5);
}

@media (max-width: 1100px) {
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
        padding: 30px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
}

/* ===================================
   LGPD & COOKIE CONSENT
   =================================== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 18, 41, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(184, 134, 11, 0.3);
    padding: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    max-width: 500px;
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-content h4 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.5;
}

.cookie-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 12px 25px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-accept {
    background: var(--color-primary);
    color: #000;
}

.btn-reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

/* LGPD Form Checkbox */
.lgpd-consent-wrapper {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.lgpd-checkbox-label {
    display: flex;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--color-text);
    align-items: flex-start;
}

.lgpd-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.lgpd-checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: 100%;
    }
}
