/*
Theme Name: Relajaterapia Holística
Theme URI: https://relajaterapia.com
Author: Relajaterapia Holística
Author URI: https://relajaterapia.com
Description: Tema premium para Relajaterapia Holística. Wellness, medicina integrativa y bienestar personal. Diseño elegante, moderno y optimizado para conversión.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: relajaterapia
Tags: wellness, holistic, therapy, responsive, custom-menu, featured-images, custom-logo, full-width-template, blog, e-commerce

/* =============================================================================
   VARIABLES CSS - Paleta de colores y tipografía base
   ============================================================================= */
:root {
    /* Paleta principal */
    --color-sage: #588983;
    --color-sage-dark: #3d6b66;
    --color-sage-light: #7aaba5;
    --color-gold: #BFAB8B;
    --color-gold-dark: #a8916e;
    --color-gold-light: #d4c5a9;
    --color-ivory: #F8F6F2;
    --color-white: #FFFFFF;
    --color-gray-warm: #6D6D6D;
    --color-gray-light: #f0ede8;
    --color-gray-medium: #c8c3bc;
    --color-dark: #2c2c2c;
    --color-text: #3a3a3a;
    --color-text-light: #7a7a7a;

    /* Tipografía */
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Open Sans', sans-serif;
    --font-accent: 'Raleway', sans-serif;

    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;

    /* Sombras */
    --shadow-soft: 0 4px 20px rgba(88, 137, 131, 0.08);
    --shadow-medium: 0 8px 40px rgba(88, 137, 131, 0.15);
    --shadow-strong: 0 16px 60px rgba(88, 137, 131, 0.2);
    --shadow-card: 0 2px 20px rgba(0,0,0,0.06);
    --shadow-card-hover: 0 10px 40px rgba(88, 137, 131, 0.18);

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =============================================================================
   RESET Y BASE
   ============================================================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-sage-dark);
}

ul, ol {
    list-style: none;
}

/* =============================================================================
   TIPOGRAFÍA
   ============================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--color-gray-warm);
}

p:last-child { margin-bottom: 0; }

/* =============================================================================
   CONTENEDORES
   ============================================================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =============================================================================
   BOTONES
   ============================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-sage);
    color: var(--color-white);
    border-color: var(--color-sage);
}

.btn-primary:hover {
    background-color: var(--color-sage-dark);
    border-color: var(--color-sage-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 137, 131, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-sage);
    border-color: var(--color-sage);
}

.btn-outline:hover {
    background-color: var(--color-sage);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 137, 131, 0.25);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.btn-gold:hover {
    background-color: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191, 171, 139, 0.4);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-sage);
    border-color: var(--color-white);
}

.btn-white:hover {
    background-color: var(--color-ivory);
    color: var(--color-sage-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #1ebe5c;
    border-color: #1ebe5c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 0.95rem;
}

.btn-sm {
    padding: 0.65rem 1.4rem;
    font-size: 0.8rem;
}

/* =============================================================================
   HEADER Y NAVEGACIÓN
   ============================================================================= */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-base);
    padding: 1.2rem 0;
}

#site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
    padding: 0.8rem 0;
}

#site-header.header-transparent {
    background-color: transparent;
}

#site-header.header-transparent .nav-links a,
#site-header.header-transparent .site-title a {
    color: rgba(255,255,255,0.92);
}

#site-header.header-transparent .nav-links a:hover {
    color: var(--color-gold-light);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.site-logo img {
    height: 52px;
    width: auto;
    transition: all var(--transition-base);
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-title a {
    color: var(--color-dark);
    text-decoration: none;
}

.scrolled .site-title a {
    color: var(--color-dark);
}

/* Navegación principal */
#primary-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    padding: 0.5rem 0.9rem;
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-dark);
    transition: color var(--transition-base);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-sage);
    transition: width var(--transition-base);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links .current-menu-item a::after {
    width: 70%;
}

.scrolled .nav-links a {
    color: var(--color-dark);
}

/* CTA en navegación */
.nav-cta .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.8rem;
}

/* Hamburguesa móvil */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(88, 137, 131, 0.75) 0%,
        rgba(44, 44, 44, 0.55) 50%,
        rgba(191, 171, 139, 0.5) 100%
    ),
    url('assets/images/hero-bg.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(88,137,131,0.2) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 0 4rem;
    text-align: left;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-gold-light);
    animation: pulse-dot 2s infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.12;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.9s ease 0.1s both;
}

.hero-title span {
    color: var(--color-gold-light);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.88);
    max-width: 620px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    animation: fadeInUp 0.9s ease 0.4s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    font-weight: 500;
}

.trust-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollDown 2s ease infinite;
}

/* =============================================================================
   SECCIONES GENERALES
   ============================================================================= */
.section {
    padding: var(--spacing-xl) 0;
}

.section-sm {
    padding: var(--spacing-lg) 0;
}

.section-lg {
    padding: var(--spacing-xxl) 0;
}

.section-ivory {
    background-color: var(--color-ivory);
}

.section-sage {
    background-color: var(--color-sage);
    color: white;
}

.section-dark {
    background-color: var(--color-dark);
    color: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-sage);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 1.5rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--color-gold);
}

.section-eyebrow::before { right: 100%; transform: translateX(50%); }
.section-eyebrow::after { left: 100%; transform: translateX(-50%); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--color-dark);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.section-title span {
    color: var(--color-sage);
    font-style: italic;
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-gray-warm);
    line-height: 1.8;
}

/* Divider decorativo */
.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem auto 0;
    width: fit-content;
}

.divider-line {
    width: 60px;
    height: 1px;
    background-color: var(--color-gold);
}

.divider-icon {
    color: var(--color-gold);
    font-size: 0.8rem;
}

/* =============================================================================
   SECCIÓN MENSAJE EMOCIONAL
   ============================================================================= */
.message-section {
    background: linear-gradient(135deg, var(--color-ivory) 0%, #eee9e2 100%);
    position: relative;
    overflow: hidden;
}

.message-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88,137,131,0.07) 0%, transparent 70%);
    pointer-events: none;
}

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

.message-content {
    order: 1;
}

.message-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--color-sage-dark);
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.message-quote::before {
    content: '"';
    position: absolute;
    left: -0.2rem;
    top: -0.5rem;
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.3;
    font-family: var(--font-heading);
    line-height: 1;
}

.message-text {
    font-size: 1.05rem;
    color: var(--color-gray-warm);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.message-visual {
    order: 2;
    position: relative;
}

.message-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    aspect-ratio: 4/5;
}

.message-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.message-image-wrap:hover img {
    transform: scale(1.03);
}

.message-decorative {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    background: var(--color-gold);
    opacity: 0.15;
    z-index: -1;
}

/* Elementos ilustrativos */
.elements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.element-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.element-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--color-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.element-text h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.2rem;
}

.element-text p {
    font-size: 0.82rem;
    color: var(--color-gray-warm);
    margin: 0;
    line-height: 1.5;
}

/* =============================================================================
   SECCIÓN DE SERVICIOS
   ============================================================================= */
.services-section {
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 1rem;
}

.service-card {
    background: var(--color-white);
    border: 1px solid rgba(191, 171, 139, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-sage), var(--color-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(88, 137, 131, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
    color: white;
    border-color: transparent;
}

.service-card.featured .service-title,
.service-card.featured .service-meta span,
.service-card.featured .service-price,
.service-card.featured p {
    color: rgba(255,255,255,0.9);
}

.service-card.featured .service-title {
    color: white;
}

.service-card.featured .service-badge-meta {
    color: var(--color-gold-light);
}

.service-card.combo {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: white;
}

.service-badge {
    display: inline-block;
    background: rgba(88, 137, 131, 0.1);
    color: var(--color-sage);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    align-self: flex-start;
}

.service-card.featured .service-badge {
    background: rgba(255,255,255,0.2);
    color: white;
}

.service-card.combo .service-badge {
    background: rgba(191, 171, 139, 0.25);
    color: var(--color-gold-light);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(88, 137, 131, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--color-sage);
    color: white;
}

.service-card.featured .service-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.service-description {
    font-size: 0.92rem;
    color: var(--color-gray-warm);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-card.featured .service-description {
    color: rgba(255,255,255,0.8);
}

.service-card.combo .service-description {
    color: rgba(255,255,255,0.75);
}

.service-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(191,171,139,0.2);
}

.service-card.featured .service-meta {
    border-top-color: rgba(255,255,255,0.2);
}

.service-card.combo .service-meta {
    border-top-color: rgba(255,255,255,0.15);
}

.service-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.service-meta-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    font-weight: 700;
}

.service-meta-value {
    font-size: 0.88rem;
    color: var(--color-text);
    font-weight: 500;
}

.service-card.featured .service-meta-value {
    color: rgba(255,255,255,0.9);
}
.service-card.combo .service-meta-value {
    color: rgba(255,255,255,0.85);
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-sage);
    margin-bottom: 1.2rem;
}

.service-card.featured .service-price {
    color: var(--color-gold-light);
}

.service-card.combo .service-price {
    color: var(--color-gold-light);
}

.service-price sup {
    font-size: 0.9rem;
    vertical-align: top;
    margin-top: 0.3rem;
}

/* =============================================================================
   SECCIÓN ENFOQUE / HERRAMIENTAS
   ============================================================================= */
.approach-section {
    background-color: var(--color-ivory);
}

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

.tool-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(88, 137, 131, 0.15);
}

.tool-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-sage-light), var(--color-sage));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: white;
    transition: all var(--transition-base);
}

.tool-card:hover .tool-icon-wrap {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    transform: scale(1.1);
}

.tool-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.4rem;
}

.tool-desc {
    font-size: 0.85rem;
    color: var(--color-gray-warm);
    line-height: 1.6;
    margin: 0;
}

.approach-text-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--color-sage);
}

/* =============================================================================
   SECCIÓN LIMPIEZA HEPÁTICA (DESTACADA)
   ============================================================================= */
.hepatic-section {
    background: linear-gradient(135deg, #1a2e2c 0%, #0d1f1d 60%, #243028 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hepatic-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/hepatic-bg.jpg') center/cover;
    opacity: 0.08;
}

.hepatic-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(191, 171, 139, 0.12);
    animation: floatParticle 15s infinite linear;
}

.hepatic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hepatic-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(191, 171, 139, 0.15);
    border: 1px solid rgba(191, 171, 139, 0.3);
    border-radius: var(--radius-full);
    padding: 0.4rem 1.2rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 1.5rem;
}

.hepatic-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: white;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hepatic-title span {
    color: var(--color-gold-light);
    font-style: italic;
}

.hepatic-desc {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hepatic-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hepatic-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.hepatic-feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(191, 171, 139, 0.2);
    border: 1px solid rgba(191, 171, 139, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-light);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.hepatic-visual {
    position: relative;
}

.hepatic-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    text-align: center;
}

.hepatic-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.hepatic-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.8rem;
}

.hepatic-card-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.includes-list {
    text-align: left;
    margin-bottom: 2rem;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.includes-list li:last-child {
    border-bottom: none;
}

.includes-icon {
    color: var(--color-gold-light);
    width: 18px;
    flex-shrink: 0;
}

/* =============================================================================
   SECCIÓN LIBRO
   ============================================================================= */
.book-section {
    background-color: var(--color-ivory);
}

.book-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5rem;
    align-items: center;
}

.book-cover-wrap {
    width: 240px;
    flex-shrink: 0;
}

.book-cover {
    border-radius: var(--radius-md);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.2), -5px -5px 30px rgba(255,255,255,0.8);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    aspect-ratio: 2/3;
    width: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover-placeholder {
    width: 240px;
    aspect-ratio: 2/3;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, var(--color-sage-dark) 0%, var(--color-sage) 50%, var(--color-sage-light) 100%);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.25), -5px -5px 30px rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    transition: transform var(--transition-base);
    cursor: pointer;
}

.book-cover-placeholder:hover {
    transform: rotate(2deg) translateY(-5px);
}

.book-cover-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: white;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.book-cover-subtitle {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

.book-eyebrow {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.book-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background-color: var(--color-gold);
}

.book-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.book-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-sage);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.book-description {
    font-size: 1rem;
    color: var(--color-gray-warm);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.book-details {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(191,171,139,0.25);
    border-bottom: 1px solid rgba(191,171,139,0.25);
}

.book-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.book-detail-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    font-weight: 700;
}

.book-detail-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
}

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

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    background: var(--color-ivory);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    min-width: calc(33.333% - 1.2rem);
    margin: 0 0.6rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    border: 1px solid rgba(191,171,139,0.15);
    position: relative;
}

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

.testimonial-quote-icon {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.25;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.8rem;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
    color: var(--color-gold);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-gray-warm);
    line-height: 1.8;
    margin-bottom: 1.8rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-sage-light), var(--color-sage));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark);
    margin-bottom: 0.1rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--color-sage);
    font-weight: 500;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-sage);
    background: white;
    color: var(--color-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 1rem;
}

.slider-btn:hover {
    background: var(--color-sage);
    color: white;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gray-medium);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
}

.slider-dot.active {
    background: var(--color-sage);
    width: 24px;
    border-radius: 4px;
}

/* =============================================================================
   RECURSOS / BLOG
   ============================================================================= */
.resources-section {
    background-color: var(--color-ivory);
}

.categories-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cat-btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 2px solid rgba(88,137,131,0.25);
    color: var(--color-gray-warm);
    cursor: pointer;
    transition: all var(--transition-base);
    background: white;
}

.cat-btn:hover,
.cat-btn.active {
    background: var(--color-sage);
    border-color: var(--color-sage);
    color: white;
}

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

.resource-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    border: 1px solid rgba(191,171,139,0.1);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.resource-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-sage-light), var(--color-sage));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 2.5rem;
}

.resource-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.resource-card-body {
    padding: 1.8rem;
}

.resource-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-sage);
    margin-bottom: 0.6rem;
}

.resource-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-dark);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.resource-excerpt {
    font-size: 0.88rem;
    color: var(--color-gray-warm);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-sage);
    transition: gap var(--transition-base);
}

.resource-link:hover {
    gap: 0.8rem;
    color: var(--color-sage-dark);
}

/* Placeholder "próximamente" */
.coming-soon-overlay {
    background: linear-gradient(135deg, rgba(88,137,131,0.95), rgba(44,44,44,0.85));
    position: relative;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
}

/* =============================================================================
   NUESTRA HISTORIA
   ============================================================================= */
.history-section {
    background: var(--color-white);
}

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

.history-visual {
    position: relative;
}

.history-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    aspect-ratio: 4/5;
}

.history-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, var(--color-ivory) 0%, #e8e4dc 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.history-symbol {
    font-size: 5rem;
    opacity: 0.4;
}

.history-symbol-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-sage);
    text-align: center;
    font-style: italic;
}

.history-accent-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--color-sage);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-medium);
    min-width: 150px;
}

.history-accent-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-gold-light);
}

.history-accent-label {
    font-size: 0.8rem;
    opacity: 0.85;
    line-height: 1.4;
    margin-top: 0.3rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2.5rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-sage), var(--color-gold), var(--color-sage-light));
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.2rem 0;
    position: relative;
}

.timeline-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--color-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-sage);
    font-size: 0.9rem;
    box-shadow: 0 0 0 4px rgba(88,137,131,0.1);
    z-index: 1;
}

.timeline-content {
    padding-top: 0.5rem;
}

.timeline-year {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.timeline-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 0.3rem;
}

.timeline-text {
    font-size: 0.88rem;
    color: var(--color-gray-warm);
    line-height: 1.7;
    margin: 0;
}

/* =============================================================================
   CONTACTO
   ============================================================================= */
.contact-section {
    background-color: var(--color-ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(191,171,139,0.15);
    transition: all var(--transition-base);
}

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

.contact-country-flag {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-country {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.contact-phone {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-sage);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.social-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(191,171,139,0.2);
}

.social-title {
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray-warm);
    margin-bottom: 1.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(88,137,131,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-sage);
    font-size: 1.1rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-card);
}

.social-link:hover {
    background: var(--color-sage);
    border-color: var(--color-sage);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* =============================================================================
   BOTONES FLOTANTES WHATSAPP
   ============================================================================= */
.whatsapp-float-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
}

.whatsapp-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    text-decoration: none;
}

.whatsapp-main-btn:hover {
    transform: scale(1.1);
    background-color: #1ebe5c;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2.5s ease-out infinite;
}

.whatsapp-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.whatsapp-options.open {
    max-height: 200px;
    opacity: 1;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    border-radius: var(--radius-full);
    padding: 0.6rem 1.2rem 0.6rem 0.6rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    text-decoration: none;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.whatsapp-option:hover {
    transform: translateX(-4px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.whatsapp-option-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.whatsapp-option-text {
    display: flex;
    flex-direction: column;
}

.whatsapp-option-country {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-dark);
}

.whatsapp-option-number {
    font-size: 0.7rem;
    color: var(--color-gray-warm);
}

/* =============================================================================
   FOOTER
   ============================================================================= */
#site-footer {
    background-color: #1a1a1a;
    color: rgba(255,255,255,0.75);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 1.2rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.85);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-sage);
    border-color: var(--color-sage);
    color: white;
}

.footer-col-title {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.2rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.6rem;
}

.footer-nav a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-nav a:hover {
    color: var(--color-gold-light);
}

.footer-nav a::before {
    content: '—';
    font-size: 0.7rem;
    color: var(--color-gold);
    opacity: 0.5;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    color: var(--color-sage-light);
    font-size: 0.9rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.footer-contact-text strong {
    display: block;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.2rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

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

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.7);
}

/* =============================================================================
   LANDING LIMPIEZA HEPÁTICA
   ============================================================================= */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.landing-hero {
    min-height: 90vh;
    background: linear-gradient(
        150deg,
        rgba(88, 137, 131, 0.88) 0%,
        rgba(26, 46, 44, 0.92) 100%
    ),
    url('assets/images/hepatic-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    color: white;
    text-align: center;
}

.landing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.landing-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.landing-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.benefits-section {
    background: var(--color-ivory);
    padding: var(--spacing-lg) 0;
}

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

.benefit-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

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

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-text {
    font-size: 0.88rem;
    color: var(--color-gray-warm);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.includes-section {
    background: white;
    padding: var(--spacing-lg) 0;
}

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

.include-card {
    background: var(--color-ivory);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(191,171,139,0.2);
    transition: all var(--transition-base);
}

.include-card:hover {
    border-color: var(--color-sage);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.include-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
}

.include-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.include-desc {
    font-size: 0.85rem;
    color: var(--color-gray-warm);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Accordion */
.faq-section {
    background: var(--color-ivory);
    padding: var(--spacing-lg) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 0.8rem;
    overflow: hidden;
    border: 1px solid rgba(191,171,139,0.15);
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition-base);
}

.faq-item.open {
    box-shadow: var(--shadow-card-hover);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.8rem;
    cursor: pointer;
    gap: 1rem;
    transition: background var(--transition-base);
}

.faq-question:hover {
    background: rgba(88,137,131,0.04);
}

.faq-question-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-dark);
    line-height: 1.5;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(88,137,131,0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-sage);
    font-size: 0.9rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.faq-item.open .faq-toggle {
    background: var(--color-sage);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 1000px;
}

.faq-answer-inner {
    padding: 0 1.8rem 1.8rem;
    font-size: 0.92rem;
    color: var(--color-gray-warm);
    line-height: 1.8;
}

.faq-answer-inner ul {
    margin: 0.8rem 0;
    padding-left: 0;
}

.faq-answer-inner li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.faq-answer-inner li::before {
    content: '→';
    color: var(--color-sage);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.legal-notice {
    background: rgba(191,171,139,0.1);
    border: 1px solid rgba(191,171,139,0.25);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

.legal-notice p {
    font-size: 0.78rem;
    color: var(--color-gray-warm);
    line-height: 1.6;
    margin: 0;
}

.purchase-section {
    background: linear-gradient(135deg, var(--color-sage-dark) 0%, var(--color-sage) 100%);
    padding: var(--spacing-lg) 0;
    text-align: center;
    color: white;
}

.purchase-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: white;
    margin-bottom: 1rem;
}

.purchase-subtitle {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Hotmart placeholder */
.hotmart-embed-placeholder {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hotmart-embed-placeholder p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* =============================================================================
   ANIMACIONES
   ============================================================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollDown {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(0.5); opacity: 1; }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Animaciones al hacer scroll (reveal) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Delays escalonados */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* =============================================================================
   RESPONSIVE - TABLET
   ============================================================================= */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .tools-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { max-width: 100%; }
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .includes-grid { grid-template-columns: repeat(2, 1fr); }
    .resources-grid { grid-template-columns: repeat(2, 1fr); }
    .hepatic-grid { gap: 3rem; }
    .book-grid { gap: 3rem; }
    .history-grid { gap: 3rem; }
}

/* =============================================================================
   RESPONSIVE - MÓVIL
   ============================================================================= */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --spacing-xxl: 5rem;
    }

    /* Menú móvil */
    .menu-toggle { display: flex; }
    
    #primary-navigation {
        position: fixed;
        inset: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1050;
    }

    #primary-navigation.open {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }

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

    /* Hero */
    .hero-content {
        text-align: center;
        padding: 7rem 0 4rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    /* Grids */
    .message-grid,
    .hepatic-grid,
    .book-grid,
    .history-grid,
    .contact-grid { grid-template-columns: 1fr; }

    .message-visual,
    .history-visual { order: -1; }

    .services-grid { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .includes-grid { grid-template-columns: 1fr; }
    .resources-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .elements-grid { grid-template-columns: 1fr; }

    /* Testimonios */
    .testimonial-card {
        min-width: calc(100% - 1.2rem);
    }

    /* Libro */
    .book-grid { align-items: flex-start; }
    .book-cover-wrap {
        width: 180px;
        margin: 0 auto;
    }
    .book-cover-placeholder {
        width: 180px;
    }

    /* Historia accent */
    .history-accent-card {
        position: static;
        margin-top: 1rem;
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* WhatsApp flotante */
    .whatsapp-float-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    /* Timeline */
    .timeline::before { display: none; }
}

@media (max-width: 480px) {
    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .tools-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .service-meta { grid-template-columns: 1fr; }

    .hepatic-features { grid-template-columns: 1fr; }
    .book-details { flex-direction: column; gap: 1rem; }
}

/* =============================================================================
   ESTILOS WORDPRESS GENERALES
   ============================================================================= */
/* Widgets */
.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-gold);
}

/* Paginación */
.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    background: white;
    border: 1px solid rgba(191,171,139,0.25);
    transition: all var(--transition-base);
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--color-sage);
    border-color: var(--color-sage);
    color: white;
}

/* Entradas WordPress */
.entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--color-dark);
    line-height: 1.2;
}

.entry-meta {
    font-size: 0.85rem;
    color: var(--color-gray-warm);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.entry-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

.entry-content h2,
.entry-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Skip link accesibilidad */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-sage);
    color: white;
    padding: 0.8rem 1.5rem;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* =============================================================================
   UTILIDADES
   ============================================================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-sage { color: var(--color-sage); }
.text-gold { color: var(--color-gold); }
.text-white { color: white; }
.text-dark { color: var(--color-dark); }
.bg-ivory { background-color: var(--color-ivory); }
.bg-sage { background-color: var(--color-sage); }
.bg-white { background-color: white; }
.d-none { display: none; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.w-100 { width: 100%; }

/* Placeholder de imágenes (cuando no hay imagen subida) */
.img-placeholder {
    background: linear-gradient(135deg, var(--color-ivory) 0%, #e4e0d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-medium);
    font-size: 2.5rem;
}
