/* 
  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; }
.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-content {
    max-width: 65%; /* Área útil aumentada para evitar quebra excessiva */
    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: 4.2rem; /* Ajustado para caber em 2 linhas com elegância */
    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 {
    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;
}

/* 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;
}

.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: 40px;
    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: 80px;
    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;
}

.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);
}

.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 {
    max-width: 500px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 125%; /* Ratio 4:5 for Instagram */
    height: 0;
    overflow: hidden;
    background: #0d0d0d;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.video-container blockquote {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.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-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-logo img {
    height: 42px;
    width: auto;
    filter: grayscale(1) brightness(1.4) contrast(0.8);
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo img:hover {
    filter: grayscale(0) brightness(1) contrast(1);
    opacity: 1;
    transform: scale(1.1) translateY(-5px);
}

@media (max-width: 768px) {
    .partners-section {
        padding: 4rem 0;
    }
    .partners-grid {
        gap: 2.5rem;
    }
    .partner-logo img {
        height: 32px;
    }
}

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