/* -------------------------------------------------------------
   A Arte de Decidir e Dialogar - Estilos CSS Modernos
   ------------------------------------------------------------- */

/* Reset & Configurações Globais */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: #1f2937; /* Neutral 800 */
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tokens de Cores e Variáveis */
:root {
    --color-navy-dark: #0b131e;
    --color-navy: #132238;
    --color-navy-light: #203554;
    --color-burgundy: #991b1b;
    --color-burgundy-hover: #7f1d1d;
    --color-burgundy-light: #fee2e2;
    --color-cream: #FAF5F5;
    --color-cream-dark: #f0e6e6;
    --color-gold: #c2410c; /* Accent complementar sutil */
    --color-text-dark: #1f2937;
    --color-text-medium: #4b5563;
    --color-text-light: #f3f4f6;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 4px 6px -1px rgba(19, 34, 56, 0.05), 0 2px 4px -1px rgba(19, 34, 56, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(19, 34, 56, 0.08), 0 4px 6px -2px rgba(19, 34, 56, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(19, 34, 56, 0.1), 0 10px 10px -5px rgba(19, 34, 56, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(19, 34, 56, 0.15);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-out;
}

/* Container Responsivo */
.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.max-width-md {
    max-width: 800px;
}

/* Badges e Destaques */
.badge-accent {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: var(--color-burgundy-light);
    color: var(--color-burgundy);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.badge-outline {
    display: inline-block;
    padding: 0.35rem 1rem;
    border: 1px solid var(--color-navy);
    color: var(--color-navy);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.badge-outline-white {
    display: inline-block;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

/* Títulos das Seções */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.section-title.text-white {
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-medium);
}

.section-subtitle.text-light {
    color: rgba(255, 255, 255, 0.8);
}

/* Botões Modernos */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-burgundy);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--color-burgundy-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(153, 27, 27, 0.3);
}

.btn-navy {
    background-color: var(--color-navy);
    color: #ffffff;
}

.btn-navy:hover {
    background-color: var(--color-navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(19, 34, 56, 0.3);
}

.btn-light {
    background-color: #ffffff;
    color: var(--color-burgundy);
}

.btn-light:hover {
    background-color: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary-light {
    background-color: var(--color-burgundy-light);
    color: var(--color-burgundy);
}

.btn-primary-light:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(254, 226, 226, 0.2);
}

.btn-book {
    background-color: var(--color-navy);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

.btn-book:hover {
    background-color: var(--color-navy-dark);
    transform: translateY(-2px);
}

.btn-checkout {
    background-color: var(--color-burgundy);
    color: #ffffff;
    font-size: 1.15rem;
    padding: 1.1rem 3rem;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
}

.btn-checkout:hover {
    background-color: var(--color-burgundy-hover);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(153, 27, 27, 0.4);
}

.btn-nav {
    background-color: var(--color-burgundy);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-fast);
}

.btn-nav:hover {
    background-color: var(--color-burgundy-hover);
    transform: translateY(-1px);
}

/* Animação Pulse Glow para CTAs principais */
.animate-pulse {
    position: relative;
    z-index: 1;
}

.animate-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    z-index: -1;
    box-shadow: 0 0 0 0 rgba(153, 27, 27, 0.7);
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(153, 27, 27, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(153, 27, 27, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(153, 27, 27, 0);
    }
}

/* Layouts de Grid Comuns */
.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.align-center {
    align-items: center;
}

.align-stretch {
    align-items: stretch;
}

/* -------------------------------------------------------------
   Header Navigation Bar
   ------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(19, 34, 56, 0.08);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: -0.02em;
}

.logo-text .accent {
    color: var(--color-burgundy);
    font-style: italic;
}

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

.nav-link {
    text-decoration: none;
    color: var(--color-text-medium);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-burgundy);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-navy);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    padding: 5px;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-navy);
    transition: var(--transition-fast);
}

.nav-btn-mobile {
    display: none;
}

/* -------------------------------------------------------------
   Section 1: Hero
   ------------------------------------------------------------- */
.hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, var(--color-cream) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-burgundy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--color-text-medium);
    margin-bottom: 2.25rem;
    max-width: 580px;
}

.hero-description strong {
    color: var(--color-navy);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.img-hero {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: block;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.decor-circle {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background-color: var(--color-cream-dark);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.7;
}

/* -------------------------------------------------------------
   Section 2: O Desafio da Escuta
   ------------------------------------------------------------- */
.desafio-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.desafio-card {
    background-color: var(--color-navy);
    border-radius: var(--radius-xl);
    padding: 4.5rem;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.desafio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(153, 27, 27, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.desafio-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.desafio-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
}

.desafio-divider {
    width: 80px;
    height: 3px;
    background-color: var(--color-burgundy);
    margin: 0 auto 2rem auto;
    border-radius: 2px;
}

.desafio-text {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 780px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
    opacity: 0.9;
}

/* -------------------------------------------------------------
   Section 3: As pessoas querem ser ouvidas
   ------------------------------------------------------------- */
.pessoas-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.custom-quote {
    border-left: 4px solid var(--color-burgundy);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.custom-quote p {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-style: italic;
    color: var(--color-navy);
    line-height: 1.4;
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-burgundy);
    margin-bottom: 2rem;
}

.reasons-list {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reasons-list li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.reasons-list .number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-burgundy);
    background-color: var(--color-cream);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reason-body strong {
    font-size: 1.05rem;
    color: var(--color-navy);
    display: block;
    margin-bottom: 0.15rem;
}

.reason-body p {
    color: var(--color-text-medium);
    font-size: 0.95rem;
}

.pessoas-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-image-container {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.img-rounded {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.blur-glow {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background-color: var(--color-cream-dark);
    border-radius: var(--radius-xl);
    filter: blur(25px);
    z-index: 1;
    opacity: 0.6;
}

/* -------------------------------------------------------------
   Section 4: O Autoconhecimento do Líder
   ------------------------------------------------------------- */
.autoconhecimento-section {
    padding: 100px 0;
    background-color: var(--color-cream);
}

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

.card-beige {
    background-color: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(19, 34, 56, 0.05);
    transition: var(--transition-smooth);
    position: relative;
}

.card-beige:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(153, 27, 27, 0.1);
}

.card-beige.highlighted {
    background-color: var(--color-navy);
    color: #ffffff;
    box-shadow: var(--shadow-lg);
}

.card-beige.highlighted h3 {
    color: #ffffff;
}

.card-beige.highlighted .card-num {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.card-beige.highlighted p {
    color: var(--color-text-light);
    opacity: 0.9;
}

.card-num {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--color-burgundy);
    background-color: var(--color-cream);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-beige h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.card-beige p {
    font-size: 0.95rem;
    color: var(--color-text-medium);
}

.autoconhecimento-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.footer-note-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 2rem;
}

/* -------------------------------------------------------------
   Section 5: A Arte de Decidir e Dialogar
   ------------------------------------------------------------- */
.sobre-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.img-illustration {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: var(--radius-xl);
}

.sobre-content {
    position: relative;
}

.section-paragraph {
    font-size: 1.05rem;
    color: var(--color-text-medium);
    margin-bottom: 1.5rem;
}

.list-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.cards-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.solution-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background-color: var(--color-cream);
    border: 1px solid rgba(19, 34, 56, 0.03);
    transition: var(--transition-smooth);
}

.solution-card:hover {
    transform: translateY(-2px);
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    border-color: rgba(153, 27, 27, 0.1);
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.solution-text {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    font-weight: 600;
    line-height: 1.4;
}

/* -------------------------------------------------------------
   Section 6: O método que aproxima pessoas e cria espaços de confiança
   ------------------------------------------------------------- */
.metodo-section {
    padding: 100px 0;
    background-color: var(--color-navy);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.metodo-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(153, 27, 27, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.text-light {
    color: rgba(255, 255, 255, 0.8) !important;
}

.image-infinite-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.img-infinite {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-xl);
}

.circle-backdrop {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    z-index: 1;
}

/* -------------------------------------------------------------
   Section 7: O que você vai desenvolver
   ------------------------------------------------------------- */
.desenvolvimento-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.development-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dev-item {
    background-color: var(--color-cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(19, 34, 56, 0.03);
    transition: var(--transition-smooth);
}

.dev-item:hover {
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
    border-color: rgba(153, 27, 27, 0.1);
    transform: translateY(-3px);
}

.dev-item.full-width {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
}

.dev-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dev-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    color: #ffffff;
    background-color: var(--color-burgundy);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dev-header h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
}

.dev-item p {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    line-height: 1.5;
}

/* -------------------------------------------------------------
   Section 8: Como funciona a formação
   ------------------------------------------------------------- */
.como-funciona-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(19, 34, 56, 0.05);
}

.funciona-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(19, 34, 56, 0.03);
}

.feature-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.feature-info h4 {
    font-size: 1.1rem;
    color: var(--color-navy);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-info p {
    font-size: 0.95rem;
    color: var(--color-text-medium);
}

.funciona-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.book-card {
    background-color: var(--color-cream);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(19, 34, 56, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 420px;
    transition: var(--transition-smooth);
}

.book-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.book-visual {
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 15px 25px rgba(19, 34, 56, 0.15));
}

.img-book {
    width: 100%;
    max-width: 160px;
    height: auto;
    display: block;
}

.book-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-burgundy);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.book-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.book-desc {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* -------------------------------------------------------------
   Section 9: As tutoras da formação
   ------------------------------------------------------------- */
.tutoras-section {
    padding: 100px 0;
    background-color: var(--color-navy);
    color: #ffffff;
}

.tutoras-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.tutoras-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
}

.inline-check {
    width: 16px;
    height: 16px;
}

.tutors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.tutor-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.tutor-image-area {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.img-tutor {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition-smooth);
}

.tutor-card:hover .img-tutor {
    transform: scale(1.04);
}

.tutor-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(11, 19, 30, 0.9) 0%, rgba(11, 19, 30, 0) 100%);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.4;
}

.tutor-info {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tutor-info h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.tutor-divider {
    width: 40px;
    height: 2px;
    background-color: var(--color-burgundy);
    margin-bottom: 1.5rem;
}

.tutor-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tutor-bullets li {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 1.25rem;
}

.tutor-bullets li::before {
    content: '•';
    color: var(--color-burgundy);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

/* -------------------------------------------------------------
   Section 10: Vagas Limitadas
   ------------------------------------------------------------- */
.vagas-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.vagas-container {
    background-color: var(--color-cream);
    border-radius: var(--radius-xl);
    padding: 4rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(19, 34, 56, 0.05);
    text-align: center;
}

.vagas-alert {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--color-burgundy-light);
    color: var(--color-burgundy);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.vagas-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.vagas-desc {
    font-size: 1.05rem;
    color: var(--color-text-medium);
    max-width: 750px;
    margin: 0 auto 3rem auto;
}

.vagas-checklist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.check-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(19, 34, 56, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.check-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.check-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.check-item span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.3;
}

/* -------------------------------------------------------------
   Section 11 & 12: Investimento & Frase Final
   ------------------------------------------------------------- */
.investimento-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-cream) 100%);
}

.price-box {
    background-color: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(19, 34, 56, 0.08);
    padding: 4.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.price-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 4px;
    background-color: var(--color-burgundy);
    border-radius: 0 0 4px 4px;
}

.price-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: var(--color-cream);
    color: var(--color-navy);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.price-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.price-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-burgundy);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.price-details {
    font-size: 1.05rem;
    color: var(--color-text-medium);
    font-weight: 600;
    margin-bottom: 3rem;
}

.price-divider {
    height: 1px;
    background-color: rgba(19, 34, 56, 0.08);
    margin: 3rem 0;
}

.conclusao-text {
    text-align: left;
    margin-bottom: 3.5rem;
}

.conclusao-text h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-navy);
    margin-bottom: 1.25rem;
    text-align: center;
}

.conclusao-text p {
    font-size: 1.05rem;
    color: var(--color-text-medium);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.conclusao-text p strong {
    color: var(--color-navy);
}

.trust-badge {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-medium);
    font-weight: 600;
}

/* -------------------------------------------------------------
   Section 13: Perguntas Frequentes (FAQ)
   ------------------------------------------------------------- */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(19, 34, 56, 0.05);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    border: 1px solid rgba(19, 34, 56, 0.08);
    border-radius: var(--radius-md);
    background-color: #ffffff;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(153, 27, 27, 0.2);
    box-shadow: var(--shadow-sm);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: var(--transition-fast);
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    padding-right: 1.5rem;
}

.faq-icon-indicator {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon-indicator::before,
.faq-icon-indicator::after {
    content: '';
    position: absolute;
    background-color: var(--color-navy);
    transition: var(--transition-smooth);
}

/* Horizontal line */
.faq-icon-indicator::before {
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
}

/* Vertical line */
.faq-icon-indicator::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 100%;
}

.faq-trigger[aria-expanded="true"] .faq-icon-indicator::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-trigger[aria-expanded="true"] .faq-icon-indicator::before {
    transform: rotate(180deg);
    background-color: var(--color-burgundy);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
    padding: 0 2rem 1.75rem 2rem;
    border-top: 1px solid transparent;
}

.faq-content-inner p {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

/* -------------------------------------------------------------
   Main Footer
   ------------------------------------------------------------- */
.main-footer {
    background-color: var(--color-navy-dark);
    color: #ffffff;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 50px;
}

.logo-footer {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.logo-footer .accent {
    color: var(--color-burgundy);
    font-style: italic;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-links h4,
.footer-cta h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-footer {
    background-color: var(--color-burgundy);
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
}

.btn-footer:hover {
    background-color: var(--color-burgundy-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* -------------------------------------------------------------
   Responsividade & Media Queries
   ------------------------------------------------------------- */

/* Tablet & Telas Menores (Até 1024px) */
@media (max-width: 1024px) {
    .grid-split {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .tutor-image-area {
        height: 340px;
    }
    
    .vagas-checklist {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-cta {
        grid-column: span 2;
    }
}

/* Mobile & Smartphones (Até 768px) */
@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .nav-container {
        padding: 0 1.25rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Menu Mobile Overlay */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--color-navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 3rem 1.5rem;
        z-index: 999;
        transform: translateY(-150%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        opacity: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-link {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.25rem;
    }
    
    .nav-link:hover {
        color: #ffffff;
    }
    
    .nav-btn-mobile {
        display: inline-flex;
        background-color: var(--color-burgundy);
        color: #ffffff;
        padding: 0.85rem 2rem;
        border-radius: var(--radius-md);
        font-weight: 700;
        text-decoration: none;
        margin-top: 1rem;
        width: 100%;
        max-width: 250px;
        text-align: center;
        justify-content: center;
    }
    
    .btn-nav {
        display: none;
    }
    
    /* Hamburger Active State */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Hero */
    .hero-section {
        padding-top: 130px;
        padding-bottom: 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }
    
    .hero-visual {
        justify-content: center;
        order: -1;
    }
    
    .image-wrapper {
        max-width: 320px;
    }
    
    /* Desafio */
    .desafio-card {
        padding: 2.5rem 1.5rem;
    }
    
    .desafio-title {
        font-size: 1.65rem;
    }
    
    .desafio-text {
        font-size: 1rem;
    }
    
    /* Grid Splits */
    .grid-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    
    /* Pessoas */
    .pessoas-content {
        order: 2;
    }
    
    .pessoas-visual {
        margin-bottom: 1rem;
    }
    
    .custom-quote p {
        font-size: 1.2rem;
    }
    
    /* Autoconhecimento */
    .cards-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-beige {
        padding: 2rem;
    }
    
    /* Sobre */
    .sobre-visual {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .cards-grid-2 {
        grid-template-columns: 1fr;
    }
    
    /* Metodo */
    .metodo-visual {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    /* Desenvolvimento */
    .development-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dev-item {
        padding: 2rem;
    }
    
    .dev-item.full-width {
        grid-column: span 1;
    }
    
    /* Como Funciona */
    .funciona-right {
        justify-content: center;
    }
    
    .book-card {
        padding: 2rem 1.5rem;
    }
    
    /* Tutoras */
    .tutoras-tags {
        gap: 0.5rem;
    }
    
    .tutoras-tags span {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .tutor-image-area {
        height: 280px;
    }
    
    .tutor-info {
        padding: 2rem 1.5rem;
    }
    
    .tutor-info h3 {
        font-size: 1.45rem;
    }
    
    /* Vagas */
    .vagas-container {
        padding: 2.5rem 1.5rem;
    }
    
    .vagas-title {
        font-size: 1.75rem;
    }
    
    .vagas-checklist {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .check-item {
        padding: 1.25rem;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    
    /* Investimento */
    .price-box {
        padding: 2.5rem 1.5rem;
    }
    
    .price-title {
        font-size: 1.75rem;
    }
    
    .price-value {
        font-size: 2.75rem;
    }
    
    .conclusao-text h3 {
        font-size: 1.45rem;
    }
    
    /* FAQ */
    .faq-trigger {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
    
    .faq-content-inner {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-cta {
        grid-column: span 1;
    }
}

/* -------------------------------------------------------------
   Syllabus / Cronograma Section (CRO Improvements)
   ------------------------------------------------------------- */
.cronograma-section {
    padding: 100px 0;
    background-color: var(--color-cream);
    border-top: 1px solid rgba(19, 34, 56, 0.05);
    border-bottom: 1px solid rgba(19, 34, 56, 0.05);
}

.cronograma-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0 auto;
}

.crono-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(19, 34, 56, 0.03);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.crono-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(153, 27, 27, 0.15);
}

.crono-badge {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    background-color: var(--color-burgundy-light);
    color: var(--color-burgundy);
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.crono-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.crono-card p {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .cronograma-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Shipping badge inside book card */
.badge-shipping {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: rgba(37, 211, 102, 0.1);
    color: #20ba59;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 1rem;
}

/* -------------------------------------------------------------
   Garantia & CTA Group (Investimento)
   ------------------------------------------------------------- */
.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    max-width: 500px;
    margin: 2rem auto;
}

.cta-or-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: var(--color-text-medium);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.cta-or-divider::before,
.cta-or-divider::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: rgba(19, 34, 56, 0.1);
}

.cta-or-divider span {
    padding: 0 1rem;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    width: 100%;
    font-size: 1rem;
    padding: 0.95rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.garantia-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background-color: var(--color-cream);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(153, 27, 27, 0.08);
    margin-top: 3.5rem;
    text-align: left;
}

.garantia-seal {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.garantia-content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.garantia-content p {
    font-size: 0.85rem;
    color: var(--color-text-medium);
    line-height: 1.5;
}

@media (max-width: 600px) {
    .garantia-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }
}

/* -------------------------------------------------------------
   Floating WhatsApp Support Button
   ------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    text-decoration: none;
    z-index: 999;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45);
    background-color: #20ba59;
}

.float-wa-icon {
    font-size: 1.25rem;
}

.float-wa-text {
    display: inline-block;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 0.75rem 1rem;
    }
    .float-wa-text {
        display: none; /* Only show icon on mobile */
    }
}

