/*
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: 3.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;
}

/* =============================================================================
   V2 — AJUSTES Y CORRECCIONES
   Versión 2.0 — Relajaterapia Holística
   ============================================================================= */

/* ----------------------------------------------------------------------------
   V2: Footer de 2 columnas (marca + contacto)
   ---------------------------------------------------------------------------- */
.footer-grid-v2 {
    grid-template-columns: 2fr 1.4fr !important;
    gap: 4rem;
}

/* Navegación interna del footer con anclas */
.footer-anchor-nav {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-anchor-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.footer-anchor-nav a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-anchor-nav a::before {
    content: '—';
    font-size: 0.65rem;
    color: var(--color-gold);
    opacity: 0.5;
}

.footer-anchor-nav a:hover {
    color: var(--color-gold-light);
}

/* Columna de contacto en el footer */
.footer-contact-col {
    /* hereda del diseño anterior */
}

/* Íconos de redes sociales — Font Awesome 6 fa-brands */
.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 0.95rem;
}

.footer-social-link:hover {
    background: var(--color-sage);
    border-color: var(--color-sage);
    color: white;
    transform: translateY(-2px);
}

/* Íconos del footer — alineación correcta */
.footer-contact-icon {
    font-size: 1rem;
    min-width: 18px;
    text-align: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: var(--color-gold-light);
}

/* ----------------------------------------------------------------------------
   V2: Botón Gold para la tarjeta de Servicio Estrella
   ---------------------------------------------------------------------------- */
.service-card.featured .btn-gold {
    background-color: var(--color-gold) !important;
    color: #2c2c2c !important;
    border-color: var(--color-gold) !important;
    font-weight: 700;
}

.service-card.featured .btn-gold:hover {
    background-color: #a8976a !important;
    border-color: #a8976a !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191,171,139,0.4);
}

/* ----------------------------------------------------------------------------
   V2: Testimonios — tarjetas más estrechas y legibles
   ---------------------------------------------------------------------------- */
.testimonial-card {
    min-width: calc(30% - 1.2rem) !important;
    max-width: 400px;
}

.testimonial-text {
    font-size: 0.92rem !important;
    line-height: 1.75 !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

/* ----------------------------------------------------------------------------
   V2: Trust cards — Pago seguro Hotmart y Compra segura Amazon
   ---------------------------------------------------------------------------- */
.trust-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(88,137,131,0.08);
    border: 1px solid rgba(88,137,131,0.2);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
    max-width: 100%;
}

.trust-notice-icon {
    color: var(--color-sage);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.trust-notice-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-notice-text strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-dark);
    font-family: var(--font-accent);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.trust-notice-text span {
    font-size: 0.8rem;
    color: var(--color-gray-warm);
    line-height: 1.6;
}

/* Trust card variante Hotmart */
.trust-notice-hotmart {
    background: rgba(191,171,139,0.08);
    border-color: rgba(191,171,139,0.25);
}

.trust-notice-hotmart .trust-notice-icon {
    color: var(--color-gold);
}

/* Trust card variante Amazon */
.trust-notice-amazon {
    border-color: rgba(88,137,131,0.2);
}

/* ----------------------------------------------------------------------------
   V2: Placeholder de la sección "Nuestro Propósito"
   ---------------------------------------------------------------------------- */
.purpose-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background: linear-gradient(160deg, var(--color-ivory) 0%, #ddd7ce 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

.purpose-placeholder-inner {
    text-align: center;
    padding: 2rem;
}

.purpose-placeholder-icon {
    font-size: 3.5rem;
    color: var(--color-sage);
    opacity: 0.4;
    display: block;
    margin-bottom: 1rem;
}

.purpose-placeholder-inner p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-sage);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.purpose-placeholder-hint {
    font-size: 0.72rem;
    color: var(--color-gray-medium);
    opacity: 0.7;
    white-space: pre-line;
    line-height: 1.5;
}

/* ----------------------------------------------------------------------------
   V2: Portada real del libro
   ---------------------------------------------------------------------------- */
.book-cover-real {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 6px 20px rgba(88,137,131,0.2);
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-cover-real:hover {
    transform: translateY(-6px) rotate(1deg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3), 0 10px 30px rgba(88,137,131,0.3);
}

/* ----------------------------------------------------------------------------
   V2: Responsive — ajustes para footer y testimonios
   ---------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .footer-grid-v2 {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
    }

    .footer-anchor-nav ul {
        gap: 0.4rem 1rem;
    }

    .testimonial-card {
        min-width: calc(80% - 1.2rem) !important;
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        min-width: calc(90% - 1.2rem) !important;
    }

    .trust-notice {
        flex-direction: column;
        gap: 0.6rem;
    }
}

/* ----------------------------------------------------------------------------
   V2: Iconos Font Awesome — asegurar que fa-brands cargue correctamente
   Usar clases con prefijo correcto para FA 6.x
   ---------------------------------------------------------------------------- */

/* Forzar que los íconos de marca usen el peso correcto */
.fa-brands,
.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

.fa-solid,
.fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.fa-regular,
.far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}

/* Botón WhatsApp en el menú de header — asegurar color correcto */
.nav-cta .btn-primary i.fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
}

/* WhatsApp floating — íconos correctos */
.whatsapp-main-btn i,
.whatsapp-option-icon i {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* ----------------------------------------------------------------------------
   V2: Sección contacto visible desde el footer para ancla de menú
   ---------------------------------------------------------------------------- */
#contacto[style*="position:absolute"] {
    top: -80px;
}


/* =============================================================================
   V2 — HEADER: Imagen de fondo y menú legible en páginas internas
   ============================================================================= */

/* Header sólido — páginas internas — menú en color oscuro legible */
#site-header.header-solid {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#site-header.header-solid .nav-links a {
    color: var(--color-dark);
}

#site-header.header-solid .nav-links a:hover {
    color: var(--color-sage);
}

/* Header con imagen de fondo (cuando se configura desde el Customizer) */
#site-header.header-has-bg {
    background-image: var(--header-bg-url);
    background-size: cover;
    background-position: center bottom;
}

/* Logo — filtrar para que se vea bien en fondo oscuro (header transparente) */
#site-header.header-transparent .site-logo svg text {
    fill: rgba(255,255,255,0.92);
}

/* Hamburger en modo oscuro */
#site-header.header-transparent .menu-toggle span {
    background-color: rgba(255,255,255,0.9);
}

#site-header.scrolled .menu-toggle span,
#site-header.header-solid .menu-toggle span {
    background-color: var(--color-dark);
}


/* =============================================================================
   V3 — HEADER NAV: Menú alineado al extremo derecho, 3 ítems
   ============================================================================= */

/* Empujar navegación hacia la derecha */
.header-inner {
    justify-content: space-between;
}

#primary-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Nav links más compactos */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    padding: 0.5rem 1.1rem;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}

/* CTA botón de agendar — sin cambios, solo pegado al nav */
.nav-cta {
    margin-left: 1.2rem;
}

/* Logo customizable desde WP: usar imagen del Customizer si existe */
.site-logo-img {
    height: 54px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

/* Botones de servicio: centrado y sin icono */
.service-card .btn.text-center {
    display: block;
    text-align: center;
    justify-content: center;
}

/* =============================================================================
   V3 — RESPONSIVE MÓVIL: 320px – 430px
   Auditoría completa: hero, menú, servicios, testimonios, footer, WhatsApp
   ============================================================================= */

/* ── Breakpoint general: 430px ────────────────────────────────────────────── */
@media (max-width: 430px) {

    /* -- LAYOUT GLOBAL -- */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* -- HERO -- */
    .hero-content {
        padding: 5.5rem 0 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
        line-height: 1.22;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        text-align: center;
        font-size: 0.92rem;
        padding: 0.85rem 1.2rem;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 0.35rem 0.9rem;
        letter-spacing: 0.06em;
    }

    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .trust-item {
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    /* -- MENÚ HAMBURGUESA -- */
    .nav-links a {
        font-size: 1.05rem;
        padding: 0.7rem 1.5rem;
    }

    /* -- SECCIÓN "NUESTRO PROPÓSITO" — elements-grid 2 columnas en móvil -- */
    .elements-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    .element-card {
        padding: 0.9rem 0.7rem;
        gap: 0.6rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .element-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .element-text h5 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }

    .element-text p {
        font-size: 0.72rem;
        line-height: 1.5;
        display: none; /* Ocultar descripción para ahorrar espacio en móvil muy pequeño */
    }

    /* -- SERVICIOS: Una columna, tarjetas bien distribuidas -- */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem;
    }

    .service-card {
        padding: 1.4rem 1.2rem 1.2rem;
        border-radius: var(--radius-md);
    }

    .service-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .service-title {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }

    .service-description {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }

    .service-meta {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 0.8rem;
        margin-bottom: 1rem;
        padding-top: 0.8rem;
    }

    .service-meta-label {
        font-size: 0.67rem;
    }

    .service-meta-value {
        font-size: 0.8rem;
    }

    .service-card .btn {
        font-size: 0.88rem;
        padding: 0.75rem 1rem;
    }

    /* -- SERVICE BADGE -- */
    .service-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
        top: 0.8rem;
        right: 0.8rem;
    }

    /* -- TESTIMONIOS -- */
    .testimonial-card {
        min-width: calc(92% - 1rem) !important;
        max-width: 360px;
        padding: 1.4rem 1.2rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .testimonial-author {
        font-size: 0.85rem;
    }

    /* -- SECCIÓN HEPÁTICA -- */
    .hepatic-grid {
        gap: 2rem;
    }

    .landing-hero {
        padding: 6rem 0 3rem;
    }

    .landing-hero-title {
        font-size: clamp(1.6rem, 6.5vw, 2rem);
    }

    /* -- LIBRO -- */
    .book-grid {
        gap: 2rem;
    }

    .book-cover-real {
        max-width: 200px;
        margin: 0 auto;
    }

    /* -- FOOTER -- */
    #site-footer {
        padding: 3.5rem 0 5rem; /* padding-bottom extra para WhatsApp button */
    }

    .footer-grid,
    .footer-grid-v2 {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-desc {
        font-size: 0.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .footer-anchor-nav {
        display: none; /* En móvil ocultar navegación redundante del footer */
    }

    /* -- BOTONES GENERALES -- */
    .btn {
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    /* -- SECTION TITLES -- */
    .section-title {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
    }

    .section-description {
        font-size: 0.88rem;
    }

    /* -- TOOLS GRID (Metodología) -- */
    .tools-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem;
    }

    .tool-card {
        padding: 1.2rem 0.9rem;
    }

    .tool-icon-wrap {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        margin: 0 auto 0.7rem;
    }

    .tool-name {
        font-size: 0.85rem;
    }

    .tool-desc {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    /* -- MESSAGE SECTION (Cuando el cuerpo habla) -- */
    .message-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .message-image-wrap {
        height: 220px;
    }

    .message-quote {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        line-height: 1.25;
    }

    .message-text {
        font-size: 0.88rem;
    }

    /* -- RESOURCES -- */
    .resources-grid {
        grid-template-columns: 1fr !important;
    }

    /* -- CTA FINAL -- */
    .cta-section {
        padding: 3rem 0;
    }

    .cta-section .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
}

/* ── Breakpoint 375px: ajuste fino iPhone SE / pequeños -- */
@media (max-width: 375px) {

    .hero-title {
        font-size: 1.55rem;
    }

    .service-card {
        padding: 1.2rem 1rem 1rem;
    }

    .elements-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem;
    }

    .element-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .tools-grid {
        grid-template-columns: 1fr !important;
    }

    .benefits-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =============================================================================
   V3 — WHATSAPP FLOTANTE: corregir z-index, pulse y bloqueo de footer
   ============================================================================= */

/* Reducir tamaño del pulso para que no tape contenido */
.whatsapp-pulse {
    animation: whatsappPulse 3s ease-out infinite;
    /* Limitar expansión máxima del pulso */
    transform-origin: center;
}

/* En móvil: subir el botón para no tapar los links legales del footer */
@media (max-width: 768px) {
    .whatsapp-float-container {
        bottom: 1.2rem;
        right: 1rem;
        z-index: 8000; /* Reducir para que footer sea accesible */
    }

    .whatsapp-main-btn {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    /* El pulso más pequeño en móvil */
    .whatsapp-pulse {
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
    }

    /* Espacio extra al final del footer para que el botón WhatsApp no tape */
    body {
        padding-bottom: 0;
    }

    #site-footer {
        padding-bottom: 4.5rem;
    }
}

@media (max-width: 430px) {
    .whatsapp-float-container {
        bottom: 0.8rem;
        right: 0.8rem;
        z-index: 7500;
    }

    .whatsapp-main-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    .whatsapp-pulse {
        /* Pulso reducido para no tapar nada */
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: rgba(37, 211, 102, 0.25);
    }

    /* Opciones de país en WhatsApp: más compactas */
    .whatsapp-option {
        padding: 0.5rem 1rem 0.5rem 0.5rem;
        font-size: 0.85rem;
    }

    .whatsapp-option-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    /* Footer con espacio suficiente para que Aviso Legal sea accesible */
    #site-footer {
        padding-bottom: 5rem;
    }
}

/* =============================================================================
   V3 — SERVICIOS: botón "Más información" centrado en desktop también
   ============================================================================= */
.service-card .btn.w-100 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
}

/* Tarjeta featured: botón gold centrado */
.service-card.featured .btn-gold {
    justify-content: center;
}

/* Tarjeta combo: botón gold centrado */
.service-card.combo .btn-gold {
    justify-content: center;
}

/* =============================================================================
   V3 — LOGO PERSONALIZABLE DESDE CUSTOMIZER (img en header)
   Si el admin sube imagen de logo, se muestra correctamente
   ============================================================================= */
.site-logo-customizer {
    display: block;
    max-height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

/* En header transparente (hero), la imagen de logo se muestra con brillo */
#site-header.header-transparent .site-logo-customizer {
    filter: brightness(0) invert(1) opacity(0.92);
}

/* En header sólido (páginas internas), sin filtro */
#site-header.header-solid .site-logo-customizer {
    filter: none;
}


/* =============================================================================
   V3.1 — NUESTRA HISTORIA: Título centrado entre dos líneas decorativas
   ============================================================================= */

/* Bloque título — fila flex con línea / título / línea */
.history-title-block {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 0 auto 1rem;
    max-width: 700px;
}

/* Líneas decorativas a los lados del título */
.history-title-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold, #BFAB8B));
}

.history-title-block .history-title-line:last-child {
    background: linear-gradient(to left, transparent, var(--color-gold, #BFAB8B));
}

/* Título principal centrado */
.history-main-title {
    flex-shrink: 0;
    font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--color-dark, #2C2C2C);
    text-align: center;
    margin: 0;
    white-space: nowrap;
}

/* Subtítulo debajo del bloque */
.history-subtitle {
    font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-sage, #588983);
    text-align: center;
    margin: 0 0 2rem;
}

/* Imagen izquierda en sección Nuestra Historia */
.history-image-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--color-sage-pale, #e8efee);
}

.history-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Icono placeholder cuando no hay imagen */
.history-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--color-sage, #588983);
    opacity: 0.5;
    font-size: 3rem;
    padding: 2rem;
    text-align: center;
}

@media (max-width: 600px) {
    .history-title-block {
        gap: 0.7rem;
    }
    .history-main-title {
        font-size: 1.35rem;
        white-space: normal;
        text-align: center;
    }
    .history-title-line {
        display: none; /* En móvil muy estrecho ocultamos líneas para que el título quepa */
    }
}

/* =============================================================================
   V3.1 — SECCIÓN HEPÁTICA: Beneficios lista izquierda (sin íconos)
   ============================================================================= */

/* Intro "Este protocolo te ayudará a:" */
.hepatic-benefits-intro {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin: 1.5rem 0 0.75rem;
    letter-spacing: 0.02em;
}

/* Lista de beneficios */
.hepatic-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
}

.hepatic-benefits-list li {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.82);
    padding: 0.35rem 0 0.35rem 1.1rem;
    position: relative;
    line-height: 1.5;
}

.hepatic-benefits-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-gold, #BFAB8B);
    font-size: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 600px) {
    .hepatic-benefits-list {
        grid-template-columns: 1fr;
    }
}

/* =============================================================================
   V3.1 — TARJETA HEPÁTICA DERECHA: Lista sin íconos (includes-list-plain)
   ============================================================================= */

.includes-list-plain {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 1.5rem !important;
}

.includes-list-plain li {
    display: block !important;
    padding: 0.45rem 0 0.45rem 1.2rem;
    position: relative;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.82);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    line-height: 1.5;
}

.includes-list-plain li:last-child {
    border-bottom: none;
}

.includes-list-plain li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-gold, #BFAB8B);
    font-size: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
}

/* =============================================================================
   V3.1 — LOGO SLOTS: Hotmart y Amazon (pequeños, encima trust cards)
   ============================================================================= */

/* Slot genérico para logo de plataforma */
.hotmart-logo-slot,
.amazon-logo-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.hotmart-logo-img,
.amazon-logo-img {
    max-height: 44px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 0.9;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
    transition: opacity 0.2s ease;
}

.hotmart-logo-img:hover,
.amazon-logo-img:hover {
    opacity: 1;
}

/* En sección libro (fondo claro), ajustar colores */
.book-section .amazon-logo-img {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

/* =============================================================================
   V3.1 — FOOTER 4 COLUMNAS
   ============================================================================= */

/* Grid de 4 columnas */
.footer-grid-4col {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
    gap: 3rem 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Logo en footer */
.footer-logo-img {
    max-height: 64px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 1rem;
    /* El logo tiene fondo blanco, aplicamos filtro suave en dark footer */
    filter: brightness(0) invert(1) opacity(0.88);
}

/* Títulos de columna */
.footer-grid-4col .footer-col-title {
    font-family: var(--font-body, 'Raleway', sans-serif);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold, #BFAB8B);
    margin: 0 0 1.2rem;
    padding: 0;
}

/* Listas de navegación y servicios */
.footer-nav-col ul,
.footer-services-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-nav-col a,
.footer-services-col a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.footer-nav-col a::before,
.footer-services-col a::before {
    content: '—';
    font-size: 0.65rem;
    color: var(--color-gold, #BFAB8B);
    opacity: 0.5;
    flex-shrink: 0;
}

.footer-nav-col a:hover,
.footer-services-col a:hover {
    color: var(--color-gold-light, #d4c4a0);
}

/* =============================================================================
   V3.1 — FOOTER BOTTOM: Copyright + links legales totalmente centrados
   ============================================================================= */

.footer-bottom-centered {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 1.75rem 0 !important;
    gap: 0.6rem !important;
}

.footer-bottom-centered .footer-copyright {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.footer-bottom-centered .footer-legal {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-centered .footer-legal a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-centered .footer-legal a:hover {
    color: var(--color-gold-light, #d4c4a0);
}

.footer-legal-sep {
    color: rgba(255,255,255,0.2);
    font-size: 0.7rem;
    user-select: none;
}

/* =============================================================================
   V3.1 — FOOTER: Responsive
   ============================================================================= */

/* 3 columnas en tablet (≤ 1100px) */
@media (max-width: 1100px) {
    .footer-grid-4col {
        grid-template-columns: 1.6fr 1fr 1fr;
        gap: 2.5rem 1.5rem;
    }
    /* Columna contacto debajo, ancho completo */
    .footer-grid-4col .footer-contact-col {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: auto 1fr 1fr 1fr;
        align-items: start;
        gap: 1rem 2rem;
    }
    .footer-grid-4col .footer-contact-col .footer-col-title {
        grid-column: 1 / -1;
        margin-bottom: 0.5rem;
    }
}

/* 2 columnas en móvil grande (≤ 768px) */
@media (max-width: 768px) {
    .footer-grid-4col {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    .footer-grid-4col .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-grid-4col .footer-contact-col {
        grid-column: 1 / -1;
        display: block;
    }
}

/* 1 columna en móvil (≤ 480px) */
@media (max-width: 480px) {
    .footer-grid-4col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-grid-4col .footer-brand,
    .footer-grid-4col .footer-nav-col,
    .footer-grid-4col .footer-services-col,
    .footer-grid-4col .footer-contact-col {
        grid-column: 1 / -1;
    }
}

/* =============================================================================
   V3.1 — LOGO PNG en header: ajuste para fondo transparente vs sólido
   El logo PNG tiene colores sage/gold sobre fondo blanco.
   En header transparente (dark hero): se invierte a blanco.
   En header sólido (páginas internas): se muestra sin filtro, pero
   se reduce un poco el brillo para que no destaque el fondo blanco.
   ============================================================================= */

/* Tamaño base del logo PNG */
.site-logo-customizer {
    display: block;
    max-height: 56px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Header transparente (Hero home): logo con colores invertidos para legibilidad */
#site-header.header-transparent .site-logo-customizer {
    filter: brightness(0) invert(1) opacity(0.90);
    max-height: 60px;
}

/* Header sólido (páginas internas): logo sin filtro, se muestra con sus colores reales */
#site-header.header-solid .site-logo-customizer {
    filter: none;
    max-height: 52px;
}


/* =============================================================================
   V3.2 — LOGO HEADER: Más visible en header transparente y sólido
   PNG circular sage/gold — se muestra con colores reales en solid, invertido en transparent
   ============================================================================= */

/* Tamaño aumentado para mayor visibilidad */
.site-logo-customizer {
    display: block;
    max-height: 72px !important;
    width: auto;
    max-width: 240px !important;
    object-fit: contain;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Header transparente (Hero): el PNG circular se muestra con sus colores reales
   añadimos un fondo redondeado semitransparente para legibilidad */
#site-header.header-transparent .site-logo-customizer {
    filter: none !important;
    background: transparent;
    border-radius: 0;
    padding: 0;
    max-height: 72px !important;
}

/* PNG puro desde el tema (sin Customizer) — igual tratamiento */
#site-header.header-transparent .site-logo-png {
    filter: none !important;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

/* Header sólido (páginas internas): sin filtro, colores reales, sin fondo extra */
#site-header.header-solid .site-logo-customizer,
#site-header.header-solid .site-logo-png {
    filter: none !important;
    background: transparent;
    padding: 0;
    max-height: 64px !important;
}

/* =============================================================================
   V3.2 — LOGO FOOTER: Más visible — sin inversión de colores (fondo oscuro)
   ============================================================================= */

/* Logo en footer: mostrar con colores reales pero adaptar al fondo oscuro */
.footer-logo-img {
    max-height: 80px !important;
    max-width: 200px !important;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 1.25rem;
    /* Fondo circular semitransparente para que el PNG sea legible sobre el footer oscuro */
    background: transparent;
    border-radius: 0;
    padding: 0;
    filter: none !important;
}

/* PNG desde el tema en footer */
.footer-logo-png {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* =============================================================================
   V3.2 — FOOTER GRID 3 COLUMNAS (reemplaza 4col)
   ============================================================================= */

.footer-grid-3col {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.4fr;
    gap: 3rem 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Tablet (≤ 900px): 2 columnas */
@media (max-width: 900px) {
    .footer-grid-3col {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    .footer-grid-3col .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-grid-3col .footer-contact-col {
        grid-column: 1 / -1;
    }
}

/* Móvil (≤ 480px): 1 columna */
@media (max-width: 480px) {
    .footer-grid-3col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =============================================================================
   V3.2 — FOOTER TAGLINE GRANDE
   ============================================================================= */

.footer-tagline-lg {
    font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif) !important;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem) !important;
    font-weight: 600 !important;
    font-style: italic !important;
    color: var(--color-gold-light, #d4c4a0) !important;
    line-height: 1.4 !important;
    margin-bottom: 0.9rem !important;
}

/* =============================================================================
   V3.2 — LOGOS PNG EN REDES SOCIALES DEL FOOTER
   Los logos son PNGs blancos sobre fondo negro — se muestran dentro del círculo
   del footer-social-link existente, recortando el fondo negro
   ============================================================================= */

/* Enlace social con imagen PNG en vez de ícono FA */
.footer-social-link-img {
    overflow: hidden;
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.18);
}

/* Imagen PNG del logo social */
.footer-social-icon-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    /* Los logos son blancos sobre fondo negro — mezcla multiplicativa para quitar el fondo */
    mix-blend-mode: screen;
    filter: brightness(1.1);
}

/* =============================================================================
   V3.2 — TRUST CARDS: Logo de plataforma a la izquierda del texto
   Clase .trust-platform-logo para Amazon y Hotmart dentro de .trust-notice
   ============================================================================= */

/* El logo de plataforma reemplaza al ícono FA en la trust card */
.trust-platform-logo {
    flex-shrink: 0;
    max-height: 40px;
    max-width: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 0.9;
}

/* Asegurar que trust-notice sea flex para alinear logo + texto */
.trust-notice {
    display: flex !important;
    align-items: center !important;
    gap: 0.85rem !important;
}

/* =============================================================================
   V3.2 — LANDING LIMPIEZA HEPÁTICA: Subtítulo grande "Un espacio de transformación"
   ============================================================================= */

.landing-hero-subtitle-lg {
    font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif) !important;
    font-size: clamp(1.25rem, 3vw, 2rem) !important;
    font-weight: 600 !important;
    font-style: italic !important;
    color: var(--color-gold-light, #d4c4a0) !important;
    line-height: 1.35 !important;
    margin-bottom: 0.5rem !important;
    opacity: 1 !important;
}



/* =============================================================================
   V3.3 — CORRECCIÓN DE ÍCONOS CUADRADOS + RESPONSIVE COMPLETO
   Elimina dependencia de Font Awesome en elementos que fallan en móvil.
   Todos los iconos críticos reemplazados por CSS puro o SVG inline.
   ============================================================================= */

/* ──────────────────────────────────────────────────────────────────
   1. HERO TRUST BADGES — check mark CSS puro (sin Font Awesome)
   .trust-icon-check dibuja un ✓ con pseudo-elemento border
   ────────────────────────────────────────────────────────────────── */
.trust-icon-check {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    background-color: var(--color-gold, #BFAB8B) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    position: relative;
}

.trust-icon-check::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-2px);
}

/* ──────────────────────────────────────────────────────────────────
   2. DIVIDERS — icono central reemplazado por CSS puro
   .divider-icon-css = rombo dorado CSS (sin Font Awesome)
   .divider-icon-heart = corazón SVG mask (sin Font Awesome)
   ────────────────────────────────────────────────────────────────── */
.divider-icon-css {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--color-gold, #BFAB8B);
    transform: rotate(45deg);
    flex-shrink: 0;
    margin: 0 0.5rem;
}

.divider-icon-heart {
    display: inline-block;
    width: 14px;
    height: 13px;
    flex-shrink: 0;
    margin: 0 0.5rem;
    background-color: var(--color-gold, #BFAB8B);
    position: relative;
    transform: rotate(-45deg);
}
.divider-icon-heart::before,
.divider-icon-heart::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: var(--color-gold, #BFAB8B);
    border-radius: 50%;
    top: -7px;
    left: 0;
}
.divider-icon-heart::after {
    top: 0;
    left: 7px;
}

/* ──────────────────────────────────────────────────────────────────
   3. SERVICE ICON SVG — para Análisis Sistémico Transgeneracional
   ────────────────────────────────────────────────────────────────── */
.service-icon-svg {
    color: var(--color-sage, #588983);
}
.service-icon-svg svg {
    display: block;
}

/* ──────────────────────────────────────────────────────────────────
   4. TESTIMONIOS — estrellas ★ HTML entity (sin Font Awesome)
   ────────────────────────────────────────────────────────────────── */
.star-svg {
    color: var(--color-gold, #BFAB8B);
    font-size: 0.95rem;
    line-height: 1;
    font-style: normal;
    display: inline-block;
}

/* ──────────────────────────────────────────────────────────────────
   5. FAQ TOGGLE — botón +/× CSS puro (sin Font Awesome)
   ────────────────────────────────────────────────────────────────── */
.faq-toggle-icon {
    display: block;
    width: 14px;
    height: 14px;
    position: relative;
    flex-shrink: 0;
}
.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
/* barra horizontal */
.faq-toggle-icon::before {
    width: 14px;
    height: 2px;
    top: 6px;
    left: 0;
}
/* barra vertical */
.faq-toggle-icon::after {
    width: 2px;
    height: 14px;
    top: 0;
    left: 6px;
}
/* estado abierto: gira 45° → × */
.faq-item.open .faq-toggle-icon::after {
    transform: rotate(45deg);
    opacity: 0;
}
.faq-item.open .faq-toggle-icon::before {
    transform: rotate(0deg);
}
/* alternativa: rotar el botón completo → × */
.faq-item.open .faq-toggle {
    background: var(--color-sage, #588983) !important;
    color: white !important;
    transform: rotate(45deg) !important;
}

/* ──────────────────────────────────────────────────────────────────
   6. FOOTER GLOBE — SVG inline ya en el HTML, ajuste tamaño
   ────────────────────────────────────────────────────────────────── */
.footer-icon-globe {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(191,171,139,0.15);
    flex-shrink: 0;
    color: var(--color-gold, #BFAB8B);
}
.footer-icon-globe svg {
    display: block;
    color: var(--color-gold, #BFAB8B);
}

/* ──────────────────────────────────────────────────────────────────
   7. TRUST AMAZON FALLBACK — SVG Amazon inline
   ────────────────────────────────────────────────────────────────── */
.trust-amazon-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold, #BFAB8B);
    opacity: 0.85;
}
.trust-amazon-fallback svg {
    display: block;
}

/* ──────────────────────────────────────────────────────────────────
   8. HOTMART BOLT — emoji ⚡ como reemplazo de fa-bolt
   ────────────────────────────────────────────────────────────────── */
.hotmart-bolt-icon {
    font-style: normal;
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────────────
   9. RESPONSIVE COMPLETO — revisión y corrección global
   ────────────────────────────────────────────────────────────────── */

/* ---- Breakpoint 1200px ---- */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .footer-grid-3col {
        grid-template-columns: 1.5fr 1fr 1.2fr !important;
        gap: 2rem 1.5rem !important;
    }
    .book-grid {
        gap: 2.5rem !important;
    }
}

/* ---- Breakpoint 1024px ---- */
@media (max-width: 1024px) {
    .hepatic-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .hepatic-visual {
        max-width: 480px !important;
        margin: 0 auto !important;
    }
    .book-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    .book-cover-wrap {
        max-width: 260px !important;
        margin: 0 auto !important;
    }
    .book-details {
        justify-content: center !important;
    }
    .hero-content {
        max-width: 100% !important;
        padding: 0 1rem !important;
    }
    .message-grid {
        grid-template-columns: 1fr !important;
    }
    .message-visual {
        display: none !important;
    }
}

/* ---- Breakpoint 900px ---- */
@media (max-width: 900px) {
    .footer-grid-3col {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem 1.5rem !important;
    }
    .footer-grid-3col .footer-brand {
        grid-column: 1 / -1 !important;
    }
}

/* ---- Breakpoint 768px ---- */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
    }
    .hero-subtitle {
        font-size: 1rem !important;
    }
    .hero-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
    }
    .hero-buttons .btn {
        text-align: center !important;
        justify-content: center !important;
    }
    .hero-trust-badges {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }
    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.4rem) !important;
    }
    .metodologia-grid,
    .tools-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .testimonials-track {
        flex-direction: column !important;
    }
    .benefits-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .faq-question {
        padding: 1.2rem 1rem !important;
    }
    .faq-answer-inner {
        padding: 0 1rem 1.2rem !important;
    }
    .trust-notice {
        flex-wrap: wrap !important;
    }
    .trust-platform-logo {
        max-height: 32px !important;
        max-width: 80px !important;
    }
}

/* ---- Breakpoint 600px ---- */
@media (max-width: 600px) {
    .metodologia-grid,
    .tools-grid {
        grid-template-columns: 1fr !important;
    }
    .benefits-grid {
        grid-template-columns: 1fr !important;
    }
    .footer-grid-3col {
        grid-template-columns: 1fr !important;
    }
    .footer-grid-3col .footer-brand,
    .footer-grid-3col .footer-nav-col,
    .footer-grid-3col .footer-contact-col {
        grid-column: auto !important;
    }
    .footer-social {
        gap: 0.6rem !important;
    }
    .footer-social-link {
        width: 36px !important;
        height: 36px !important;
    }
    .footer-social-icon-img {
        width: 18px !important;
        height: 18px !important;
    }
    .footer-tagline-lg {
        font-size: clamp(1rem, 4vw, 1.3rem) !important;
    }
    .hero-trust-badges {
        flex-direction: column !important;
        gap: 0.6rem !important;
    }
    .landing-hero-subtitle-lg {
        font-size: clamp(1.1rem, 4.5vw, 1.5rem) !important;
    }
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .section {
        padding: 3rem 0 !important;
    }
    .hepatic-card {
        padding: 1.5rem !important;
    }
    .testimonial-card {
        padding: 1.5rem !important;
    }
    .service-card {
        padding: 1.5rem !important;
    }
}

/* ---- Breakpoint 480px ---- */
@media (max-width: 480px) {
    .hero-section {
        min-height: 100svh !important;
    }
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem) !important;
    }
    .btn-lg {
        padding: 0.85rem 1.4rem !important;
        font-size: 0.9rem !important;
    }
    .section-eyebrow {
        font-size: 0.7rem !important;
    }
    .footer-bottom-centered {
        flex-direction: column !important;
        gap: 0.75rem !important;
        text-align: center !important;
    }
    .footer-legal {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.4rem !important;
    }
    .book-cover-real,
    .book-cover-placeholder {
        max-width: 200px !important;
    }
    .faq-question-text {
        font-size: 0.9rem !important;
    }
    .service-meta {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    .service-meta-item {
        flex-direction: row !important;
        gap: 0.5rem !important;
    }
    .history-timeline-entry {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
    .history-timeline-year {
        text-align: left !important;
    }
}

/* ──────────────────────────────────────────────────────────────────
   10. FOOTER — fa-square-phone → usar estilos limpios para íconos
   Los fa-square-phone y fa-location-dot sí funcionan en FA6 Free
   pero añadimos fallback visual por si no carga
   ────────────────────────────────────────────────────────────────── */
.footer-contact-icon {
    min-width: 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(191,171,139,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold, #BFAB8B) !important;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────────────
   11. OVERRIDE: Eliminar posibles artefactos de íconos rotos
   Si Font Awesome no carga, los <i> no muestran cuadrados
   ────────────────────────────────────────────────────────────────── */
.fas, .fa-solid, .fa-brands, .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif !important;
}
/* Ocultar íconos que fallaron al no tener glifo */
.fas:empty,
.fa-solid:empty,
.fa-brands:empty,
.fab:empty {
    display: none !important;
}


/* =============================================================================
   V3.4 — AJUSTES VISUALES COMPLETOS
   ============================================================================= */

/* ── LOGO HEADER: más grande en ambos estados ── */
.site-logo-customizer,
.site-logo-png {
    max-height: 310px !important;
    max-width: 520px !important;
    width: auto;
    object-fit: contain;
    display: block;
}
#site-header.header-transparent .site-logo-customizer,
#site-header.header-transparent .site-logo-png {
    filter: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    max-height: 92px !important;
}
#site-header.header-solid .site-logo-customizer,
#site-header.header-solid .site-logo-png {
    filter: none !important;
    background: transparent !important;
    padding: 0 !important;
    max-height: 80px !important;
}

/* ── LOGO FOOTER: más grande ── */
.footer-logo-img,
.footer-logo-png {
    max-height: 200px !important;
    max-width: 340px !important;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 1.25rem;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    filter: none !important;
}

/* ── HEADER SOLID (subpáginas): fondo oscuro, menú blanco ── */
#site-header.header-solid {
    background-color: var(--color-sage-dark, #3d6b65) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
#site-header.header-solid .nav-links a {
    color: rgba(255,255,255,0.90) !important;
}
#site-header.header-solid .nav-links a:hover {
    color: var(--color-gold, #BFAB8B) !important;
}
#site-header.header-solid .menu-toggle span {
    background-color: rgba(255,255,255,0.9) !important;
}

/* ── FOOTER TAGLINE: mucho más grande y visible ── */
.footer-tagline-lg {
    font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif) !important;
    font-size: clamp(1.3rem, 2.8vw, 1.9rem) !important;
    font-weight: 700 !important;
    font-style: italic !important;
    color: var(--color-gold-light, #d4c4a0) !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
}

/* ── FOOTER NAV: letras blancas ── */
.footer-nav-col a,
.footer-nav-col ul li a {
    color: rgba(255,255,255,0.88) !important;
    text-decoration: none;
}
.footer-nav-col a:hover,
.footer-nav-col ul li a:hover {
    color: var(--color-gold, #BFAB8B) !important;
}
.footer-col-title {
    color: rgba(255,255,255,0.95) !important;
}

/* ── FOOTER ATENCIÓN ONLINE: globo a la derecha de Internacional ── */
.footer-online-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.15rem !important;
}
.footer-online-text {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
}
.footer-icon-globe-inline {
    display: inline-flex;
    align-items: center;
    color: var(--color-gold, #BFAB8B);
    opacity: 0.8;
}
.footer-icon-globe-inline svg {
    display: block;
}

/* ── FOOTER BOTTOM INLINE: copyright + legales en una línea ── */
.footer-bottom-inline {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem 1rem !important;
    padding: 1.5rem 0 !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    text-align: center !important;
}
.footer-bottom-inline .footer-copyright {
    margin: 0 !important;
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
}
.footer-bottom-sep {
    color: rgba(255,255,255,0.25) !important;
    font-size: 0.75rem !important;
}
.footer-legal-inline {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
}
.footer-legal-inline a {
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.8rem !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}
.footer-legal-inline a:hover {
    color: var(--color-gold, #BFAB8B) !important;
}

/* ── NUESTRA HISTORIA: subtitle en gold ── */
.history-subtitle-gold {
    color: var(--color-gold, #BFAB8B) !important;
    font-style: italic !important;
    opacity: 1 !important;
}

/* ── TIMELINE: puntos verdes CSS puros ── */
.timeline-dot.timeline-dot-green {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    border-radius: 50% !important;
    background: var(--color-sage, #588983) !important;
    border: 3px solid rgba(88,137,131,0.3) !important;
    box-shadow: 0 0 0 4px rgba(88,137,131,0.12) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    /* Eliminar contenido de Font Awesome dentro */
    font-size: 0 !important;
    color: transparent !important;
}
.timeline-dot.timeline-dot-green i,
.timeline-dot.timeline-dot-green svg {
    display: none !important;
}

/* ── VALORES: emojis/caracteres en lugar de Font Awesome ── */
.valor-icon-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.valor-emoji {
    font-size: 2rem;
    line-height: 1;
    color: var(--color-sage, #588983);
    display: block;
    text-align: center;
}

/* ── HOTMART TRUST FALLBACK: SVG llama ── */
.trust-hotmart-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-hotmart-fallback svg {
    display: block;
}

/* ── ACOMPAÑAMIENTO INTELIGENTE: centrar título y eyebrow ── */
section[aria-labelledby="asistente-titulo"] .reveal-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}
section[aria-labelledby="asistente-titulo"] .reveal-right p,
section[aria-labelledby="asistente-titulo"] .reveal-right div {
    text-align: center !important;
    max-width: 560px !important;
}

/* ── RESPONSIVE V3.4 COMPLETO ── */

/* Tablet grande */
@media (max-width: 1100px) {
    .site-logo-customizer,
    .site-logo-png {
        max-height: 80px !important;
    }
    .footer-logo-img,
    .footer-logo-png {
        max-height: 88px !important;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .footer-bottom-inline {
        flex-direction: column !important;
        gap: 0.6rem !important;
    }
    .footer-bottom-sep {
        display: none !important;
    }
    .footer-legal-inline {
        justify-content: center !important;
    }
    section[aria-labelledby="asistente-titulo"] .container > div {
        grid-template-columns: 1fr !important;
    }
    section[aria-labelledby="asistente-titulo"] .reveal-right {
        align-items: flex-start !important;
        text-align: left !important;
    }
    section[aria-labelledby="asistente-titulo"] .reveal-right p,
    section[aria-labelledby="asistente-titulo"] .reveal-right div {
        text-align: left !important;
    }
}

/* Móvil */
@media (max-width: 600px) {
    .site-logo-customizer,
    .site-logo-png {
        max-height: 64px !important;
        max-width: 200px !important;
    }
    .footer-logo-img,
    .footer-logo-png {
        max-height: 72px !important;
        max-width: 180px !important;
        padding: 8px !important;
    }
    .footer-tagline-lg {
        font-size: clamp(1.1rem, 5vw, 1.5rem) !important;
    }
    .footer-bottom-inline {
        padding: 1rem 0 !important;
    }
    .footer-copyright {
        font-size: 0.75rem !important;
        white-space: normal !important;
        text-align: center !important;
    }
    .timeline-dot.timeline-dot-green {
        width: 14px !important;
        height: 14px !important;
        min-width: 14px !important;
    }
    .history-subtitle-gold {
        font-size: clamp(1rem, 4.5vw, 1.5rem) !important;
    }
    .footer-online-text {
        font-size: 0.82rem !important;
    }
    /* Valores grid: 2 col en móvil */
    section.section[style*="background: var(--color-ivory)"] .tool-card,
    .tool-card {
        padding: 1.25rem !important;
    }
    .valor-emoji {
        font-size: 1.6rem !important;
    }
    /* Valores responsive */
    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Móvil pequeño */
@media (max-width: 400px) {
    .site-logo-customizer,
    .site-logo-png {
        max-height: 52px !important;
        max-width: 160px !important;
    }
    .footer-logo-img,
    .footer-logo-png {
        max-height: 60px !important;
    }
    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================================
   V3.5 — Trust logos PNG: Amazon + Hotmart
   Integra los PNGs reales con fondo blanco en las trust cards
   ============================================================ */

/* Logo Amazon PNG */
.trust-logo-amazon {
    height: 100px !important;
    width: auto !important;
    max-width: 310px !important;
    object-fit: contain !important;
    background-color: #ffffff !important;
    border-radius: 6px !important;
    padding: 4px 6px !important;
    flex-shrink: 0 !important;
    display: block !important;
}

/* Logo Hotmart PNG */
.trust-logo-hotmart {
    height: 40px !important;
    width: auto !important;
    max-width: 120px !important;
    object-fit: contain !important;
    background-color: #ffffff !important;
    border-radius: 6px !important;
    padding: 4px 6px !important;
    flex-shrink: 0 !important;
    display: block !important;
}

/* Ajuste contenedor trust card para alinear logo + texto */
.trust-notice-amazon,
.trust-notice-hotmart {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

/* Responsive: logos ligeramente más pequeños en móvil */
@media (max-width: 480px) {
    .trust-logo-amazon {
        height: 36px !important;
        max-width: 90px !important;
    }
    .trust-logo-hotmart {
        height: 32px !important;
        max-width: 100px !important;
    }
}
