/* -------------------------------------------------------------
   CSS DESIGN SYSTEM - SUAMA FRAILE
   Style: Minimalist, Apple-inspired, Emotional, Luxury
   ------------------------------------------------------------- */

/* Custom properties / Design tokens */
:root {
    --bg-color: #FAF9F6;          /* Blanco roto */
    --primary-text: #1C1C1E;      /* Negro suave */
    --secondary-text: #5C5A54;    /* Gris piedra oscuro */
    --sage-green: #A8B8A5;        /* Verde salvia */
    --olive-green: #5F6B5A;       /* Verde oliva suave */
    --light-olive: #EAECE8;       /* Oliva muy claro para fondos de tarjetas */
    --stone-gray: #8E8C84;        /* Gris piedra */
    --border-color: rgba(28, 28, 30, 0.08);
    --border-color-hover: rgba(28, 28, 30, 0.18);
    --white: #FFFFFF;
    
    /* Font families */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Transitions */
    --transition-apple: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-color);
    color: var(--primary-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

li {
    list-style: none;
}

/* Typography Utility */
.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

/* Base Layout Containers */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

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

/* Section Spacing - Apple Style (Plenty of Whitespace) */
section {
    padding: 6rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 9rem 0;
    }
}

/* Global Section Header & Tags */
.section-tag {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--stone-gray);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.2rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--olive-green);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    border: 1px solid var(--olive-green);
    transition: var(--transition-fast);
    text-align: center;
    box-shadow: 0 4px 15px rgba(95, 107, 90, 0.15);
}

.btn-primary:hover {
    background-color: #4a5446;
    border-color: #4a5446;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(95, 107, 90, 0.25);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-text);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    border: 1px solid var(--primary-text);
    transition: var(--transition-fast);
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--primary-text);
    color: var(--bg-color);
    transform: translateY(-1px);
}

.btn-primary.full-width,
.btn-secondary.full-width {
    display: block;
    width: 100%;
}

/* -------------------------------------------------------------
   HEADER / NAVBAR
   ------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(250, 249, 246, 0.8);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-apple);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--primary-text);
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone-gray);
    margin-top: 0.2rem;
}

.nav-links {
    display: none;
}

.nav-cta {
    display: none;
}

/* Mobile Menu Button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.menu-toggle span {
    width: 100%;
    height: 1.5px;
    background-color: var(--primary-text);
    transition: var(--transition-fast);
}

.menu-toggle.active span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

/* Desktop Styles for Navbar */
@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2.2rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
        font-weight: 400;
        color: var(--secondary-text);
        letter-spacing: 0.02em;
        transition: var(--transition-fast);
        position: relative;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: var(--olive-green);
        transition: var(--transition-fast);
    }
    
    .nav-links a:hover {
        color: var(--primary-text);
    }
    
    .nav-links a:hover::after {
        width: 100%;
    }
    
    .nav-cta {
        display: inline-block;
        background-color: var(--primary-text);
        color: var(--bg-color);
        font-size: 0.8rem;
        font-weight: 500;
        padding: 0.6rem 1.2rem;
        border-radius: 30px;
        transition: var(--transition-fast);
    }
    
    .nav-cta:hover {
        background-color: var(--olive-green);
        transform: scale(1.02);
    }
    
    .menu-toggle {
        display: none;
    }
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 990;
    transform: translateY(-100%);
    transition: var(--transition-apple);
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.mobile-drawer.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.drawer-link {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    color: var(--primary-text);
    transition: var(--transition-fast);
}

.drawer-cta {
    margin-top: 1.5rem;
    font-family: var(--font-sans) !important;
    font-size: 1rem !important;
    background-color: var(--olive-green);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 40px;
}

/* Grid Utilities */
.grid-two-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .grid-two-cols {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

/* -------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------- */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
        align-items: center;
    }
    
    .hero-section {
        padding-top: 10rem;
        padding-bottom: 7rem;
    }
}

.hero-intro-title {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-intro-title .highlight {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary-text);
    font-style: italic;
    font-weight: 400;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .hero-intro-title {
        font-size: 1.4rem;
    }
    .hero-intro-title .highlight {
        font-size: 2rem;
    }
}

.hero-bullets {
    border-left: 1px solid var(--sage-green);
    padding-left: 1.5rem;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hero-bullets p {
    font-size: 0.95rem;
    color: var(--secondary-text);
}

.hero-bullets .highlight-sub {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-text);
    margin-top: 0.4rem;
}

.hero-main-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-main-title {
        font-size: 4rem;
    }
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--secondary-text);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

@media (min-width: 600px) {
    .hero-trust-badges {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
}

.hero-trust-badges span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    width: 16px;
    height: 16px;
    fill: var(--olive-green);
}

.hero-image-wrapper {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background-color: var(--light-olive);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-apple);
    filter: grayscale(15%) contrast(95%);
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(100%);
}

/* -------------------------------------------------------------
   SEGUNDA SECCIÓN: SÍNTOMAS
   ------------------------------------------------------------- */
.symptoms-section {
    background-color: var(--light-olive);
}

.symptoms-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .symptoms-title {
        font-size: 3.2rem;
    }
}

.symptoms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 4rem;
}

@media (min-width: 576px) {
    .symptoms-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .symptoms-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem;
    }
}

.symptom-card {
    background-color: var(--bg-color);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: var(--transition-apple);
}

.symptom-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.symptom-num {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--stone-gray);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1rem;
}

.symptom-card h3 {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--primary-text);
}

.symptoms-description {
    max-width: 700px;
    margin: 4rem auto 0 auto;
    font-size: 1.1rem;
    color: var(--secondary-text);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-paragraph {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary-text);
}

.serif-conclusion {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--olive-green);
    margin-top: 1rem;
}

/* -------------------------------------------------------------
   MI HISTORIA
   ------------------------------------------------------------- */
.history-section {
    background-color: var(--bg-color);
}

.history-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .history-title {
        font-size: 2.8rem;
    }
}

.history-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: var(--secondary-text);
}

.highlight-history {
    font-size: 1.15rem;
    color: var(--primary-text);
    font-weight: 500;
    border-left: 2px solid var(--sage-green);
    padding-left: 1.2rem;
    margin-top: 1rem;
}

/* YouTube Iframe Video Card Design */
.youtube-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
}

.youtube-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-cover-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-cover-overlay:hover .video-cover-thumb {
  transform: scale(1.03);
  opacity: 0.95;
}

.video-play-button-wrapper {
  position: absolute;
  z-index: 11;
  pointer-events: none;
}

.play-button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition-apple);
}

.play-button svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-text);
  margin-left: 4px;
}

.video-cover-overlay:hover .play-button {
  transform: scale(1.1);
  background-color: var(--sage-green);
}

.video-cover-overlay:hover .play-button svg {
  fill: var(--white);
}

/* Play button settings for small cards */
.small-play {
  width: 50px;
  height: 50px;
}

.small-play svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}

/* -------------------------------------------------------------
   QUIÉN SOY
   ------------------------------------------------------------- */
.about-section {
    background-color: var(--light-olive);
    border-top: 1px solid var(--border-color);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: var(--transition-apple);
}

.about-image-wrapper {
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4 / 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.02);
}

.about-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.15rem;
    color: var(--olive-green);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.05rem;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
}

.about-description p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

@media (min-width: 576px) {
    .about-details {
        grid-template-columns: 1fr 1fr;
    }
}

.about-details-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--stone-gray);
    margin-bottom: 1rem;
}

.about-details-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-details-col li {
    font-size: 0.95rem;
    color: var(--primary-text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.list-bullet {
    width: 6px;
    height: 6px;
    fill: var(--olive-green);
    flex-shrink: 0;
}

/* -------------------------------------------------------------
   APARICIONES EN MEDIOS
   ------------------------------------------------------------- */
.media-band {
    background-color: var(--bg-color);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.media-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .media-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.media-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stone-gray);
}

.media-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .media-logos {
        gap: 3.5rem;
    }
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--stone-gray);
    letter-spacing: -0.02em;
    opacity: 0.7;
    transition: var(--transition-fast);
    cursor: default;
}

.logo-text:hover {
    opacity: 1;
    color: var(--olive-green);
}

/* -------------------------------------------------------------
   LIBROS SECTION & TOOLS SECTION
   ------------------------------------------------------------- */
.books-section {
    background-color: var(--bg-color);
}

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

@media (min-width: 768px) {
    .books-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
}

.book-card {
    background-color: var(--bg-color);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-apple);
}

.book-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.book-cover-wrapper {
    background-color: var(--light-olive);
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.book-cover {
    height: 100%;
    object-fit: contain;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition-apple);
}

.book-card:hover .book-cover {
    transform: scale(1.04) rotate(1deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
}

.book-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
}

.book-info h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
}

.book-desc {
    font-size: 0.95rem;
    color: var(--secondary-text);
    flex-grow: 1;
    line-height: 1.5;
}

/* -------------------------------------------------------------
   TESTIMONIOS
   ------------------------------------------------------------- */
.testimonials-section {
    background-color: var(--light-olive);
}

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

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.testimonial-card {
    background-color: var(--bg-color);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-apple);
}

.testimonial-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.02);
}

.small-video {
    aspect-ratio: 16 / 9;
}

.small-play {
    width: 50px;
    height: 50px;
}

.small-play svg {
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

.testimonial-info {
    padding: 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--primary-text);
    font-style: italic;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--stone-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* -------------------------------------------------------------
   CÓMO ES UNA SESIÓN
   ------------------------------------------------------------- */
.process-section {
    background-color: var(--bg-color);
}

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

@media (min-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.process-card {
    background-color: var(--bg-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition-apple);
}

.process-card:hover {
    border-color: var(--border-color-hover);
    background-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
}

.process-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--sage-green);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--secondary-text);
    line-height: 1.5;
}

/* -------------------------------------------------------------
   EXPERIENCIAS (PRICING)
   ------------------------------------------------------------- */
.experiences-section {
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
    align-items: stretch;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1.05fr;
        gap: 2rem;
    }
}

.pricing-card {
    background-color: var(--bg-color);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-apple);
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.recommended {
    border: 2px solid var(--olive-green);
    background-color: var(--white);
    box-shadow: 0 15px 40px rgba(95, 107, 90, 0.07);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--olive-green);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(95, 107, 90, 0.2);
}

.pricing-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.pricing-meta {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pricing-meta .duration {
    font-size: 0.9rem;
    color: var(--stone-gray);
    text-transform: uppercase;
    font-weight: 500;
}

.pricing-meta .price {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--primary-text);
}

.pricing-summary {
    font-size: 0.95rem;
    color: var(--secondary-text);
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2.5rem;
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    font-size: 0.95rem;
    color: var(--primary-text);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.4;
}

.check-icon {
    width: 18px;
    height: 18px;
    fill: var(--olive-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-footer {
    width: 100%;
}

.pricing-investment {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary-text);
    text-align: center;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.pricing-features li.feature-highlight {
    background-color: rgba(95, 107, 90, 0.06); /* Very subtle olive tint background */
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px dashed rgba(95, 107, 90, 0.3);
}

.pricing-features li.feature-highlight .check-icon {
    fill: var(--olive-green);
}

.feature-subtext {
    font-size: 0.85rem;
    color: var(--secondary-text);
    display: block;
    margin-top: 0.2rem;
}

/* -------------------------------------------------------------
   TOOLS SHOWCASE (SECONDARY BOOK LIST)
   ------------------------------------------------------------- */
.tools-section {
    background-color: var(--light-olive);
}

.tools-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.tools-subtitle {
    font-size: 1.05rem;
    color: var(--secondary-text);
    margin-bottom: 3.5rem;
}

.tools-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

@media (min-width: 768px) {
    .tools-grid {
        flex-direction: row;
        gap: 4rem;
    }
}

.tool-book {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 250px;
}

.tool-book img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: var(--transition-apple);
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.tool-book:hover img {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* -------------------------------------------------------------
   FAQ (ACCORDION)
   ------------------------------------------------------------- */
.faq-section {
    background-color: var(--bg-color);
}

.faq-accordion {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    color: var(--primary-text);
    font-size: 1.15rem;
    font-weight: 400;
    transition: var(--transition-fast);
}

.faq-trigger:hover {
    color: var(--olive-green);
}

.faq-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Expanded state icon rotation */
.faq-trigger[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-content-inner {
    padding-bottom: 2rem;
    color: var(--secondary-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* -------------------------------------------------------------
   FINAL CTA SECTION
   ------------------------------------------------------------- */
.final-cta-section {
    background-color: var(--light-olive);
    padding: 8rem 0;
}

.final-cta-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%) contrast(98%);
    transition: var(--transition-apple);
}

.final-cta-image:hover .cta-img {
    transform: scale(1.02);
    filter: grayscale(0%) contrast(100%);
}

.final-cta-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.final-cta-title {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.35;
    color: var(--primary-text);
}

.final-cta-title .serif-italic {
    font-size: 2.2rem;
    color: var(--olive-green);
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 2.4rem;
    }
    .final-cta-title .serif-italic {
        font-size: 3rem;
    }
}

.cta-button-wrapper {
    margin-top: 1rem;
}

/* -------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------- */
.main-footer {
    background-color: var(--primary-text);
    color: var(--white);
    padding: 5rem 0 3rem 0;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    color: var(--stone-gray);
    max-width: 350px;
    line-height: 1.5;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-legal {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-legal p {
    color: var(--stone-gray);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--stone-gray);
    transition: var(--transition-fast);
}

.legal-links a:hover {
    color: var(--white);
}

/* -------------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
   ------------------------------------------------------------- */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade.active {
    opacity: 1;
}

/* Pricing card highlight animation when smooth scrolled to */
.pricing-card.highlighted {
    animation: premiumGlow 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes premiumGlow {
    0% {
        box-shadow: 0 0 0 rgba(168, 184, 165, 0);
        transform: translateY(0);
    }
    30% {
        box-shadow: 0 15px 35px rgba(168, 184, 165, 0.25);
        transform: translateY(-5px);
        border-color: var(--sage-green);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        transform: translateY(0);
    }
}

/* -------------------------------------------------------------
   MENTORÍA PREMIUM SECTION
   ------------------------------------------------------------- */
.mentorship-section {
    padding: 8rem 0;
    background-color: var(--bg-color); /* Blanco roto #FAF9F6 */
}

.mentorship-card {
    background-color: var(--white); /* Fondo blanco cálido */
    border: 1px solid rgba(200, 167, 90, 0.35); /* Borde dorado satinado muy fino */
    border-radius: 20px;
    padding: 5rem 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02); /* Sombra muy suave */
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mentorship-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #C8A75A; /* Dorado satinado */
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.mentorship-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-text);
    margin-bottom: 1.5rem;
}

.mentorship-title .serif-italic {
    font-style: italic;
}

.mentorship-intro-tagline {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--stone-gray);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.mentorship-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: left;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .mentorship-content-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
    }
}

.mentorship-text-col p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--secondary-text);
    margin-bottom: 1.2rem;
}

.mentorship-text-col p:last-child {
    margin-bottom: 0;
}

.mentorship-features-col h3 {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 1.5rem;
}

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

.mentorship-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.mentorship-features-list li .check-icon {
    width: 18px;
    height: 18px;
    fill: #C8A75A; /* Gold checkmark */
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.mentorship-features-list li span {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary-text);
}

.mentorship-features-list li span strong {
    color: var(--primary-text);
}

.mentorship-callout {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 3rem;
    margin-bottom: 3.5rem;
    text-align: left;
}

.mentorship-callout h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary-text);
    margin-bottom: 1.2rem;
    text-align: center;
}

.mentorship-callout p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-text);
    margin-bottom: 1rem;
}

.mentorship-callout p:last-child {
    margin-bottom: 0;
}

.mentorship-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive adjustments for mentorship card */
@media (max-width: 600px) {
    .mentorship-card {
        padding: 3rem 1.5rem;
    }
    
    .mentorship-title {
        font-size: 2.2rem;
    }
}
