        /* Variáveis de Estilo */
        :root {
            --bg-deep: #030712;
            --bg-card: #081020;
            --bg-card-hover: #0e1a34;
            --gold-primary: #cfa163;
            --gold-dark: #a98048;
            --text-light: #ffffff;
            --text-muted: #cbd5e1; /* Clareado para facilitar a leitura */
            --text-dark: #64748b;
            --border-gold: rgba(207, 161, 99, 0.15);
            --border-gold-hover: rgba(207, 161, 99, 0.45);
            --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Configurações Globais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-deep);
            color: var(--text-light);
            font-family: "Inter", sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header Simplificado */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(3, 7, 18, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .header-wrap {
            display: flex;
            align-items: center;
            height: 90px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-family: "Playfair Display", serif;
            font-size: 22px;
            letter-spacing: 2px;
            font-weight: 400;
            line-height: 1;
        }

        .logo-subtitle {
            font-size: 9px;
            letter-spacing: 3px;
            color: var(--text-muted);
            text-transform: uppercase;
            margin-top: 2px;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: #050b18;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 560px;
            padding-right: 40px;
        }

        .section-tag {
            font-size: 11px;
            letter-spacing: 3px;
            color: var(--gold-primary);
            text-transform: uppercase;
            margin-bottom: 16px;
            font-weight: 500;
            display: inline-block;
        }

        .hero h2 {
            font-family: "Playfair Display", serif;
            font-size: 42px;
            line-height: 1.25;
            margin-bottom: 24px;
            font-weight: 400;
        }

        .hero h2 span {
            color: var(--gold-primary);
            display: block;
        }

        .hero p {
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: 36px;
            font-weight: 300;
        }

        .btn-primary {
            background-color: var(--gold-primary);
            color: var(--bg-deep);
            padding: 14px 28px;
            border-radius: 4px;
            font-size: 15px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .btn-primary:hover {
            background-color: var(--gold-dark);
            transform: translateY(-2px);
        }

        .hero-image-wrapper {
            position: absolute;
            top: 0;
            right: 0;
            width: 58%;
            height: 100%;
            overflow: hidden;
        }

        .hero-image-wrapper::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to left,
                rgba(5, 11, 24, 0.1),
                rgba(5, 11, 24, 0.4),
                rgba(5, 11, 24, 0.75),
                rgba(5, 11, 24, 0.95),
                #050b18
            );
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(
                circle at right,
                rgba(207, 161, 99, 0.08),
                transparent 45%
            );
        }

        .hero-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Chapters Section - Layout Lado a Lado no PC */
        .chapters {
            padding: 100px 0;
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .chapter-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: 12px;
            display: grid;
            grid-template-columns: 1fr 1fr; /* Força 2 colunas lado a lado por padrão no PC */
            overflow: hidden;
            min-height: 480px;
            transition: var(--transition-smooth);
        }

        .chapter-content {
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Indicador do Capítulo em Dourado */
        .chapter-tag {
            font-size: 11px;
            letter-spacing: 2px;
            color: var(--gold-primary);
            text-transform: uppercase;
            margin-bottom: 12px;
            font-weight: 500;
            display: block;
        }

        .chapter-content h3 {
            font-family: "Playfair Display", serif;
            font-size: 32px;
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 24px;
        }

        /* Destaque dourado dentro do título */
        .highlight-gold {
            color: var(--gold-primary);
        }

        .chapter-text-block {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .chapter-text-block p {
            color: var(--text-muted);
            font-size: 15px;
            font-weight: 300;
            line-height: 1.7;
        }

        /* Frase em Destaque Dourada */
        .chapter-quote-gold {
            color: var(--gold-primary);
            font-size: 16px;
            font-weight: 500;
            font-style: italic;
            margin: 12px 0;
            border-left: 2px solid var(--gold-primary);
            padding-left: 14px;
            line-height: 1.5;
        }

        .chapter-emphasis {
            color: var(--gold-primary);
            font-weight: 500;
            font-size: 15px;
            margin-top: 8px;
        }

        /* Container da imagem com padding leve para emoldurar */
        .chapter-image-container {
            width: 100%;
            height: 100%;
            padding: 16px;
        }

        /* Imagem com opacidade e border-radius de leve */
        .chapter-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            border-radius: 8px;
            filter: brightness(0.7) contrast(1.05); /* Ligeiramente mais escura */
            transition: var(--transition-smooth);
        }

        .chapter-card:hover .chapter-image-container img {
            filter: brightness(0.85) contrast(1.05); /* Esclarece de leve no hover do card */
        }

        /* 4. Valores Section - Grade 3x3 com Efeito de Foco */
        .values-section {
            padding: 100px 0;
        }

        .section-title-centered {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title-centered h2 {
            font-size: 12px;
            letter-spacing: 3px;
            color: var(--gold-primary);
            text-transform: uppercase;
            font-weight: 500;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .value-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 40px 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: var(--transition-smooth);
            cursor: pointer;
        }

        /* Efeito ao passar o mouse ou tocar em um cartão */
        .value-card:hover, .value-card:active {
            background-color: var(--bg-card-hover);
            border-color: var(--border-gold-hover);
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(207, 161, 99, 0.15);
            z-index: 2;
        }

        /* Suaviza a opacidade dos demais cartões quando um estiver em foco */
        .values-grid:hover .value-card:not(:hover) {
            opacity: 0.5;
            transform: scale(0.98);
        }

        .value-icon {
            color: var(--gold-primary);
            font-size: 28px;
            margin-bottom: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 40px;
        }

        .value-card h4 {
            font-size: 17px;
            margin-bottom: 14px;
            font-weight: 500;
            color: var(--text-light);
        }

        .value-card p {
            color: var(--text-muted);
            font-size: 13.5px;
            line-height: 1.6;
            font-weight: 300;
        }

        /* 5. Mission & Vision Section - Bloco Único com Divisória */
        .mv-section {
            padding: 20px 0 100px;
        }

        .mv-container {
            background-color: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: 12px;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            padding: 40px;
            transition: var(--transition-smooth);
        }

        .mv-container:hover {
            border-color: var(--border-gold-hover);
            box-shadow: 0 12px 30px rgba(207, 161, 99, 0.05);
        }

        .mv-block {
            display: flex;
            gap: 28px;
            align-items: flex-start;
            padding: 20px 40px;
        }

        .mv-icon-wrapper {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 1px solid var(--gold-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--gold-primary);
            font-size: 20px;
        }

        .mv-content h3 {
            font-size: 12px;
            letter-spacing: 2px;
            color: var(--gold-primary);
            text-transform: uppercase;
            margin-bottom: 14px;
            font-weight: 500;
        }

        .mv-content p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
            font-weight: 300;
        }

        /* Linha Divisória Vertical Sutil */
        .mv-divider {
            width: 1px;
            height: 120px;
            background: linear-gradient(
                to bottom,
                transparent,
                var(--border-gold),
                transparent
            );
        }

        /* 6. Footer Call To Action - Otimizado para telas de PC (Desktop) */
        .cta-banner {
            padding: 130px 0;
            background: linear-gradient(rgba(3, 7, 18, 0.75), rgba(3, 7, 18, 0.85)), url("./../../img/ilustracoes/arvorepordosol.png") no-repeat center center;
            background-size: cover;
            background-position: center center;
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
            text-align: center;
        }

        /* Ajustes de enquadramento para telas amplas de computador */
        @media (min-width: 1024px) {
            .cta-banner {
                padding: 160px 0;
                background-position: center 38%; /* Enquadra melhor a árvore e o pôr do sol */
            }
        }

        .cta-banner h2 {
            font-family: "Playfair Display", serif;
            font-size: 38px;
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        .cta-banner h2 span {
            color: var(--gold-primary);
            display: block;
        }

        .cta-banner p {
            color: var(--text-light);
            font-size: 16px;
            margin-bottom: 32px;
            font-weight: 300;
        }

        .btn-outline {
            border: 1px solid var(--gold-primary);
            color: var(--gold-primary);
            background: transparent;
            padding: 14px 28px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .btn-outline:hover {
            background-color: var(--gold-primary);
            color: var(--bg-deep);
        }

        /* 7. Footer */
        footer {
            background-color: var(--bg-deep);
            padding: 80px 0 30px;
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-tagline {
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.6;
            margin-top: 8px;
        }

        .footer-col h5 {
            color: var(--text-light);
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 24px;
            font-weight: 500;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col ul li a {
            color: var(--text-muted);
            font-size: 13px;
        }

        .footer-col ul li a:hover {
            color: var(--gold-primary);
        }

        .contact-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-muted);
            font-size: 13px;
        }

        .contact-item i {
            color: var(--gold-primary);
            font-size: 14px;
            width: 16px;
        }

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-link {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: var(--transition-smooth);
        }

        .social-link:hover {
            border-color: var(--gold-primary);
            color: var(--gold-primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 30px;
            text-align: center;
            color: var(--text-dark);
            font-size: 12px;
        }

        /* Animação unificada de carregamento gradual (Scroll fade-in) */
        .fade-in-section {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            visibility: hidden;
        }

        .fade-in-section.is-visible {
            opacity: 1;
            transform: none;
            visibility: visible;
        }

        /* Responsividade (Media Queries) */
        @media (max-width: 1024px) {
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-grid {
                gap: 40px;
            }
            .chapter-card {
                min-height: auto;
            }
            .chapter-content {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: 140px 0 80px;
            }
            .hero-grid {
                display: block;
            }
            .hero-content {
                max-width: 100%;
                text-align: center;
                margin: 0 auto;
                padding: 0;
            }
            .hero-image-wrapper {
                display: none;
            }
            
            /* Colapsa os capítulos para uma única coluna apenas no celular */
            .chapter-card, .chapter-card.reverse {
                grid-template-columns: 1fr !important;
            }
            .chapter-image-container {
                height: 300px;
                padding: 12px;
            }
            .chapter-card.reverse .chapter-image-container {
                order: 2; /* Mantém a imagem após o texto no mobile */
            }
            
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .mv-container {
                grid-template-columns: 1fr;
                padding: 20px;
            }
            .mv-block {
                padding: 20px;
            }
            .mv-divider {
                width: 100%;
                height: 1px;
                background: linear-gradient(
                    to right,
                    transparent,
                    var(--border-gold),
                    transparent
                );
                margin: 10px 0;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero h2 {
                font-size: 32px;
            }
            .chapter-content h3 {
                font-size: 26px;
            }
        }