        /* 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;
            --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;
        }

        /* 1. Header */
        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);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            color: var(--gold-primary);
            font-size: 28px;
        }

        .logo-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            letter-spacing: 2px;
            font-weight: 400;
            line-height: 1;
        }

        .logo-text span {
            font-size: 9px;
            letter-spacing: 3px;
            color: var(--text-muted);
            text-transform: uppercase;
            display: block;
            margin-top: 2px;
        }

        .btn-back-home {
            border: 1px solid var(--gold-primary);
            color: var(--gold-primary);
            padding: 10px 22px;
            border-radius: 4px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .btn-back-home:hover {
            background-color: var(--gold-primary);
            color: var(--bg-deep);
        }

        /* 2. Hero Section */
        .hero {
            padding-top: 180px;
            padding-bottom: 100px;
            position: relative;
            background: radial-gradient(circle at 80% 30%, rgba(207, 161, 99, 0.07) 0%, transparent 50%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            max-width: 540px;
        }

        .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: 44px;
            line-height: 1.25;
            margin-bottom: 24px;
            font-weight: 400;
        }

        .hero h2 span {
            color: var(--gold-primary);
            position: relative;
            display: inline-block;
        }

        /* Sublinhado decorativo na palavra "significado" */
        .hero h2 span::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 4px;
            width: 100%;
            height: 2px;
            background-color: var(--gold-primary);
        }

        .hero p {
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: 36px;
            font-weight: 300;
        }

        .btn-cta1 {
            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-cta1:hover {
            background-color: var(--gold-dark);
            transform: translateY(-2px);
        }

        .hero-mockup-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-mockup-wrapper img {
            width: 100%;
            max-width: 620px;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
        }

        /* 3. Section Processo em 6 Passos */
        .process-section {
            padding: 80px 0;
        }

        .process-title-area {
            text-align: center;
            margin-bottom: 60px;
        }

        .process-title-area span {
            font-size: 11px;
            letter-spacing: 3px;
            color: var(--gold-primary);
            text-transform: uppercase;
            font-weight: 500;
            display: block;
            margin-bottom: 12px;
        }

        .process-title-area h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 400;
        }

        /* Container principal do processo unificado */
        .process-flow-container {
            background-color: rgba(8, 16, 32, 0.4);
            border: 1px solid var(--border-gold);
            border-radius: 16px;
            padding: 60px 40px;
            position: relative;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            column-gap: 40px;
            row-gap: 60px;
            position: relative;
        }

        /* Cartão de cada etapa */
        .step-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: 12px;
            padding: 30px 24px 20px;
            position: relative;
            display: flex;
            flex-direction: column;
            transition: var(--transition-smooth);
        }

        .step-card:hover {
            background-color: var(--bg-card-hover);
            border-color: var(--border-gold-hover);
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(207, 161, 99, 0.08);
        }

        /* Ornamento com número da etapa no topo do card */
        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--bg-card);
            border: 1px solid var(--gold-primary);
            color: var(--gold-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 500;
            z-index: 5;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        /* Elementos das Etapas */
        .step-header {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 16px;
            justify-content: flex-start;
        }

        .step-header i {
            color: var(--gold-primary);
            font-size: 18px;
        }

        .step-card p {
            color: var(--text-muted);
            font-size: 13.5px;
            line-height: 1.6;
            font-weight: 300;
            margin-bottom: 24px;
            min-height: 64px; /* Garante alinhamento das imagens */
        }

        .step-image-wrap {
            border-radius: 6px;
            overflow: hidden;
            height: 160px;
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: auto; /* Alinha a imagem sempre na base */
        }

        .step-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.75) contrast(1.05);
            transition: var(--transition-smooth);
        }

        .step-card:hover .step-image-wrap img {
            filter: brightness(0.9) contrast(1.05);
        }

        /* Setas indicadoras de fluxo (Apenas em telas grandes) */
        .flow-arrow {
            position: absolute;
            color: var(--gold-primary);
            font-size: 18px;
            opacity: 0.6;
            z-index: 2;
        }

        /* Posicionamento das setas horizontais no grid de 3 colunas */
        .arrow-1-2 {
            top: 25%;
            left: 31%;
        }

        .arrow-2-3 {
            top: 25%;
            left: 65%;
        }

        .arrow-4-5 {
            bottom: 25%;
            left: 31%;
        }

        .arrow-5-6 {
            bottom: 25%;
            left: 65%;
        }

        /* 4. Section Tudo Pensado Para Você */
        .features-section {
            padding: 80px 0;
        }

        .features-title-centered {
            text-align: center;
            margin-bottom: 50px;
        }

        .features-title-centered h2 {
            font-size: 12px;
            letter-spacing: 3px;
            color: var(--gold-primary);
            text-transform: uppercase;
            font-weight: 500;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .feature-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 36px 24px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: var(--transition-smooth);
        }

        .feature-card:hover {
            background-color: var(--bg-card-hover);
            border-color: var(--border-gold-hover);
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(207, 161, 99, 0.08);
        }

        /* Suaviza os demais cartões ao focar um deles */
        .features-grid:hover .feature-card:not(:hover) {
            opacity: 0.65;
            transform: scale(0.98);
        }

        .feature-icon {
            color: var(--gold-primary);
            font-size: 26px;
            margin-bottom: 20px;
        }

        .feature-card h4 {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 12px;
            color: var(--text-light);
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.6;
            font-weight: 300;
        }

        /* 5. Footer CTA Banner */
        .cta-banner {
            padding: 130px 0;
            background: linear-gradient(rgba(3, 7, 18, 0.8), rgba(3, 7, 18, 0.95)), 
                        url('./../../img/ilustracoes/sea.jpg') no-repeat center center;
            background-size: cover;
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
            text-align: center;
        }

        @media (min-width: 1024px) {
            .cta-banner {
                padding: 150px 0;
                background-position: center 35%;
            }
        }

        .cta-banner h2 {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .cta-banner h2 span {
            color: var(--gold-primary);
            display: block;
        }

        .cta-banner p {
            display: none; /* Mantendo foco direto nos títulos */
        }

        .cta-banner .btn-cta1 {
            margin-top: 20px;
        }

        /* 6. Footer */
        footer {
            background-color: var(--bg-deep);
            padding: 60px 0 40px;
            font-size: 14px;
            border-top: 1px solid rgba(255, 255, 255, 0.02);
        }

        .footer-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-brand img {
            height: 36px;
            width: auto;
        }

        .footer-tagline {
            color: var(--text-muted);
            font-size: 13px;
            max-width: 480px;
            font-weight: 300;
        }

        .footer-copy {
            color: var(--text-dark);
            font-size: 12px;
        }

        /* Animação unificada de carregamento gradual */
        .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) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
                margin: 0 auto;
            }

            .hero-mockup-wrapper img {
                max-width: 500px;
            }

            .process-grid {
                grid-template-columns: 1fr 1fr;
                column-gap: 30px;
            }

            .flow-arrow {
                display: none; /* Remove as setas de fluxo no tablet/mobile */
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .process-flow-container {
                padding: 40px 20px;
            }

            .process-grid {
                grid-template-columns: 1fr;
                row-gap: 50px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .footer-wrap {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero h2 {
                font-size: 34px;
            }
            .process-title-area h2 {
                font-size: 26px;
            }
            .cta-banner h2 {
                font-size: 28px;
            }
        }