:root {
    --primary-gold: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F2C94C 50%, #B8860B 100%);
    --bg-dark: #05070a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(212, 175, 55, 0.2);
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.png') no-repeat center center/cover;
    opacity: 0.3;
    z-index: -1;
}

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

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

/* Header */
.header {
    padding: 25px 0;
}

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

.logo-text-fallback {
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.insta-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.insta-link:hover { color: var(--primary-gold); }

/* Hero Section */
.hero { padding: 40px 0 80px; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
}

.badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    display: inline-block;
}

h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.subtitle-regional {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-list {
    list-style: none;
    margin-bottom: 40px;
}

.hero-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--text-gray);
    text-align: left;
}

.hero-list li i {
    color: var(--primary-gold);
    margin-top: 5px;
    font-size: 1.1rem;
}

/* Authority Card (Foto Cheia) */
.authority-card {
    background: rgba(5, 7, 10, 0.8);
    border: 2px solid var(--primary-gold);
    border-radius: 30px;
    padding: 0; /* Removendo padding para a foto encostar nas bordas */
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(212, 175, 55, 0.15);
    max-width: 400px;
    height: 480px; /* Definindo uma altura fixa para o retângulo */
    margin: 0 auto;
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden; /* Garante que a foto respeite o border-radius */
}

.founder-photo-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.8); /* Zoom maior para remover os anéis e preencher o cartão */
    object-position: center 20%; /* Enquadramento focado no rosto e passaporte */
    display: block;
}

.brand-info .brand-name {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 5px;
    margin-bottom: 5px;
}

.brand-info .brand-sub {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--primary-gold);
    letter-spacing: 12px;
    margin-left: 12px; /* Ajuste para o kerning do print */
}

/* Social Proof Mini */
.social-proof-mini {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars { display: flex; align-items: center; }

.avatars img {
    width: 36px; height: 36px;
    border-radius: 50%; border: 2px solid var(--bg-dark);
    margin-left: -12px;
}

.avatars img:first-child { margin-left: 0; }

.sp-text { margin: 0 !important; font-size: 0.95rem; color: var(--text-gray); line-height: 1; }

/* Cards Section Header */
.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin: 60px 0 40px;
}

/* Benefits Section */
.grid { display: grid; gap: 24px; }

.card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 20px;
    transition: var(--transition);
}

.icon-box {
    width: 60px; height: 60px;
    background: rgba(212, 175, 55, 0.1);
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; margin-bottom: 24px;
}

.mini-logo { max-width: 80%; max-height: 80%; object-fit: contain; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 32px; border-radius: 12px; font-weight: 700;
    text-decoration: none; transition: var(--transition); gap: 12px;
}

.btn-primary {
    background: var(--gold-gradient); color: #000;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:active { transform: scale(0.98); }

.glow-button { position: relative; z-index: 1; }

/* Testimonials */
.testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

.user-photo {
    width: 50px; height: 50px; border-radius: 50%;
    border: 2px solid var(--primary-gold); object-fit: cover;
}

.user-info strong { display: block; color: var(--primary-gold); }
.user-info span { font-size: 0.75rem; color: var(--text-gray); }

/* Final CTA */
.cta-final { padding: 60px 0 100px; }
.cta-box { text-align: center; }
.cta-desc { margin-bottom: 40px !important; color: var(--text-gray); }

/* Sticky CTA */
.sticky-cta-mobile {
    position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 9999;
    display: none; animation: slideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.sticky-cta-mobile .btn { width: 100%; padding: 18px; box-shadow: 0 10px 40px rgba(0,0,0,0.6); }

@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* Footer */
.footer {
    padding: 40px 0; text-align: center; font-size: 0.85rem; opacity: 0.8;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Animations */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-list li { justify-content: center; }
    .hero-image { order: -1; margin-bottom: 20px; }
    .authority-card { max-width: 320px; padding: 30px 20px; }
    .photo-glow-outer { width: 140px; height: 140px; }
    .brand-info .brand-name { font-size: 1.6rem; }
    .brand-info .brand-sub { font-size: 1.2rem; }
    .flex-header { flex-direction: column; gap: 15px; }
    .social-proof-mini { justify-content: center; }
    .sticky-cta-mobile { display: block; }
    .cta-final { padding-bottom: 140px; }
}