:root {
    --primary-bg: #000000;
    --secondary-bg: #0d0d0d;
    --accent-gold: #D4AF37;
    --accent-gold-rgb: 212, 175, 55;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --glass-bg: rgba(0, 0, 0, 0.7);
    --transition-speed: 0.4s;
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

/* Global Container */
.section-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    animation: gold-coin-spin 8s linear infinite;
    transform-style: preserve-3d;
}

.main-logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0px 5px 15px rgba(212, 175, 55, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

@keyframes gold-coin-spin {
    0% { transform: perspective(800px) rotateY(0deg); }
    100% { transform: perspective(800px) rotateY(360deg); }
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: block;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

#hero h1 {
    font-size: 1.8rem;
    width: 90%;
    max-width: 800px;
    margin: 0 auto 15px auto;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    line-height: 1.2;
}

#hero .highlight {
    color: #FFDF73;
    text-shadow: 0 0 15px rgba(255, 223, 115, 1), 0 0 25px rgba(212, 175, 55, 0.8), 0 0 35px rgba(255, 223, 115, 0.6);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFDF73 0%, #D4AF37 50%, #B89020 100%);
    color: #000;
    padding: 18px 40px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    width: 90%;
    max-width: 400px;
    border: 2px solid #FFF099;
    animation: cta-pulse 2s infinite;
}

.cta-button:hover {
    animation-play-state: paused;
    transform: translateY(-2px);
    box-shadow: 0px 8px 0px #8a6a12, 0px 20px 25px rgba(0,0,0,0.8), 0 0 40px 10px rgba(255, 223, 115, 0.8);
    background: linear-gradient(135deg, #FFF099 0%, #E3BC3C 50%, #C49A24 100%);
}

.cta-button:active {
    animation-play-state: paused;
    transform: translateY(4px);
    box-shadow: 0px 2px 0px #8a6a12, 0px 5px 10px rgba(0,0,0,0.8), 0 0 20px 5px rgba(255, 223, 115, 0.6);
}

@keyframes cta-pulse {
    0% { 
        transform: scale(1) translateY(0); 
        box-shadow: 0px 6px 0px #8a6a12, 0px 15px 20px rgba(0,0,0,0.6), 0 0 15px 2px rgba(255, 223, 115, 0.5);
    }
    50% { 
        transform: scale(1.03) translateY(-2px); 
        box-shadow: 0px 8px 0px #8a6a12, 0px 20px 25px rgba(0,0,0,0.8), 0 0 35px 8px rgba(255, 223, 115, 0.9);
    }
    100% { 
        transform: scale(1) translateY(0); 
        box-shadow: 0px 6px 0px #8a6a12, 0px 15px 20px rgba(0,0,0,0.6), 0 0 15px 2px rgba(255, 223, 115, 0.5);
    }
}

/* Marquee */
.marquee-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    border-top: 2px solid #FFDF73;
    border-bottom: 2px solid #FFDF73;
    box-shadow: 0 0 25px rgba(255, 223, 115, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.4);
    padding: 18px 0;
    overflow: hidden;
    z-index: 2;
}

.marquee {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.marquee span {
    font-size: 0.95rem;
    color: #FFDF73;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 223, 115, 0.8), 0 0 20px rgba(212, 175, 55, 0.6);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* General Sections */
.section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
}

.gold {
    color: var(--accent-gold);
}

/* Presentation */
#presentation {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.presentation-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(480px, 1.4fr);
    gap: 45px;
    align-items: center;
    padding: 0 20px;
}

.presentation-side {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.presentation-side-left h2 {
    font-size: clamp(1.8rem, 2.3vw, 2.8rem);
    line-height: 1.15;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.presentation-side-left .highlight {
    color: #FFDF73;
    text-shadow: 0 0 20px rgba(255, 223, 115, 0.8), 0 0 40px rgba(255, 223, 115, 0.6), 0 0 60px rgba(212, 175, 55, 0.4);
    animation: neon-glow 2.5s ease-in-out infinite;
}

@keyframes neon-glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 223, 115, 0.8), 0 0 40px rgba(255, 223, 115, 0.6);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 223, 115, 1), 0 0 50px rgba(255, 223, 115, 0.8), 0 0 70px rgba(212, 175, 55, 0.5);
    }
}

.presentation-image-wrapper {
    margin-top: 30px;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1.2 / 1;
    border-radius: 28px;
    overflow: hidden;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.presentation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.image-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 12px 18px;
    border-radius: 999px;
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.6px;
    backdrop-filter: blur(8px);
}

.image-glow {
    position: absolute;
    bottom: -50px;
    right: -40px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.45) 0%, transparent 60%);
    filter: blur(22px);
    pointer-events: none;
}

.presentation-label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--accent-gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.presentation-side-right p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.presentation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.presentation-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-white);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
}

.presentation-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 1.2rem;
    line-height: 1;
}

/* Who We Are */
#who-we-are .text-content {
    max-width: 800px;
    margin: 0 auto;
}

#who-we-are p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: left;
}

#who-we-are p strong {
    color: #FFDF73;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.who-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.gold-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #FFDF73, transparent);
    margin: 15px auto 35px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.transition-phrase {
    text-align: center;
    font-style: italic;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 40px;
}

#presentation .transition-phrase {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Section Divider Logo */
.section-divider-logo {
    display: flex;
    justify-content: center;
    margin: 60px 0 20px 0;
}

.section-divider-logo img {
    height: 70px;
    opacity: 0.8;
    animation: floating-divider 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

@keyframes floating-divider {
    0% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-10px) scale(1.05); opacity: 1; filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8)); }
    100% { transform: translateY(0) scale(1); opacity: 0.7; }
}

/* Results Section */
#results .section-container {
    padding-top: 10px;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.result-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(5, 5, 5, 0.95));
    padding: 40px 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.08), transparent);
    transform: skewX(-20deg);
    animation: card-shine 5s infinite;
}

.result-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255, 223, 115, 0.6);
    box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.15), 0 20px 40px rgba(212, 175, 55, 0.25);
}

.result-icon {
    font-size: 2.2rem;
    color: rgba(212, 175, 55, 0.4);
    margin-bottom: 15px;
    transition: color 0.4s ease, transform 0.4s ease;
}

.result-card:hover .result-icon {
    color: #FFDF73;
    transform: scale(1.2) translateY(-5px);
    filter: drop-shadow(0 0 10px rgba(255, 223, 115, 0.5));
}

.result-card .number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(to bottom, #FFF099, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.result-card .label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #FFF;
    margin-top: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

@keyframes card-shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* O Que Oferecemos Section */
#offers .section-container {
    text-align: center;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.offer-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(5, 5, 5, 0.95));
    padding: 40px 25px 35px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    text-align: center;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.06), transparent);
    transform: skewX(-20deg);
    animation: card-shine 6s infinite;
}

.offer-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 223, 115, 0.5);
    box-shadow: inset 0 0 25px rgba(212, 175, 55, 0.1), 0 20px 40px rgba(212, 175, 55, 0.2);
}

.offer-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.offer-icon i {
    font-size: 1.6rem;
    color: #FFDF73;
    transition: all 0.4s ease;
}

.offer-card:hover .offer-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    box-shadow: 0 0 25px rgba(255, 223, 115, 0.4);
    transform: scale(1.1);
}

.offer-card:hover .offer-icon i {
    filter: drop-shadow(0 0 8px rgba(255, 223, 115, 0.7));
}

.offer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFDF73;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.offer-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Partners Section */
.neon-gold-title {
    display: inline-block;
    color: #FFDF73;
    padding: 15px 40px;
    border: 2px solid #FFDF73;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 223, 115, 0.4), inset 0 0 15px rgba(212, 175, 55, 0.3);
    text-shadow: 0 0 10px rgba(255, 223, 115, 0.6), 0 0 20px rgba(212, 175, 55, 0.4);
    animation: neon-breathing 2s ease-in-out infinite alternate;
    margin-bottom: 40px;
}

@keyframes neon-breathing {
    0% {
        box-shadow: 0 0 15px rgba(255, 223, 115, 0.3), inset 0 0 10px rgba(212, 175, 55, 0.2);
        text-shadow: 0 0 5px rgba(255, 223, 115, 0.4);
    }
    100% {
        box-shadow: 0 0 35px rgba(255, 223, 115, 0.7), inset 0 0 25px rgba(212, 175, 55, 0.6);
        text-shadow: 0 0 15px rgba(255, 223, 115, 0.9), 0 0 30px rgba(212, 175, 55, 0.7);
    }
}

/* Partners Slider */
.slider-container {
    overflow: hidden;
    padding: 40px 0;
}

.partners-slider {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: slider 15s linear infinite;
}

.partner-logo {
    min-width: 200px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1) brightness(2);
    opacity: 0.5;
    transition: filter 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

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

.logo-horizontal img {
    transform: scale(1.4);
}

.partner-logo:hover {
    filter: grayscale(0) brightness(1) drop-shadow(0 0 25px rgba(212, 175, 55, 0.5));
    opacity: 1;
    transform: scale(1.1);
}

@keyframes slider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer */
footer {
    background: #050505;
    text-align: center;
    padding-bottom: 0;
}

.footer-title {
    margin-bottom: 10px;
}

footer > .section-container p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Copyright bar */
.footer-copyright {
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 14px 20px;
    text-align: center;
}

.footer-copyright p {
    color: #D4AF37;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #FFDF73;
    font-size: 1.5rem;
    text-decoration: none;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(5, 5, 5, 0.95));
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8), 0 5px 15px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.3));
}

.social-links a:hover {
    color: #FFF;
    border-color: rgba(255, 223, 115, 0.7);
    transform: translateY(-6px) scale(1.15);
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.2), 0 10px 25px rgba(212, 175, 55, 0.5), 0 0 30px rgba(255, 223, 115, 0.4);
    text-shadow: 0 0 12px rgba(255, 223, 115, 0.9);
    filter: drop-shadow(0 0 15px rgba(255, 223, 115, 0.6));
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Specifics */
@media (max-width: 768px) {
    .marquee-container {
        padding: 10px 0;
    }

    .marquee {
        animation: marquee 22s linear infinite; /* Roda devagar o suficiente */
        white-space: nowrap; /* Mantém na mesma linha */
    }
    
    .marquee span {
        font-size: 0.7rem; /* Fica menorzinha cabendo bastante coisa na tela */
        letter-spacing: 1px;
    }

    .main-logo {
        height: 140px; /* Logo gigante no mobile */
        margin-bottom: 10px;
    }
    
    #hero h1 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    #hero .highlight {
        color: #FFDF73;
        text-shadow: 0 0 15px rgba(255, 223, 115, 1), 0 0 25px rgba(212, 175, 55, 0.8), 0 0 35px rgba(255, 223, 115, 0.6);
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 14px 30px;
        max-width: 350px;
    }
    
    .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .result-card {
        aspect-ratio: 1 / 1;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .result-card .number {
        font-size: 2rem;
    }
    
    .result-card .label {
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin-top: 5px;
    }
    
    .result-icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

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

    .offer-card {
        padding: 30px 20px 25px;
    }

    .offer-title {
        font-size: 0.95rem;
    }

    .offer-desc {
        font-size: 0.85rem;
    }

    .neon-gold-title {
        padding: 12px 25px;
        font-size: 0.4rem;
        letter-spacing: 0.5px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

    .section-title.neon-gold-title {
        font-size: 0.7rem;
    }
    
    .partners-slider {
        gap: 30px;
        animation: slider 8s linear infinite;
    }
    
    .partner-logo {
        min-width: 160px;
        height: 80px;
    }

    .presentation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    #presentation .transition-phrase {
        font-size: 0.85rem;
        margin-top: 20px;
    }

    .presentation-side-left,
    .presentation-side-right {
        align-items: center;
    }

    .presentation-list {
        justify-content: center;
    }

    .presentation-label {
        margin: 0 auto;
    }

    .presentation-side h2 {
        font-size: 2rem;
    }

    .presentation-image-wrapper {
        margin-top: 0;
    }

    .image-frame {
        max-width: 100%;
        aspect-ratio: 1.1 / 1;
    }

    .footer-title {
        font-size: 0.7rem;
    }
}
