/* 
  MÉTODO CPC - Premium Design System
  Colours: Black (#0a0a0a), Gold (#d4af37), White (#f5f5f5)
  Typography: Outfit (Headings), Inter (Body)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --primary-gold: #d4af37;
    --primary-gold-rgb: 212, 175, 55;
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utilities */
.text-gold { color: var(--primary-gold); }
.bg-gold { background-color: var(--primary-gold); }
.section-padding { padding: 100px 0; scroll-margin-top: 90px; }
.reveal { opacity: 0; transform: translateY(30px); transition: var(--transition); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    border: none;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: #000;
}

.btn-primary:hover {
    background-color: #e5c05b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: #000;
    transform: translateY(-2px);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.logo-evolution {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logo-evolution img {
    height: 45px;
    width: auto;
}

.logo-evolution span {
    color: var(--primary-gold);
    font-size: 1.4rem;
    font-weight: 300; /* Estilo mais elegante, similar ao da camisa */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-cta .btn {
    padding: 0.75rem 1.5rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero-logo {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.hero-logo span {
    color: var(--primary-gold);
}

@media (max-width: 768px) {
    .hero-logo { font-size: 1.25rem; }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0) 66.6%), url('image/WEBP/banner-desktop.webp');
    background-size: cover;
    background-position: center top; /* Evita cortar a testa da pessoa */
}

.hero .container {
    width: 100%; /* Resolve o alinhamento centralizado involuntário em displays flexíveis */
}

.hero-content {
    max-width: 80%; /* Aumentado para 80% para garantir que o título não quebre em 3 linhas */
    text-align: left;
    margin-top: 80px;
}

.hero h4 {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 4rem; /* Reduzido levemente de 4.2rem para garantir os 2 blocos de texto */
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.mobile-br, .desktop-br {
    display: none;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap; /* Permite ajuste em telas menores, mas mantemos o nowrap no botão */
}

.hero-btns .btn {
    white-space: nowrap;
    padding: 1rem 2.5rem;
}

/* Desktop Specific Adjustments */
@media (min-width: 1025px) {
    .hero-content {
        max-width: 88%; /* Ajusta suavemente a largura, mantendo a âncora esquerdo inviolável */
    }
    
    .desktop-nowrap {
        white-space: nowrap; /* Garante que 'Desenvolvimento Humano' não quebre */
    }

    .desktop-br {
        display: block; /* Força a quebra após 'Humano' */
    }
    
    .hero-btns {
        display: flex !important;
        flex-direction: row !important; /* Força direção em linha */
        flex-wrap: nowrap !important; /* Garante que fiquem na mesma linha */
        gap: 1.5rem;
        max-width: 600px; /* Limita a largura dos botões para manter a elegância */
    }
    
    .hero-btns .btn {
        flex: 1; /* Faz com que ambos tenham o mesmo tamanho */
        text-align: center;
        padding: 1.2rem 1rem; /* Padding equilibrado */
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Sections General */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 0 auto;
}

/* Pillars CPC */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Portal Accordion Section (Replaces Portal Grid) */
.portal-section {
    background-color: var(--bg-dark);
    padding-bottom: 60px;
}

.cpc-accordion {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

.accordion-item {
    background: linear-gradient(145deg, #161616 0%, #0f0f0f 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.accordion-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.accordion-header {
    padding: 1.8rem 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.25rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.accordion-item.is-open {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.02);
}

.accordion-item.is-open .accordion-header h3 {
    color: var(--primary-gold);
}

.accordion-item.is-open .accordion-icon {
    transform: rotate(45deg); /* "+" se torna "x" ou rotaciona */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 2.2rem;
}

.accordion-item.is-open .accordion-content {
    max-height: 500px;
    transition: max-height 0.6s ease-in;
    padding-bottom: 2.2rem;
}

.accordion-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    transition-delay: 0.1s;
}

.accordion-item.is-open .accordion-content p {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .cpc-accordion {
        gap: 1.5rem;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .cpc-accordion {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0;
    }

    .accordion-header {
        padding: 1.5rem 1.8rem;
    }
    
    .accordion-header h3 {
        font-size: 1.3rem;
    }
    
    .accordion-content {
        padding: 0 1.8rem;
    }
    
    .accordion-item.active .accordion-content {
        padding-bottom: 1.8rem;
    }
    
    .accordion-content p {
        font-size: 1rem;
    }
}

/* Results Section Swiper */
.results-category {
    margin-bottom: 5rem;
}

.results-category:last-child {
    margin-bottom: 0;
}

.results-category-title {
    font-size: 1.25rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    text-align: center;
    opacity: 0.9;
}

/* Swiper Customizations for Premium Look */
.results-swiper {
    padding-bottom: 70px !important; /* Room for dots and bottom shadow */
    padding-top: 35px !important; /* Room for translateY and top shadow */
    padding-left: 30px !important; /* Side bleed for glow */
    padding-right: 30px !important; /* Side bleed for glow */
    margin: -35px -30px -40px -30px !important; /* Compensa os paddings para não deslocar o layout */
}

.results-swiper .swiper-slide {
    height: auto; /* Permite que o stretch funcione */
    display: flex;
}

.h-100 {
    height: 100%; /* Força o card a preencher o swiper-slide */
}

.results-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 1.5rem;
    position: relative;
    z-index: 10;
}

.results-swiper .swiper-pagination {
    position: static !important;
    width: auto !important;
    margin: 0 !important;
}

.swiper-button-next-custom {
    color: var(--primary-gold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    animation: gold-glow-soft 3s infinite ease-in-out;
    display: flex;
    align-items: center;
}

.swiper-button-next-custom:hover {
    transform: translateX(4px);
    filter: drop-shadow(0 0 8px rgba(var(--primary-gold-rgb), 0.6));
}

@keyframes gold-glow-soft {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(3px); filter: drop-shadow(0 0 5px rgba(var(--primary-gold-rgb), 0.4)); }
}

.results-swiper .swiper-pagination-bullet {
    background-color: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition);
}

.results-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-gold);
    opacity: 1;
    transform: scale(1.2);
}

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

.results-grid {
    grid-template-columns: repeat(3, 1fr);
}

.pillar-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

.pillar-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.pillar-letter {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 1.5rem;
    display: inline-block;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Orbital CPC Visual */
.cpc-orbital-section {
    background-color: var(--bg-dark);
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 80px;
}

.orbital-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.orbital-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 110px;
    text-transform: uppercase;
    text-align: center;
}

.orbital-main {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbital-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.05);
}

.orbital-ring::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: rgba(212, 175, 55, 0.6);
    animation: rotateRing 10s linear infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbital-center {
    position: relative;
    width: 180px;
    height: 180px;
    background: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), inset 0 0 20px rgba(212, 175, 55, 0.2);
    animation: pulseCenter 4s ease-in-out infinite;
}

@keyframes pulseCenter {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(212, 175, 55, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 0 50px rgba(212, 175, 55, 0.6); }
}

.center-content {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem; /* CPC size remains the same */
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.9;
}

.center-content span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--primary-gold);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.orbital-items-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.orbital-item {
    position: absolute;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    cursor: default;
}

/* Positioning items in a circle */
.item-psicologia { top: -60px; left: 50%; transform: translateX(-50%); }
.item-coaching { top: 70px; right: -70px; }
.item-mentoria { bottom: -10px; right: 20px; }
.item-consultoria { bottom: -10px; left: 20px; }
.item-terapia { top: 70px; left: -70px; }

.item-icon-box {
    width: 80px;
    height: 80px;
    background: #000;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.item-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.05em;
    width: 140px;
}

.orbital-item:hover .item-icon-box {
    transform: scale(1.2);
    background: var(--primary-gold);
    color: #000;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.orbital-item:hover .item-label {
    color: var(--primary-gold);
}

/* Responsive Orbital */
@media (max-width: 768px) {
    .orbital-main {
        width: 300px;
        height: 300px;
    }
    
    .orbital-center {
        width: 120px;
        height: 120px;
    }
    
    .center-content {
        font-size: 2.5rem;
    }
    
    .item-icon-box {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .item-label {
        font-size: 0.7rem;
        width: 100px;
    }
    
    .item-psicologia { top: -45px; }
    .item-coaching { top: 40px; right: -40px; }
    .item-mentoria { bottom: -20px; right: 10px; }
    .item-consultoria { bottom: -20px; left: 10px; }
    .item-terapia { top: 40px; left: -40px; }
    
    .orbital-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

/* Journey Steps Visual */
.journey-title-wrapper {
    text-align: center;
    margin-top: 12rem; /* Aumentado mais 50% conforme solicitado */
    margin-bottom: 0;
}

.journey-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.journey-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 10px; /* Reduzido de 60px para 10px */
    padding: 10px 0; /* Reduzido de 20px para 10px */
    position: relative;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Esconde barra de rolagem para Chrome, Safari e Opera */
.journey-container::-webkit-scrollbar {
    display: none;
}

.journey-steps-grid {
    display: flex;
    justify-content: center; /* Centraliza se couber */
    flex-wrap: nowrap;
    width: max-content; /* Garante que a grade cresça conforme o conteúdo */
    min-width: 100%;
    margin: 0 auto;
    gap: 1.5rem;
    padding: 20px 40px; /* Margem lateral para os círculos não encostarem na borda ao scrollar */
    position: relative;
    z-index: 2;
}

.journey-step {
    flex: 0 0 auto; /* Mantém o tamanho fixo sem encolher */
    display: flex;
    justify-content: center;
    position: relative;
    scroll-snap-align: center;
}

.step-circle {
    width: 155px;
    height: 155px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.hover-glow:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.5);
    transform: translateY(-8px);
}

.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.step-content span {
    font-size: 0.62rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    line-height: 1.2;
}

.step-circle:hover h3 {
    color: var(--primary-gold);
}

/* Mobile Adjustments for Journey */
@media (max-width: 1200px) {
    .journey-steps-grid { gap: 0.5rem; }
    .step-circle { width: 140px; height: 140px; }
}

@media (max-width: 1024px) {
    .step-circle { width: 130px; height: 130px; padding: 0.8rem; }
    .step-content h3 { font-size: 0.8rem; }
    .step-content span { font-size: 0.55rem; }
    .journey-container { 
        scroll-snap-type: x mandatory; /* Ativa parada suave */
    }
}

@media (max-width: 768px) {
    .journey-steps-grid {
        justify-content: flex-start; /* Alinha no início para o scroll funcionar corretamente */
        padding: 20px 40px; /* Margem extra lateral para o primeiro/último círculo não colarem */
    }
    .step-circle { width: 120px; height: 120px; }
    .step-content h3 { font-size: 0.75rem; }
    .step-content span { display: none; }
}

/* Journey Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 90%;
    max-width: 600px;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-container {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-gold);
}

.modal-content h4 {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.modal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.modal-content .divider {
    margin: 1.5rem 0;
}

.modal-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pillar-subtitle {
    color: var(--primary-gold);
    font-size: 0.95rem;
    font-weight: 500;
    margin: -0.5rem 0 1rem;
    line-height: 1.4;
    font-style: italic;
    opacity: 0.85;
}

.modal-footer {
    display: flex;
    justify-content: flex-start;
}

/* Problem Section */
.problem-section {
    background-color: #0f0f0f;
}

.problem-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-title {
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--white);
}

.desktop-br {
    display: block;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-items {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.problem-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.problem-item .number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.problem-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.problem-item p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Quote Banner */
.quote-banner {
    background: linear-gradient(to right, rgba(212,175,55,0.12), rgba(212,175,55,0.06));
    border-top: 1px solid rgba(212,175,55,0.3);
    border-bottom: 1px solid rgba(212,175,55,0.3);
    padding: 3rem 0;
}

.quote-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-gold);
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    border: none;
}

/* Applications */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.app-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--primary-gold);
    transition: var(--transition);
    height: 100%;
}

.app-card:hover {
    background: #1a1a1a;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    margin-top: 3rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 2rem;
}

.carousel-slide {
    flex: 0 0 calc((100% - (2 * 2rem)) / 3); /* 3 visíveis no desktop */
    min-width: 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-gold);
    color: #000;
}

/* Proposta de Valor */
.proposta-section {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(212,175,55,0.1);
}

.proposta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.proposta-header h4 {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.proposta-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.proposta-header p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.proposta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.proposta-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.proposta-item:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
}

.proposta-icon {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.proposta-item p {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/* About (Guzy) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-gold);
    z-index: -1;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
    justify-items: center;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

/* Botão "Plataforma Evolution" no rodapé */
.btn-platform {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.4rem;
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-platform i {
    font-size: 0.95rem;
    transition: transform 0.35s ease;
}

.btn-platform:hover {
    background: var(--primary-gold);
    color: #0a0a0a;
    border-color: var(--primary-gold);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25), 0 0 18px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-platform:hover i {
    transform: translateX(2px);
}

/* Links de contato com ícone destacado (WhatsApp, Instagram) */
.contact-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.7rem;
    transition: color 0.3s ease;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--primary-gold);
    font-size: 1rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-link:hover .contact-icon {
    background: var(--primary-gold);
    color: #0a0a0a;
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
    transform: translateY(-2px) scale(1.05);
}

.contact-link:hover {
    color: var(--primary-gold) !important;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.sub-footer {
    background-color: #000;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem; /* Texto mais junto da imagem */
    color: var(--text-muted);
    font-size: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-decoration: none;
    transition: var(--transition);
}

.sub-footer:hover {
    color: var(--white);
    background-color: #050505;
}

.sub-footer img {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
    transform: translateY(-2px); /* Sobe a imagem para alinhar com o centro do texto */
}

.sub-footer img:hover {
    opacity: 1;
}


/* Mentoria Formatos */
.mentoria-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

.mentoria-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.mentoria-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 3.5rem 2.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mentoria-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.mentoria-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.mentoria-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mentoria-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.mentoria-features {
    list-style: none;
    margin-top: auto;
}

.mentoria-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

/* Responsiveness - GROUPED AT THE END TO ENSURE OVERRIDE */
@media (max-width: 1024px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #000; /* Preto sólido solicitado */
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 2000;
        visibility: hidden;
        gap: 2rem; /* Espaço entre links e o botão */
    }

    .nav-menu.active {
        left: 0;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links a {
        color: var(--primary-gold) !important;
        font-size: 1.5rem;
        font-weight: 600;
        text-align: center;
    }

    .nav-cta {
        margin-top: 1rem;
    }

    .hero {
        background-image: linear-gradient(to right, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0) 66.6%), url('image/WEBP/banner-tablet.webp');
        background-position: center top;
        background-attachment: scroll;
    }
    .hero-content {
        max-width: 80%;
        text-align: left;
    }
    .hero h1 { font-size: 2.5rem; }

    .carousel-slide {
        flex: 0 0 calc((100% - 2rem) / 2);
    }

    .pillars-grid, .results-grid, .problem-grid, .about-grid, .proposta-grid, .mentoria-grid { grid-template-columns: 1fr; }
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu { 
        display: flex; 
    }
    .hero-btns { flex-direction: column; gap: 0.6rem; }
    .section-padding { padding: 60px 0; }

    .logo-evolution img { height: 35px; }
    .logo-evolution span { font-size: 1.1rem; }
    .hero-logo { font-size: 0.8rem; }
    .desktop-br { display: none; }
    
    .hero {
        background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.05), rgba(10, 10, 10, 0.95)), url('image/WEBP/banner-mobile.webp');
        background-attachment: scroll;
        align-items: flex-end; 
        padding-bottom: 2rem;
        background-position: center 5%;
        background-size: cover;
    }
    
    .hero-content {
        max-width: 95%;
        text-align: center;
        margin: 0 auto;
        padding-bottom: 0px;
    }

    .hero h1 { 
        font-size: 2.1rem !important;
        line-height: 1.1;
        margin-bottom: 1.2rem; 
        color: #fff;
        max-width: none;
        text-align: center;
    }

    .section-title h2 {
        font-size: 2.2rem; /* Aumentado conforme solicitado (tamanho original de impacto) */
        line-height: 1.1;
    }

    .mobile-br, .mobile-only {
        display: block; /* Força a quebra no mobile */
    }

    .hero p { 
        font-size: 0.95rem; 
        margin-bottom: 1.5rem; 
        max-width: 90%;
        line-height: 1.4;
    }

    .btn {
        padding: 0.8rem 1.6rem;
        font-size: 0.85rem;
    }

    .carousel-slide {
        flex: 0 0 100%;
    }
    .carousel-track {
        gap: 0;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--primary-gold);
    color: #000 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    z-index: 2000;
    transition: var(--transition);
    animation: gold-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #e5c05b;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

@keyframes gold-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 80px;
        right: 25px;
        font-size: 28px;
    }
}

/* Palestras Section */
.video-grid {
    width: 100%;
    margin: 0 auto;
}

.video-container {
    max-width: 400px;
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    border: 2px solid var(--primary-gold);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    position: relative;
}

.instagram-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-align: center;
    padding: 2rem;
}

.instagram-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.instagram-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
}

.instagram-placeholder span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Partners Section */
.partners-section {
    padding: 4rem 0;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.partners-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
    opacity: 0.5;
}

.partners-swiper {
    position: relative;
    width: 100%;
    padding: 10px 0;
    /* Fade nas laterais — logos somem suavemente nas bordas em vez de cortar.
       O mask faz a imagem real ficar transparente, preservando o fundo do site. */
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 8%,
        #000 92%,
        transparent 100%
    );
            mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 8%,
        #000 92%,
        transparent 100%
    );
}

/* Easing linear na rolagem do carrossel = movimento contínuo, sem aceleração */
.partners-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Em mobile, fade lateral mais sutil pra não comer demais o conteúdo */
@media (max-width: 600px) {
    .partners-swiper {
        -webkit-mask-image: linear-gradient(
            90deg,
            transparent 0,
            #000 5%,
            #000 95%,
            transparent 100%
        );
                mask-image: linear-gradient(
            90deg,
            transparent 0,
            #000 5%,
            #000 95%,
            transparent 100%
        );
    }
}

.partner-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    height: 120px;
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: grab;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.partner-card:active {
    cursor: grabbing;
}

.partner-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 16px rgba(212, 175, 55, 0.08);
    transform: translateY(-5px);
}

/* object-fit: contain mantém o conteúdo inteiro visível, sem cortar.
   width/height 100% fazem cada logo ocupar o mesmo "quadro" - ficam padronizadas. */
.partner-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.partner-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partners-section {
        padding: 4rem 0;
    }
    .partner-card {
        height: 100px;
        padding: 12px 14px;
    }
}

/* Orbital Mobile Refinement */
@media (max-width: 768px) {
    .cpc-orbital-section {
        padding-top: 0px;
        padding-bottom: 40px;
    }
    .orbital-title {
        font-size: 1.6rem;
        margin-bottom: 6rem;
        padding: 0 1.5rem;
    }
    .orbital-main {
        transform: scale(0.82);
        margin-bottom: -40px;
    }
}

/* =========================================
   SISTEMA DE CONSENTIMENTO DE COOKIES LGPD
   ========================================= */

/* Cookie Banner Flutuante */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 420px;
    max-width: calc(100% - 4rem);
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05);
    z-index: 9999;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner-content {
    padding: 1.8rem;
}

.cookie-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.cookie-banner-actions .btn {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    text-transform: none;
    font-size: 0.85rem;
    line-height: 1.2;
    box-sizing: border-box;
    white-space: normal;
}

.cookie-banner-actions .cookie-btn-primary {
    color: #000 !important;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.cookie-banner-actions-secondary {
    display: flex;
    gap: 0.6rem;
}

.cookie-banner-actions-secondary .btn {
    flex: 1;
    min-width: 0;
    font-size: 0.8rem;
    padding: 0.7rem 0.75rem;
}

.cookie-banner-links {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.75rem;
}

.cookie-banner-links a {
    color: var(--primary-gold);
    text-decoration: underline;
    opacity: 0.8;
}

.cookie-banner-links a:hover {
    opacity: 1;
}

.cookie-banner-links-sep {
    margin: 0 0.4rem;
    color: var(--text-muted);
}

/* Modal de Preferências de Cookies */
.cookie-preferences-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-pref-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.cookie-pref-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.cookie-pref-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-pref-info h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.4rem;
    font-family: 'Outfit', sans-serif;
}

.cookie-pref-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Toggle Switch Styling - Visually aligned with gold brand color */
.toggle-switch {
    position: relative;
    display: block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(22px);
    background-color: #000;
}

.toggle-switch input:disabled + .toggle-slider {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Tablet: centralizar na parte inferior */
@media (min-width: 769px) and (max-width: 1024px) {
    .cookie-banner {
        left: 50%;
        bottom: 1.5rem;
        width: 480px;
        max-width: calc(100% - 3rem);
        transform: translate(-50%, 30px);
    }

    .cookie-banner.show {
        transform: translate(-50%, 0);
    }
}

/* Mobile: centralizar na parte inferior, compacto */
@media (max-width: 768px) {
    .cookie-banner {
        left: 50%;
        bottom: 1rem;
        width: 95%;
        max-width: 400px;
        transform: translate(-50%, 30px);
    }

    .cookie-banner.show {
        transform: translate(-50%, 0);
    }

    .cookie-banner-content {
        padding: 1.4rem;
    }

    .cookie-banner-actions-secondary {
        flex-direction: column;
    }

    .cookie-pref-header {
        flex-direction: column;
    }

    .toggle-switch {
        align-self: flex-end;
        margin-top: -30px;
    }
}

/* =========================================
   PÁGINA DE POLÍTICA DE PRIVACIDADE
   ========================================= */
.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.legal-content h3 {
    color: var(--primary-gold); 
    font-size: 1.3rem; 
    margin-top: 2.5rem; 
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.legal-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.legal-content .legal-list {
    margin-bottom: 3rem;
    padding-left: 1.5rem;
}

.legal-content .legal-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--text-main);
    position: relative;
}

.legal-content .legal-list li::before {
    content: "•";
    color: var(--primary-gold);
    position: absolute;
    left: -1.2rem;
    font-size: 1.5rem;
    top: -4px;
}

.legal-content u {
    text-decoration-color: var(--primary-gold);
    text-underline-offset: 4px;
}
