<style>
    /* ===== RESET E VARIÁVEIS ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --bg-primary: #0a0a0a;
        --bg-secondary: #1a1a1a;
        --gold: #d4af37;
        --gold-hover: #e5c158;
        --text-primary: #ffffff;
        --text-secondary: #b0b0b0;
        --border-color: rgba(212, 175, 55, 0.3);
        --transition: all 0.3s ease;
    }

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

    /* ===== HEADER E NAVEGAÇÃO ===== */
    header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    nav {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
    }

    .nav-links a {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 400;
        font-size: 0.95rem;
        transition: var(--transition);
        position: relative;
    }

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

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

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

    /* Menu Mobile */
    .menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

    .menu-toggle span {
        width: 25px;
        height: 2px;
        background-color: var(--gold);
        transition: var(--transition);
    }

    /* ===== HERO SECTION ===== */
    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 8rem 2rem 4rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        font-weight: 700;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }

    .hero .subtitle {
        font-size: clamp(1rem, 2vw, 1.25rem);
        color: var(--text-secondary);
        margin-bottom: 4rem;
        font-weight: 300;
        max-width: 600px;
    }

    /* ===== CARDS DE ESTATÍSTICAS ===== */
    .stats-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        width: 100%;
        max-width: 900px;
        margin-bottom: 4rem;
    }

    .stat-card {
        border: 1px solid var(--gold);
        padding: 2.5rem 2rem;
        text-align: center;
        transition: var(--transition);
        background-color: rgba(212, 175, 55, 0.02);
    }

    .stat-card:hover {
        background-color: rgba(212, 175, 55, 0.05);
        transform: translateY(-5px);
    }

    .stat-number {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 1rem;
        color: var(--gold);
        font-weight: 400;
    }

    /* ===== PILARES ===== */
    .pillars-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
        margin-bottom: 4rem;
    }

    .pillar {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        cursor: pointer;
        transition: var(--transition);
    }

    .pillar:hover {
        transform: translateY(-5px);
    }

    .pillar-icon {
        width: 80px;
        height: 80px;
        border: 1px solid var(--gold);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
    }

    .pillar:hover .pillar-icon {
        background-color: rgba(212, 175, 55, 0.1);
    }

    .pillar-icon svg {
        width: 32px;
        height: 32px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 1.5;
    }

    .pillar-label {
        font-size: 0.9rem;
        color: var(--text-primary);
        font-weight: 400;
    }

    /* ===== CTA BUTTON ===== */
    .cta-button {
        display: inline-block;
        background-color: var(--gold);
        color: var(--bg-primary);
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: var(--transition);
        margin-top: 2rem;
    }

    .cta-button:hover {
        background-color: var(--gold-hover);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

    /* ===== FOOTER ===== */
    footer {
        background-color: var(--bg-secondary);
        padding: 3rem 2rem;
        text-align: center;
        border-top: 1px solid var(--border-color);
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .footer-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.9rem;
        transition: var(--transition);
    }

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

    .footer-text {
        color: var(--text-secondary);
        font-size: 0.85rem;
    }

    /* ===== RESPONSIVIDADE ===== */
    @media (max-width: 768px) {
        header {
            padding: 1rem 0;
        }

        nav {
            padding: 0 1.5rem;
            justify-content: space-between;
        }

        .nav-links {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 70px);
            background-color: var(--bg-primary);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            transition: var(--transition);
            border-top: 1px solid var(--border-color);
        }

        .nav-links.active {
            left: 0;
        }

        .nav-links a {
            font-size: 1.2rem;
        }

        .menu-toggle {
            display: flex;
        }

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

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

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .hero {
            padding: 6rem 1.5rem 3rem;
        }

        .stats-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .stat-card {
            padding: 2rem 1.5rem;
        }

        .pillars-container {
            gap: 1.5rem;
        }

        .pillar-icon {
            width: 70px;
            height: 70px;
        }

        .pillar-icon svg {
            width: 28px;
            height: 28px;
        }

        .cta-button {
            padding: 1rem 2rem;
            font-size: 1rem;
            width: 100%;
            max-width: 300px;
        }

        .footer-links {
            flex-direction: column;
            gap: 1rem;
        }
    }

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 2rem;
        }

        .hero .subtitle {
            font-size: 0.95rem;
        }

        .stat-number {
            font-size: 2.5rem;
        }

        .pillars-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .pillar:last-child {
            grid-column: 1 / -1;
            justify-self: center;
        }
    }

    /* ===== ANIMAÇÕES ===== */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero h1,
    .hero .subtitle,
    .stats-container,
    .pillars-container,
    .cta-button {
        animation: fadeInUp 0.8s ease-out forwards;
    }

    .hero .subtitle {
        animation-delay: 0.2s;
    }

    .stats-container {
        animation-delay: 0.4s;
    }

    .pillars-container {
        animation-delay: 0.6s;
    }

    .cta-button {
        animation-delay: 0.8s;
    }
</style>