:root {
    --primary: #05333B;
    --primary-dark: #032126;
    --gold: #C09864;
    --gold-light: #d4b48d;
    --white: #FFFFFF;
    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --bg-dark: #032126;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(192, 151, 99, 0.15);
    --radius-lg: 32px;
    --radius-md: 16px;
    --transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

svg[data-lucide],
.lucide {
    color: #C09864 !important;
    stroke: #C09864 !important;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    background: rgba(3, 33, 38, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 45px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.cta-pill {
    background: var(--gold);
    color: var(--primary) !important;
    padding: 10px 24px;
    border-radius: 100px;
}

/* Hero Elite */
.hero-elite {
    padding: 120px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(192, 151, 99, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--gold);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-elite h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 32px;
}

.hero-elite h1 span {
    color: var(--gold);
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.btn-glow {
    background: var(--gold);
    color: var(--primary);
    padding: 20px 48px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 40px rgba(192, 151, 99, 0.3);
    transition: var(--transition);
}

.btn-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 60px rgba(192, 151, 99, 0.5);
    background: var(--gold-light);
}

.link-more {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(30px);
    width: 320px;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
}

.progress-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
}

.progress-ring svg {
    transform: rotate(-90deg);
}

.progress-ring circle {
    fill: none;
    stroke-width: 8;
}

.progress-ring .bg {
    stroke: rgba(255, 255, 255, 0.05);
}

.progress-ring .prog {
    stroke: var(--gold);
    stroke-dasharray: 283;
    stroke-dashoffset: 42;
    /* 85% */
}

.percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
}

.widget-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    text-align: center;
}

.widget-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.floating-card {
    position: absolute;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.floating-card.c1 {
    top: 10%;
    right: 0;
}

.floating-card.c2 {
    bottom: 15%;
    left: -10%;
}

/* Bento Grid */
.section-bento {
    padding: 60px 0 120px;
}

.section-header {
    margin-bottom: 80px;
    max-width: 700px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-header h2,
.auth-content h2,
.cta-box h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 24px;
}

.bento-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.bento-inner {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.bento-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.bento-item i, 
.bento-item svg {
    width: 32px !important;
    height: 32px !important;
    display: block;
    color: var(--gold);
    margin-bottom: 24px;
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.middle {
    grid-column: span 2;
}

.bento-item.small {
    grid-column: span 1;
}

.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: saturate(1);
    transition: var(--transition);
}

.bento-item:hover .bento-bg {
    opacity: 0.4;
    transform: scale(1.05);
}

.bento-item:hover {
    border-color: var(--gold);
    background: rgba(192, 151, 99, 0.05);
}

.btn-simple {
    color: #C09864 !important;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.btn-simple i {
    margin-bottom: 0 !important;
    font-size: 1.2rem !important;
}

/* Questions Widgets */
.section-questions {
    padding: 100px 0;
    background: #021a1e;
}

.widget-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.q-widget {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.q-num {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 10rem;
    font-weight: 800;
    opacity: 0.03;
    pointer-events: none;
}

.q-widget.highlight {
    background: var(--primary);
    border-color: var(--gold);
}

/* How It Works Section */
.section-how-it-works {
    padding: 120px 0;
    background: var(--primary-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.step-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.step-num {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.5;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(192, 152, 100, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px;
    color: var(--gold);
}

.step-icon i {
    width: 28px;
    height: 28px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.transparency-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.transparency-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.transparency-card:hover {
    border-color: var(--gold);
    background: rgba(192, 152, 100, 0.04);
    transform: translateY(-5px);
}

.t-icon i {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.t-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 600;
}

.t-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .transparency-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Authority */
.section-authority {
    padding: 150px 0;
    background: #042d33;
    /* Fundo levemente diferente para separação visual */
    position: relative;
    overflow: hidden;
}

.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.auth-features {
    margin-top: 48px;
    list-style: none;
}

.auth-features li {
    font-size: 1.15rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.auth-features i {
    color: #C09864 !important;
    stroke: #C09864 !important;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.auth-visual-container {
    position: relative;
}

.auth-visual {
    height: 600px;
    background: linear-gradient(rgba(3, 33, 38, 0.4), rgba(3, 33, 38, 0.6)), url('sos.jpg');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    position: relative;
    border: 1px solid var(--glass-border);
}

.experience-badge {
    position: absolute;
    bottom: -40px;
    left: -40px;
    background: var(--gold);
    color: var(--primary);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.experience-badge.large-text {
    padding: 30px;
    max-width: 250px;
    line-height: 1.4;
}

.experience-badge.large-text .text {
    font-size: 1.1rem;
    text-transform: none;
    font-weight: 700;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Indicated For Section */
.section-indicated {
    padding: 120px 0;
    background: var(--bg-dark);
}

.indicated-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.indicated-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.indicated-card:hover {
    border-color: var(--gold);
    background: rgba(192, 151, 99, 0.05);
    transform: translateY(-10px);
}

.card-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.card-icon i {
    width: 40px !important;
    height: 40px !important;
}

.indicated-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--white);
    line-height: 1.2;
}

.indicated-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.indicated-footer {
    text-align: center;
    max-width: 600px;
    margin: 60px auto 0;
}

.indicated-footer p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 32px;
}

@media (max-width: 1100px) {
    .indicated-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .indicated-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Elite */
.section-faq {
    padding: 60px 0;
}

.narrow {
    max-width: 800px;
}

.faq-elite {
    margin-top: 60px;
}

.faq-node {
    margin-bottom: 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-trigger {
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 32px;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-node.active .faq-content {
    max-height: 200px;
    padding-bottom: 32px;
}

.faq-node.active i {
    transform: rotate(45deg);
    color: var(--gold);
}

/* CTA Footer */
.section-footer-cta {
    padding: 150px 0;
}

.cta-box {
    background: var(--primary);
    padding: 100px 40px;
    border-radius: 48px;
    border: 1px solid var(--gold);
    position: relative;
}

.cta-box h2 {
    margin-bottom: 24px;
}

.footer-btns {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.btn-outline-gold {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--gold);
    padding: 18px 32px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: rgba(192, 152, 100, 0.1);
    transform: translateY(-3px);
}

/* Footer */
.footer-elite {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    background: var(--primary-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 24px;
}

.footer-description {
    color: var(--text-muted);
    max-width: 400px;
    font-size: 0.95rem;
}

.footer-contact h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 600;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.contact-list i {
    color: #C09864 !important;
    stroke: #C09864 !important;
    width: 20px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-dev a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.footer-dev a:hover {
    text-decoration: underline;
}

/* Mobile Adaptations */
@media (max-width: 1100px) {

    .hero-grid,
    .auth-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .widget-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .section-header h2,
    .auth-content h2,
    .cta-box h2 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .hero-elite {
        padding: 160px 0 20px !important;
        text-align: center;
    }

    .hero-elite h1 {
        font-size: 2.2rem !important;
        margin-bottom: 24px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-glow,
    .btn-outline-gold {
        width: 100%;
        justify-content: center;
    }

    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    section {
        padding: 40px 0 !important;
    }

    .auth-wrapper {
        gap: 40px;
    }

    .auth-visual {
        height: 400px;
    }

    .experience-badge.large-text {
        position: relative;
        left: 0;
        bottom: 0;
        max-width: 100%;
        border-radius: var(--radius-md);
        margin-top: 20px;
        box-shadow: none;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: min-content;
    }
    .bento-item {
        grid-column: span 1 !important;
        height: auto;
        min-height: 280px;
    }
    .bento-inner {
        justify-content: center;
        padding: 30px;
    }

    .nav-links {
        gap: 16px;
    }

    .footer-btns {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* WhatsApp Floating Button */
.wpp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: var(--transition);
    text-decoration: none;
    overflow: hidden;
}

.wpp-floating:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .wpp-floating {
        bottom: 20px;
        right: 20px;
        width: 80px;
        height: 80px;
    }
}