/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: rgb(var(--color-basic-1000));
    color: rgb(var(--color-basic-contrast));
    line-height: 1.6;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    border-bottom-color: rgba(var(--color-primary-100), 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(var(--color-primary-100), 0.3));
    transition: transform 0.3s ease;
    display: block;
}

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

/* Header Layout */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: rgb(var(--color-basic-contrast));
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu Container */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-links a {
    color: rgba(var(--color-basic-contrast), 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: rgba(255, 255, 255, 0.05);
    color: rgb(var(--color-basic-contrast));
    padding-left: 1.25rem;
}

/* Navigation - Desktop */
.nav {
    display: none;
    /* Hidden by default (mobile) */
}

@media (min-width: 992px) {
    .nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav a {
        color: rgba(var(--color-basic-contrast), 0.8);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.3s ease;
        position: relative;
        padding: 0.5rem 0;
    }

    .nav a:hover,
    .nav a.active {
        color: rgb(var(--color-basic-contrast));
    }

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

    .nav a:hover::after,
    .nav a.active::after {
        width: 100%;
    }
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, rgb(var(--color-primary-100)), rgb(var(--color-primary-200)));
    color: rgb(var(--color-primary-contrast));
    box-shadow: 0 6px 20px rgba(var(--color-primary-100), 0.4), 0 2px 8px rgba(var(--color-primary-100), 0.6);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgb(var(--color-primary-200)), rgb(var(--color-primary-300)));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(var(--color-primary-100), 0.7), 0 4px 15px rgba(var(--color-primary-100), 0.8);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgb(var(--color-basic-contrast));
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgb(var(--color-basic-contrast));
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

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

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
}

/* Hero Section - Desktop Only */
@media (min-width: 481px) {
    .hero {
        position: relative;
        background-color: rgb(var(--color-basic-1000));
        min-height: 75vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 4rem 0;
        overflow: hidden;
        border-radius: 0 0 30px 30px;
        margin: 0 1rem 2rem 1rem;
    }

    .hero-video {
        object-position: center 30%;
        border-radius: 0 0 30px 30px;
        transition: transform 0.3s ease;
    }

    .hero:hover .hero-video {
        transform: scale(1.02);
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.15) 0%,
                rgba(0, 0, 0, 0) 30%,
                rgba(0, 0, 0, 0.2) 65%,
                rgba(0, 0, 0, 0.85) 100%);
        pointer-events: none;
        z-index: 1;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        right: 0;
        height: 20px;
        background: rgb(var(--color-basic-1000));
        border-radius: 0 0 30px 30px;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 1000px;
        padding: 0 2rem;
        animation: fadeInUp 0.8s ease-out;
        margin-top: 2rem;
    }

    .hero h1 {
        font-size: 4.5rem;
        font-weight: 900;
        margin-bottom: 2rem;
        line-height: 1.15;
        color: #ffffff;
        filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.9)) drop-shadow(0 3px 10px rgba(0, 0, 0, 0.7));
        animation: slideInLeft 0.8s ease-out;
        letter-spacing: -0.02em;
    }

    .hero-subtitle {
        font-size: 1.65rem;
        margin-bottom: 3.5rem;
        opacity: 1;
        font-weight: 400;
        color: #f5f5f5;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.8);
        animation: slideInRight 0.8s ease-out 0.2s both;
        line-height: 1.6;
    }

    .hero-cta {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }
}

.hero-highlight {
    color: rgb(var(--color-primary-100));
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.7)) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.5));
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle strong {
    color: #fbbf24;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    margin: 0 0 1.5rem 0;
    position: relative;
    z-index: 10;
    text-align: center;
}

.main-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Trust Badges Section */
.trust-badges-section {
    margin: 0 0 3rem 0;
    position: relative;
    z-index: 10;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
    padding: 0.6rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.trust-badge:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.12));
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(var(--color-primary-100), 0.4);
}

.trust-badge .icon {
    flex-shrink: 0;
}

.trust-badge span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hero CTAs */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Sections */
.section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: rgb(var(--color-basic-contrast));
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgb(var(--color-primary-100)), rgb(var(--color-primary-200)));
    border-radius: 2px;
}

/* Benefits */
.benefits {
    background: radial-gradient(circle at top right, rgba(var(--color-primary-100), 0.05), transparent 40%),
        rgb(var(--color-basic-1000));
}

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

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(var(--color-primary-100), 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(var(--color-primary-100), 0.1);
}

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

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    stroke: rgb(var(--color-primary-100));
    stroke-width: 1.5;
    fill: none;
    filter: drop-shadow(0 0 10px rgba(var(--color-primary-100), 0.3));
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    stroke: rgb(var(--color-primary-50));
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgb(var(--color-basic-contrast));
}

.benefit-card p {
    color: rgba(var(--color-basic-contrast), 0.7);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Promotions */
.promotions {
    background: linear-gradient(to bottom, rgb(var(--color-basic-1000)), rgb(var(--color-basic-900)));
    padding-top: 4rem;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.promotion-card {
    background: rgb(var(--color-basic-800));
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.promotion-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--color-primary-100), 0.4);
}

.promotion-card img,
.card-image-placeholder {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.promotion-card:hover img,
.promotion-card:hover .card-image-placeholder {
    transform: scale(1.05);
}

.promotion-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.promotion-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgb(var(--color-basic-contrast));
}

.promotion-card p {
    color: rgba(var(--color-basic-contrast), 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* FAQ */
.faq {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

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

.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(var(--color-primary-100), 0.3);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 1.75rem;
    background: none;
    border: none;
    color: rgb(var(--color-basic-contrast));
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.75rem 1.75rem;
    color: rgba(var(--color-basic-contrast), 0.85);
    line-height: 1.7;
    display: none;
    font-size: 1rem;
}

.faq-answer.show {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

/* Footer */
.footer {
    background: rgb(var(--color-basic-1000));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: rgb(var(--color-basic-contrast));
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(var(--color-basic-contrast), 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-section a:hover {
    color: rgb(var(--color-primary-100));
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: rgb(var(--color-primary-100));
    transform: translateY(-4px);
    border-color: rgb(var(--color-primary-100));
    box-shadow: 0 5px 15px rgba(var(--color-primary-100), 0.3);
}

.social-links img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(var(--color-basic-contrast), 0.4);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

/* Urgency Bar */
.urgency-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgb(var(--color-primary-100)), rgb(var(--color-primary-200)));
    color: rgb(var(--color-primary-contrast));
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    z-index: 999;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.urgency-bar button {
    transition: all 0.3s ease;
}

.urgency-bar button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.countdown {
    color: #ffff00;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    margin: 0 0.5rem;
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.icon-lg {
    width: 32px;
    height: 32px;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-highlight {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    .trust-badges {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
    }

    .hero {
        min-height: 70vh;
        padding: 2rem 0;
        align-items: center;
        border-radius: 0 0 45px 45px;
        margin: 0 0.5rem 1rem 0.5rem;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        max-width: 700px;
    }

    .hero-highlight {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .benefit-card {
        padding: 3rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 1rem 0;
        align-items: center;
        border-radius: 0 0 30px 30px;
        margin: 0 0.5rem 0.75rem 0.5rem;
    }

    .hero::before {
        background-attachment: scroll;
        background-size: contain;
        background-position: center top;
    }

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

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero-image {
        height: 300px;
        align-items: flex-end;
    }

    .ambassador-img {
        transform: scale(1) translateY(0);
        max-width: 100%;
    }

    .hero .overlay {
        background: linear-gradient(to bottom, transparent 0%, transparent 75%, rgba(var(--color-primary-100), 0.1) 90%, rgba(var(--color-primary-100), 0.15) 100%);
    }

    .hero::after {
        bottom: -12px;
        height: 25px;
        border-radius: 0 0 30px 30px;
    }

    .main-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .trust-badges {
        gap: 0.75rem;
    }

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

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
        line-height: 1.5;
    }

    .hero-highlight {
        font-size: 1.1rem;
    }

    .trust-badges {
        gap: 0.75rem;
        margin: 1rem 0;
    }

    .trust-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.875rem 1.75rem;
    }

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

/* Promotion Card Overlay Styles (Desktop) */
.promotion-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.promotion-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.promotion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 2.5rem 1.5rem 1rem;
    display: flex;
    align-items: flex-end;
}

.promotion-overlay h3 {
    margin: 0;
    font-size: 1.4rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promotion-card-content {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 0 12px 12px;
}

@media (max-width: 480px) {
    /* --- MOBILE APP TRANSFORMATION --- */

    .hero {
        min-height: 90vh;
        /* Quase tela cheia */
        padding: 0;
        margin: 0;
        border-radius: 0 0 40px 40px;
        align-items: flex-end;
        /* Conteúdo embaixo */
        position: relative;
        background-color: rgb(var(--color-basic-1000));
        /* Fundo preto de segurança */
        overflow: hidden;
    }

    .hero-video {
        object-fit: cover;
        object-position: center 25%;
        /* Mais contexto vertical */
        transform: scale(1.3);
        /* 130% zoom - muito mais elementos visíveis */
        border-radius: 0 0 40px 40px;
    }

    .hero::before {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.5) 0%,
                rgba(0, 0, 0, 0) 25%,
                rgba(0, 0, 0, 0.7) 50%,
                rgba(0, 0, 0, 0.95) 70%,
                rgb(var(--color-basic-1000)) 85%,
                /* Preto total mais cedo */
                rgb(var(--color-basic-1000)) 100%);
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        border-radius: 0 0 40px 40px;
    }

    /* 3. Header Minimalista com Proteção */
    .header {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
        backdrop-filter: none;
        border: none;
        position: absolute;
        width: 100%;
        z-index: 10;
        padding-bottom: 2rem;
        /* Extensão do gradiente */
    }

    .header.scrolled {
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        position: fixed;
        padding-bottom: 0;
    }

    /* ... (rest of header styles) ... */

    .hero-content {
        padding: 50vh 1.5rem 8rem 1.5rem;
        /* Aumentado de 45vh para 50vh - desce o texto */
        text-align: left;
        width: 100%;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .hero h1 {
        font-size: 1.1rem;
        line-height: 1;
        margin-bottom: 0.5rem;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        text-align: left;
        opacity: 1;
        color: #e5e5e5;
        line-height: 1.4;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    }

    .header.scrolled {
        background: rgba(15, 23, 42, 0.95);
        /* Fica sólido ao rolar */
        backdrop-filter: blur(20px);
        position: fixed;
    }

    .header-content {
        padding: 1rem 1.5rem;
    }

    .logo img {
        height: 32px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    }

    /* Esconde botões de login no header mobile para limpar (já tem no menu ou hero) */
    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        color: white;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* 4. Ajustes Gerais */
    .section-title {
        text-align: left;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding-right: 1rem;
    }

    .cta-section {
        margin: 2rem 1rem 6rem 0;
        /* Margem extra embaixo por causa do menu */
        border-radius: 20px;
    }

    /* Bottom Nav Adjustments */
    .bottom-nav {
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }

    .header-content {
        padding: 0.8rem 1rem;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo img {
        height: 36px;
        /* Aumentado para melhor visibilidade */
        width: auto;
    }

    .header-buttons {
        gap: 0.5rem;
    }

    .header-buttons .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        font-weight: 600;
    }

    /* Hide text in buttons on very small screens if needed, or keep as is */

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

    .urgency-bar {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .urgency-bar button {
        margin-left: 0.5rem;
        padding: 0.4rem 0.8rem;
    }

    /* Bottom Navigation */
    .bottom-nav {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 0.5rem 1rem 1.5rem;
        /* Extra padding for safe area */
        z-index: 1000;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        text-decoration: none;
        color: rgba(var(--color-basic-contrast), 0.5);
        font-size: 0.7rem;
        font-weight: 500;
        transition: all 0.3s ease;
        flex: 1;
    }

    .bottom-nav-item i {
        width: 20px;
        height: 20px;
    }

    .bottom-nav-item.active,
    .bottom-nav-item:hover {
        color: rgb(var(--color-primary-100));
    }

    /* Bottom Nav Center Button (Cadastro) */
    .bottom-nav-center {
        position: relative;
        top: -25px;
        flex: 1.2;
        /* Mais espaço para o botão central */
        display: flex;
        justify-content: center;
    }

    .signup-btn-mobile {
        background: linear-gradient(135deg, rgb(var(--color-primary-100)), rgb(var(--color-primary-200)));
        color: rgb(var(--color-primary-contrast));
        border: 4px solid rgb(var(--color-basic-1000));
        border-radius: 50px;
        padding: 0.8rem 1.2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        box-shadow: 0 0 20px rgba(var(--color-primary-100), 0.6);
        animation: pulse-gold 2s infinite;
        width: auto;
        height: auto;
        min-width: 70px;
        min-height: 70px;
    }

    .signup-btn-mobile i {
        width: 24px;
        height: 24px;
        margin-bottom: -2px;
    }

    .signup-btn-mobile span {
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    @keyframes pulse-gold {
        0% {
            box-shadow: 0 0 0 0 rgba(var(--color-primary-100), 0.7);
            transform: scale(1);
        }

        70% {
            box-shadow: 0 0 0 15px rgba(var(--color-primary-100), 0);
            transform: scale(1.05);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(var(--color-primary-100), 0);
            transform: scale(1);
        }
    }

    /* Carousel 3D Effects */
    .promotions-grid,
    .benefits-grid {
        perspective: 1000px;
        padding-left: 1rem;
        padding-right: 2rem;
        /* Espaço para ver o próximo */
    }

    .promotion-card,
    .benefit-card {
        transform-style: preserve-3d;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        min-width: 80vw;
        /* Um pouco menor para ver as bordas do próximo */
        opacity: 0.9;
        transform: scale(0.95) rotateY(5deg);
        /* Efeito de profundidade inicial */
    }

    /* O item focado (snap) ou hover fica em destaque */
    .promotion-card:hover,
    .benefit-card:hover,
    .promotion-card:active,
    .benefit-card:active {
        transform: scale(1) rotateY(0);
        opacity: 1;
        z-index: 10;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    }

    /* Promotion Card Overlay Styles */
    .promotion-image-container {
        position: relative;
        width: 100%;
        aspect-ratio: 16/9;
        overflow: hidden;
        border-radius: 12px 12px 0 0;
    }

    .promotion-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .promotion-card:hover .promotion-image-container img {
        transform: scale(1.1);
    }

    .promotion-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
        padding: 2rem 1rem 0.5rem;
        display: flex;
        align-items: flex-end;
    }

    .promotion-overlay h3 {
        margin: 0;
        font-size: 1.2rem;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .promotion-card-content {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 0 0 12px 12px;
    }

    /* Scroll Snap Fix */
    .promotions-grid,
    .benefits-grid {
        scroll-padding-left: 1rem;
        padding-bottom: 2rem;
        /* Ensure space for shadow */
    }
}

/* =========================
   TABLET & DESKTOP RESPONSIVE
   ========================= */

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 80px;
    }

    .header-right .mobile-menu-toggle {
        display: none;
    }

    .header-content {
        padding: 0.75rem 1rem;
    }

    .logo img {
        height: 32px;
    }

    .header-buttons .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Performance optimizations */
.hero {
    will-change: transform;
}

.btn,
.trust-badge,
.benefit-card,
.promotion-card,
.faq-item {
    will-change: transform;
}

/* Smooth scrolling */
html:not(.no-js) {
    scroll-behavior: smooth;
}

/* Utilities */
.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

@media (min-width: 1024px) {
    .lg\:block {
        display: block;
    }
}
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .footer-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer {
        padding: 3rem 1rem 7rem 1rem; /* Padding bottom extra por causa da nav mobile */
    }
}
