/* ===== RESET & VARIÁVEIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fbfdff;
    color: #13294b;
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

:root {
    --black: #0b0f1c;
    --navy: #0f2b5e;
    --blue-deep: #1934a6;
    --blue-medium: #1f4b8a;
    --blue-accent: #2e7ab3;
    --blue-light: #e2ecfe;
    --gold: #c9a13b;
    --gold-light: #f3e3c2;
    --white: #ffffff;
    --gray-100: #f3f6fc;
    --gray-200: #e9eef6;
    --gray-600: #4f658d;
    --shadow-sm: 0 12px 30px -10px rgba(0,0,0,0.1);
    --shadow-md: 0 20px 35px -12px rgba(15,43,94,0.15);
    --shadow-lg: 0 30px 50px -20px #0f2b5e40;
    --border-radius-card: 1.5rem;
    --border-radius-element: 3rem;
}

/* ===== TIPOGRAFIA REFINADA ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.section-title i {
    color: var(--gold);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.section-sub {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--gray-600);
    max-width: 800px;
    margin-bottom: 3rem;
    padding-left: 1.8rem;
    border-left: 5px solid var(--gold);
    font-weight: 400;
}

/* ===== SEÇÃO DO VÍDEO DE FUNDO ===== */
.video-section {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 42.85%; /* Proporção 21:9 (9/21 = 0.4285) */
    overflow: hidden;
    background: linear-gradient(145deg, #0a142f, #132b60);
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10,20,47,0.8) 0%, 
        rgba(25,52,166,0.7) 50%,
        rgba(10,20,47,0.8) 100%);
    z-index: 2;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 90%;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

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

.video-content h2 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.video-content p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-video {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-video:hover {
    background: transparent;
    border-color: var(--gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-video:active {
    transform: translateY(-1px);
}

/* ===== NAVBAR LUXO ===== */
.navbar {
    background: linear-gradient(145deg, #0a142f 0%, #132b60 70%, #1934a6 100%);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    padding: 0.7rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.logo-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 6px;
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-text {
    font-weight: 800;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    letter-spacing: -0.02em;
    color: white;
    white-space: nowrap;
}

.logo-text span {
    font-weight: 400;
    color: var(--gold-light);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 200;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: white;
    font-size: 1rem;
    transition: all 0.2s;
    position: relative;
    white-space: nowrap;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 1.6rem;
    border-radius: 40px;
    font-weight: 700;
    color: white;
    transition: 0.25s;
    white-space: nowrap;
}

.btn-outline-light:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(125deg, #ffffff 0%, #f2f7ff 100%);
    padding: 3rem 0;
    border-bottom: 1px solid #dfe9fa;
    width: 100%;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1.2;
}

.badge {
    background: var(--gold-light);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border-left: 6px solid var(--gold);
    letter-spacing: 0.02em;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.2rem;
}

.hero h1 span {
    color: var(--blue-deep);
    border-bottom: 5px solid var(--gold);
    display: inline-block;
    padding-bottom: 4px;
}

.hero p {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    color: #2b4b77;
    max-width: 560px;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}

.stat-item p {
    color: #4f6f9a;
    margin-bottom: 0;
    font-size: 0.9rem;
    white-space: nowrap;
}

.hero-visual {
    flex: 0.9;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.9);
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.2rem 0;
}

.flow-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-deep);
    font-size: 1.4rem;
    border: 1px solid var(--gold);
    box-shadow: 0 8px 14px -8px #b59b5b;
    flex-shrink: 0;
}

.flow-step p {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.flow-step small {
    color: #4f658d;
    font-size: 0.8rem;
}

.dashed-line {
    width: 2px;
    height: 25px;
    background: repeating-linear-gradient(to bottom, var(--gold), var(--gold) 6px, transparent 6px, transparent 12px);
    margin-left: 22px;
}

/* ===== SERVICE INTRO ===== */
.service-intro {
    margin: 4rem 0 2rem;
}

.service-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid #e3eefa;
    box-shadow: var(--shadow-sm);
}

.service-card p {
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: #13294b;
    font-weight: 300;
    line-height: 1.5;
}

/* ===== CARDS GRID COM IMAGENS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.card {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #edf2fc;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.card-content {
    padding: 1.5rem;
    background: white;
}

.card h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--navy);
}

.card p {
    color: #45638b;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.gold-badge {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    align-self: flex-start;
}

/* ===== API PANEL ===== */
.api-panel {
    background: linear-gradient(135deg, #0f2b5e, #1f3f7a);
    border-radius: 2rem;
    padding: 2rem;
    color: white;
    margin: 4rem 0;
    border-right: 8px solid var(--gold);
    box-shadow: var(--shadow-lg);
}

.api-panel h2 {
    color: white;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.api-panel .lead {
    color: #c1d4f0;
    font-size: clamp(0.95rem, 3vw, 1.2rem);
    margin-bottom: 2rem;
    font-weight: 300;
}

.api-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
}

.api-list li {
    list-style: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.api-list li i {
    color: var(--gold);
    margin-right: 1rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== PARCEIROS ===== */
.parceiros-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.parceiro-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    border-left: 8px solid var(--blue-deep);
    box-shadow: var(--shadow-sm);
    transition: 0.25s;
    height: 100%;
}

.parceiro-card:hover {
    box-shadow: var(--shadow-md);
}

.parceiro-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.parceiro-card p {
    color: #2b4b77;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.parceiro-card ul {
    list-style: none;
}

.parceiro-card li {
    margin: 0.6rem 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.parceiro-card li i {
    color: var(--gold);
    margin-right: 0.8rem;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* ===== VANTAGENS ===== */
.vant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.vant-item {
    background: white;
    border-radius: 2rem;
    padding: 2rem 1.5rem;
    border: 1px solid #eaf1fd;
    transition: 0.2s;
    height: 100%;
}

.vant-item:hover {
    background: #f7fbff;
    border-color: var(--gold);
}

.vant-item i {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--blue-deep);
    margin-bottom: 1.2rem;
}

.vant-item h4 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 0.8rem;
    color: var(--navy);
}

.vant-item p {
    color: #4f658d;
    font-size: 0.9rem;
}

/* ===== FLOAT ROW ===== */
.float-row {
    display: flex;
    background: linear-gradient(to right, #fff, #f3f8ff);
    border-radius: 3rem;
    padding: 2rem;
    justify-content: space-between;
    margin: 3rem 0;
    box-shadow: 0 15px 30px #dfe9f5;
    border: 1px solid #dbe5f5;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.float-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.float-item .big {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    display: block;
    margin-bottom: 0.4rem;
}

.float-item p {
    color: #2d5a88;
    font-weight: 500;
    font-size: 0.85rem;
}

/* ===== RESUMO ESTRATÉGICO ===== */
.resumo-final {
    background: linear-gradient(145deg, #0f2142, #142d57);
    border-radius: 2.5rem;
    padding: 2.5rem 2rem;
    color: white;
    margin: 4rem 0;
    border-bottom: 6px solid var(--gold);
}

.resumo-final p {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
    font-weight: 300;
    line-height: 1.4;
}

.btn-cta {
    background: var(--gold);
    border: none;
    color: var(--navy);
    font-weight: 800;
    padding: 1rem 2.2rem;
    border-radius: 3rem;
    font-size: clamp(0.95rem, 3vw, 1.2rem);
    margin-top: 2rem;
    display: inline-block;
    cursor: default;
    box-shadow: 0 20px 30px -12px #0b1a30;
    transition: 0.2s;
    width: fit-content;
}

.btn-cta i {
    margin-right: 0.8rem;
}

/* ===== CONTATO ===== */
.contato-section {
    background: white;
    border-radius: 2.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid var(--gold);
    margin: 4rem 0;
    box-shadow: var(--shadow-md);
}

.contato-section h2 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.contato-section p {
    font-size: clamp(0.95rem, 3vw, 1.2rem);
    color: #2d4a75;
    margin: 1rem 0;
}

.email-contato {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.9rem, 3vw, 1.3rem);
    font-weight: 600;
    color: var(--blue-deep);
    text-decoration: none;
    padding: 0.9rem 1.8rem;
    border-radius: 3rem;
    background: var(--blue-light);
    transition: all 0.3s;
    margin-top: 1.5rem;
    border: 1px solid transparent;
    width: fit-content;
    max-width: 100%;
    word-break: break-word;
}

.email-contato:hover {
    background: var(--blue-deep);
    color: white;
    border-color: var(--gold);
    transform: scale(1.02);
}

.email-contato i {
    margin-right: 0.8rem;
    color: var(--gold);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: #ffffff;
    border-top: 3px solid var(--gold);
    padding: 2rem 0;
    color: #2d4f7c;
    font-weight: 500;
    width: 100%;
}

.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.footer div {
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
    .video-section {
        padding-bottom: 42.85%;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-content {
        width: 100%;
    }
    
    .hero-visual {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero p {
        max-width: 100%;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }
    
    .video-section {
        padding-bottom: 42.85%;
    }
    
    .video-content {
        padding: 1.5rem;
    }
    
    .video-content h2 {
        font-size: 1.8rem;
    }
    
    .video-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-video {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(145deg, #0a142f, #132b60);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        z-index: 99;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
        font-size: 1.1rem;
    }
    
    .btn-outline-light {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .card-image {
        height: 150px;
    }
    
    .card-content {
        padding: 1.2rem;
    }
    
    .parceiros-showcase {
        grid-template-columns: 1fr;
    }
    
    .vant-grid {
        grid-template-columns: 1fr;
    }
    
    .float-row {
        flex-direction: column;
        align-items: center;
    }
    
    .float-item {
        width: 100%;
    }
    
    .api-list {
        grid-template-columns: 1fr;
    }
    
    .api-panel {
        padding: 1.8rem;
    }
    
    .resumo-final {
        padding: 2rem 1.5rem;
    }
    
    .btn-cta {
        width: 100%;
        text-align: center;
    }
    
    .email-contato {
        width: 100%;
        text-align: center;
        padding: 0.9rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .video-section {
        padding-bottom: 42.85%;
    }
    
    .video-content h2 {
        font-size: 1.5rem;
    }
    
    .video-content p {
        font-size: 0.9rem;
    }
    
    .btn-video {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item h3 {
        font-size: 1.6rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    .flow-step {
        gap: 0.8rem;
    }
    
    .flow-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .card-image {
        height: 160px;
    }
    
    .api-panel h2 {
        font-size: 1.4rem;
    }
    
    .parceiro-card {
        padding: 1.5rem;
    }
    
    .parceiro-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 360px) {
    .video-section {
        padding-bottom: 42.85%;
    }
    
    .video-content h2 {
        font-size: 1.3rem;
    }
    
    .video-content p {
        font-size: 0.8rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .flow-step p {
        font-size: 0.85rem;
    }
    
    .flow-step small {
        font-size: 0.7rem;
    }
    
    .card-image {
        height: 140px;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card h3 {
        font-size: 1.2rem;
    }
    
    .card p {
        font-size: 0.85rem;
    }
    
    .email-contato {
        font-size: 0.85rem;
        padding: 0.7rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .video-section {
        padding-bottom: 42.85%;
    }
    
    .hero-grid {
        flex-direction: row;
    }
    
    .hero-visual {
        max-width: 400px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
    
    html {
        font-size: 18px;
    }
    
    .video-section {
        max-width: 2560px;
        margin: 0 auto;
        padding-bottom: 42.85%;
    }
}

@media (min-width: 1921px) {
    .video-section {
        max-width: 3440px;
        margin: 0 auto;
        padding-bottom: 42.85%;
    }
}

/* ===== FADE IN CARDS ===== */
.card, .vant-item, .parceiro-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.visible, .vant-item.visible, .parceiro-card.visible {
    opacity: 1;
    transform: translateY(0);
}