/* ==========================================================================
   SISTEMA DE DISEÑO DE ENKNTO ATEMPORAL - RITUAL ZENITH
   ========================================================================== */

:root {
    /* Paleta de Colores Corporativa */
    --color-burdeos-dark: #370711;
    --color-burdeos: #5B1424;
    --color-burdeos-light: #7E2437;
    --color-champaña: #F4EDE4;
    --color-champaña-dark: #EBDCC9;
    --color-cobre-oro: #C5A059;
    --color-cobre-oro-light: #DFBF7E;
    --color-malva: #8E6E88;
    --color-malva-rosa: #C896A6;
    --color-malva-rosa-light: #E7CAD2;
    --color-arena-oscura: #A18866;
    --color-arena-clara: #D2C4B1;
    --color-blanco-puro: #FFFFFF;
    --color-texto-oscuro: #2E1A1E;
    --color-texto-claro: #F4EDE4;

    /* Tipografías */
    --font-primary: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Sombras y Efectos */
    --shadow-sm: 0 4px 6px -1px rgba(91, 20, 36, 0.05), 0 2px 4px -1px rgba(91, 20, 36, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(91, 20, 36, 0.08), 0 4px 6px -2px rgba(91, 20, 36, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(91, 20, 36, 0.12), 0 10px 10px -5px rgba(91, 20, 36, 0.06);
    --shadow-gold: 0 8px 20px rgba(197, 160, 89, 0.15);
    
    /* Transiciones */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* RESET GENERAL Y ACCESIBILIDAD */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-champaña);
    color: var(--color-texto-oscuro);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-accent);
    color: var(--color-burdeos);
    font-weight: 600;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    font-family: var(--font-primary);
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
    transition: var(--transition-fast);
}

li {
    list-style: none;
}

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

/* ORBES DE LUZ SUTILES PARA FONDO */
.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.45;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.orb-1 {
    top: 5%;
    right: -10%;
    background-color: var(--color-malva-rosa);
}

.orb-2 {
    top: 40%;
    left: -15%;
    background-color: var(--color-champaña-dark);
}

/* ==========================================================================
   HEADER / NAVEGACIÓN
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(244, 237, 228, 0.85); /* Champaña translúcido */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(161, 136, 102, 0.15);
    padding: 15px 0;
    transition: var(--transition-medium);
}

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

/* ESTILOS DE LOGOTIPO DE CABECERA CON ESPIGA REAL */
.brand-header-logo-lnk {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.header-espiga-img {
    height: 68px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply; /* Elimina el fondo blanco y lo integra con el fondo translúcido */
    transition: var(--transition-fast);
}

.brand-header-logo-lnk:hover .header-espiga-img {
    transform: scale(1.08) rotate(2deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-accent);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-burdeos);
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--color-arena-oscura);
    margin-top: 6px;
    font-weight: 500;
}

/* NAVEGACIÓN */
.main-nav ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-texto-oscuro);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

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

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

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

.highlight-link {
    color: var(--color-burdeos);
    font-weight: 600;
    border: 1px solid rgba(91, 20, 36, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    background-color: rgba(91, 20, 36, 0.03);
    transition: var(--transition-fast);
}

.highlight-link:hover {
    background-color: var(--color-burdeos);
    color: var(--color-champaña);
    border-color: var(--color-burdeos);
}

/* ACCIONES CABECERA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-toggle-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(91, 20, 36, 0.05);
    color: var(--color-burdeos);
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(91, 20, 36, 0.1);
}

.cart-toggle-btn:hover {
    background-color: var(--color-burdeos);
    color: var(--color-champaña);
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--color-cobre-oro);
    color: var(--color-burdeos);
    font-size: 11px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-champaña);
    box-shadow: var(--shadow-sm);
}


/* ==========================================================================
   BOTONES E INTERACCIONES COMUNES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-medium);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-burdeos), var(--color-burdeos-dark));
    color: var(--color-champaña);
    border: 1px solid var(--color-burdeos);
    box-shadow: 0 4px 14px rgba(91, 20, 36, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-burdeos-light), var(--color-burdeos));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 20, 36, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-burdeos);
    border: 1px solid var(--color-burdeos);
}

.btn-secondary:hover {
    background-color: rgba(91, 20, 36, 0.05);
    transform: translateY(-2px);
}


/* ==========================================================================
   SECCIÓN HERO
   ========================================================================== */
.hero-section {
    padding: 160px 0 100px 0;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(235, 220, 201, 0.45) 0%, transparent 60%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    transform: translateY(-25px); /* Sube ligeramente todo el bloque de texto */
}

.hero-tagline {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px; /* Mayor espaciado entre letras */
    color: var(--color-arena-oscura);
    margin-bottom: 24px; /* Mayor separación */
}

.hero-title {
    font-size: 54px;
    font-weight: 600;
    letter-spacing: 1px; /* Mayor espaciado */
    margin-bottom: 32px; /* Mayor separación */
    color: var(--color-burdeos);
}

.hero-title em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--color-cobre-oro);
    font-weight: 400;
}

.hero-description {
    font-size: 16px;
    color: var(--color-texto-oscuro);
    opacity: 0.85;
    margin-bottom: 45px;
    max-width: 540px;
    line-height: 2.0; /* Mayor interlineado/espaciado de lectura */
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* TARJETA DE PRODUCTO HERO */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(161, 136, 102, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    overflow: hidden;
}

.hero-product-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: var(--shadow-gold), var(--shadow-lg);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(235, 220, 201, 0.4) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.product-badge {
    position: relative;
    display: inline-block;
    background-color: var(--color-burdeos);
    color: var(--color-champaña);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 2;
    margin-bottom: 20px;
}

.product-svg-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.product-svg {
    width: 100%;
    height: 100%;
    max-height: 180px;
}

.hero-product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    filter: drop-shadow(0 10px 15px rgba(91, 20, 36, 0.15));
    animation: floatingProduct 4s ease-in-out infinite;
}

@keyframes floatingProduct {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.hero-product-info {
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.hero-product-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-burdeos);
    margin-bottom: 6px;
}

.hero-product-info p {
    font-size: 13px;
    color: var(--color-texto-oscuro);
    opacity: 0.7;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-burdeos);
}

.btn-add-quick {
    background-color: var(--color-burdeos);
    color: var(--color-champaña);
    font-size: 12px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-add-quick:hover {
    background-color: var(--color-cobre-oro);
    color: var(--color-burdeos);
    transform: translateY(-2px);
}


/* ==========================================================================
   SECCIÓN FILOSOFÍA
   ========================================================================== */
.philosophy-section {
    padding: 100px 0;
    background-color: rgba(235, 220, 201, 0.25);
    border-top: 1px solid rgba(161, 136, 102, 0.1);
    border-bottom: 1px solid rgba(161, 136, 102, 0.1);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.section-subtitle {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-arena-oscura);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    font-weight: 600;
    color: var(--color-burdeos);
    margin-bottom: 20px;
}

.section-lead {
    font-size: 16px;
    color: var(--color-texto-oscuro);
    opacity: 0.85;
    line-height: 1.8;
}

.philosophy-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.p-card {
    display: flex;
    gap: 25px;
    background-color: var(--color-blanco-puro);
    padding: 25px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(161, 136, 102, 0.12);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.p-card:hover {
    transform: translateX(8px);
    border-color: var(--color-cobre-oro);
    box-shadow: var(--shadow-md);
}

.p-card-icon {
    font-size: 26px;
    color: var(--color-cobre-oro);
    width: 60px;
    height: 60px;
    background-color: rgba(197, 160, 89, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.p-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-burdeos);
}

.p-card p {
    font-size: 14px;
    color: var(--color-texto-oscuro);
    opacity: 0.75;
    line-height: 1.6;
}


/* ==========================================================================
   SECCIÓN PRODUCTOS / CATÁLOGO
   ========================================================================== */
.products-section {
    padding: 100px 0;
}

.section-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-desc {
    font-size: 15px;
    color: var(--color-texto-oscuro);
    opacity: 0.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--color-blanco-puro);
    border: 1px solid rgba(161, 136, 102, 0.15);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-cobre-oro);
    box-shadow: var(--shadow-md);
}

.product-image-container {
    height: 240px;
    background-color: rgba(244, 237, 228, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(161, 136, 102, 0.1);
    overflow: hidden;
}

.prod-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-cobre-oro);
    color: var(--color-burdeos);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 50px;
}

.prod-svg {
    width: 100%;
    height: 100%;
    max-height: 200px;
    transition: var(--transition-slow);
}

.prod-img {
    width: 100%;
    height: 100%;
    max-height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gua-sha-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% 82%;
    transform: scale(2.8);
    transform-origin: 78% 82%;
    transition: var(--transition-slow);
}

.aceite-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 12% 82%;
    transform: scale(4.4);
    transform-origin: 12% 82%;
    transition: var(--transition-slow);
}

.crema-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 26.5% 82.5%;
    transform: scale(5.5);
    transform-origin: 26.5% 82.5%;
    transition: var(--transition-slow);
}

.product-card:hover .prod-svg,
.product-card:hover .prod-img {
    transform: scale(1.05);
}

.product-card:hover .gua-sha-img {
    transform: scale(3.1);
}

.product-card:hover .aceite-img {
    transform: scale(4.8);
}

.product-card:hover .crema-img {
    transform: scale(6.0);
}

.product-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 18px;
    color: var(--color-burdeos);
    margin-bottom: 8px;
    font-weight: 600;
}

.product-description {
    font-size: 13px;
    color: var(--color-texto-oscuro);
    opacity: 0.75;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(161, 136, 102, 0.08);
    padding-top: 18px;
}

.product-price {
    font-family: var(--font-accent);
    font-size: 19px;
    font-weight: 600;
    color: var(--color-burdeos);
}

.btn-add-cart {
    background-color: transparent;
    border: 1px solid var(--color-burdeos);
    color: var(--color-burdeos);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-add-cart:hover {
    background-color: var(--color-burdeos);
    color: var(--color-champaña);
    transform: translateY(-1px);
}


/* ==========================================================================
   DASHBOARD WELLNESS ZENITH: EL RITUAL ATEMPORAL
   ========================================================================== */
.dashboard-section {
    padding: 100px 0;
    background-color: rgba(91, 20, 36, 0.03); /* Fondo burdeos sutilísimo */
    border-top: 1px solid rgba(91, 20, 36, 0.08);
    border-bottom: 1px solid rgba(91, 20, 36, 0.08);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.dashboard-card {
    background-color: var(--color-blanco-puro);
    border: 1px solid rgba(91, 20, 36, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.dashboard-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(91, 20, 36, 0.15);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(161, 136, 102, 0.12);
    padding-bottom: 18px;
    margin-bottom: 24px;
}

.card-header h3 {
    font-size: 20px;
    color: var(--color-burdeos);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header h3 i {
    color: var(--color-cobre-oro);
}

.date-display {
    font-size: 12px;
    color: var(--color-arena-oscura);
    font-weight: 500;
}

.badge-accent, .badge-gold {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 50px;
}

.badge-accent {
    background-color: rgba(142, 110, 136, 0.1);
    color: var(--color-malva);
}

.badge-gold {
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--color-cobre-oro);
}

/* 1. WIDGET DE RUTINAS */
.progress-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.circular-progress {
    position: relative;
    width: 140px;
    height: 140px;
}

.progress-ring {
    width: 100%;
    height: 100%;
}

.progress-ring-bar {
    transform-origin: center;
    transform: rotate(-90deg);
    transition: stroke-dashoffset 0.35s;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.percentage {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-burdeos);
    line-height: 1;
}

.progress-text .sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-arena-oscura);
    margin-top: 4px;
}

.routine-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.routine-item {
    background-color: rgba(244, 237, 228, 0.3);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    border: 1px solid rgba(161, 136, 102, 0.08);
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--color-texto-oscuro);
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--color-blanco-puro);
    border: 1.5px solid var(--color-arena-oscura);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--color-burdeos);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--color-burdeos);
    border-color: var(--color-burdeos);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark::after {
    display: block;
}

.checkbox-container .checkmark::after {
    left: 6px;
    top: 3px;
    width: 4px;
    height: 8px;
    border: solid var(--color-champaña);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .task-text {
    text-decoration: line-through;
    opacity: 0.5;
}

.task-text {
    transition: var(--transition-fast);
}

/* 2. GIMNASIA FACIAL */
.gym-intro {
    font-size: 13px;
    color: var(--color-texto-oscuro);
    opacity: 0.8;
    margin-bottom: 20px;
}

.gym-selector-tabs {
    display: flex;
    gap: 8px;
    background-color: rgba(244, 237, 228, 0.5);
    padding: 6px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(161, 136, 102, 0.1);
}

.gym-tab {
    flex: 1;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    color: var(--color-texto-oscuro);
}

.gym-tab.active {
    background-color: var(--color-burdeos);
    color: var(--color-champaña);
}

.gym-content-box {
    background-color: rgba(244, 237, 228, 0.4);
    border-radius: var(--border-radius-md);
    padding: 20px;
    border: 1px solid rgba(161, 136, 102, 0.08);
    margin-bottom: 24px;
}

.exercise-info h4 {
    font-size: 18px;
    color: var(--color-burdeos);
    margin-bottom: 8px;
}

.exercise-info p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.exercise-steps h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-arena-oscura);
    margin-bottom: 10px;
}

.exercise-steps ol {
    padding-left: 20px;
}

.exercise-steps li {
    font-size: 12.5px;
    list-style: decimal;
    margin-bottom: 8px;
    line-height: 1.5;
}

.timer-widget {
    background: linear-gradient(135deg, var(--color-burdeos), var(--color-burdeos-dark));
    border-radius: var(--border-radius-md);
    padding: 24px;
    text-align: center;
    color: var(--color-champaña);
    box-shadow: var(--shadow-md);
}

.timer-display {
    font-family: var(--font-accent);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-cobre-oro);
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.timer-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}

.btn-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 50px;
}

.btn-timer-start {
    background-color: var(--color-cobre-oro);
    color: var(--color-burdeos);
}

.btn-timer-start:hover {
    background-color: var(--color-cobre-oro-light);
    transform: translateY(-1px);
}

.btn-timer-reset {
    background-color: rgba(255,255,255,0.1);
    color: var(--color-champaña);
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
}

.btn-timer-reset:hover {
    background-color: rgba(255,255,255,0.2);
}

.audio-toggle-container {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 12px;
}

.audio-toggle-btn {
    font-size: 11px;
    color: var(--color-champaña);
    opacity: 0.8;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.audio-toggle-btn:hover {
    opacity: 1;
}

.audio-toggle-btn span {
    font-weight: 600;
    color: var(--color-cobre-oro);
}

/* 3. DIARIO DE GRATITUD */
.journal-intro {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 18px;
}

.journal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.journal-form textarea {
    font-family: var(--font-primary);
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(161, 136, 102, 0.25);
    border-radius: var(--border-radius-md);
    background-color: rgba(244, 237, 228, 0.4);
    font-size: 13.5px;
    color: var(--color-texto-oscuro);
    resize: none;
    outline: none;
    transition: var(--transition-fast);
}

.journal-form textarea:focus {
    border-color: var(--color-burdeos);
    background-color: var(--color-blanco-puro);
    box-shadow: 0 0 0 3px rgba(91, 20, 36, 0.05);
}

.btn-save-journal {
    padding: 12px 20px;
    font-size: 12px;
}

.journal-entries-container h4 {
    font-size: 14px;
    color: var(--color-arena-oscura);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(161, 136, 102, 0.1);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.journal-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 6px;
}

.journal-list::-webkit-scrollbar {
    width: 4px;
}

.journal-list::-webkit-scrollbar-track {
    background: transparent;
}

.journal-list::-webkit-scrollbar-thumb {
    background: var(--color-champaña-dark);
    border-radius: 4px;
}

.no-entries {
    font-size: 12px;
    color: var(--color-texto-oscuro);
    opacity: 0.5;
    text-align: center;
    padding: 20px 0;
}

.journal-entry {
    background-color: rgba(142, 110, 136, 0.05);
    border-left: 2.5px solid var(--color-malva);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    padding: 12px 14px;
    position: relative;
    animation: slideInDown 0.3s ease-out;
}

.entry-text {
    font-size: 12.5px;
    color: var(--color-texto-oscuro);
    margin-bottom: 6px;
    line-height: 1.5;
    font-style: italic;
}

.entry-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.entry-date {
    font-size: 10px;
    color: var(--color-arena-oscura);
    font-weight: 500;
}

.btn-delete-entry {
    font-size: 11px;
    color: var(--color-burdeos);
    opacity: 0.5;
}

.btn-delete-entry:hover {
    opacity: 1;
}

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


/* ==========================================================================
   CARRITO DE COMPRAS DRAWER (SLIDE-IN DESDE DERECHA)
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(91, 20, 36, 0.4);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
    backdrop-filter: blur(4px);
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--color-champaña);
    box-shadow: -10px 0 30px rgba(91, 20, 36, 0.15);
    z-index: 1002;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    padding: 24px 30px;
    border-bottom: 1px solid rgba(161, 136, 102, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-blanco-puro);
}

.cart-drawer-header h2 {
    font-size: 22px;
    color: var(--color-burdeos);
}

.close-cart-btn {
    font-size: 20px;
    color: var(--color-texto-oscuro);
}

.close-cart-btn:hover {
    color: var(--color-burdeos);
    transform: rotate(90deg);
}

.cart-drawer-body {
    flex-grow: 1;
    padding: 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.empty-cart-message {
    font-size: 14px;
    color: var(--color-texto-oscuro);
    opacity: 0.6;
    text-align: center;
    margin-top: 50%;
}

.cart-item {
    display: flex;
    gap: 16px;
    background-color: var(--color-blanco-puro);
    padding: 16px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(161, 136, 102, 0.1);
    box-shadow: var(--shadow-sm);
    animation: slideInDown 0.3s ease-out;
}

.cart-item-svg {
    width: 60px;
    height: 60px;
    background-color: var(--color-champaña);
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
}

.cart-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-info h4 {
    font-size: 14px;
    color: var(--color-burdeos);
    margin-bottom: 4px;
}

.cart-item-price {
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-cobre-oro);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(161, 136, 102, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
}

.qty-btn:hover {
    background-color: var(--color-burdeos);
    color: var(--color-champaña);
}

.qty-val {
    font-size: 13px;
    font-weight: 500;
}

.cart-item-remove {
    margin-left: auto;
    font-size: 14px;
    color: var(--color-arena-oscura);
}

.cart-item-remove:hover {
    color: var(--color-burdeos);
}

.cart-drawer-footer {
    padding: 24px 30px;
    background-color: var(--color-blanco-puro);
    border-top: 1px solid rgba(161, 136, 102, 0.15);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.cart-total-price {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-burdeos);
}

.cart-shipping-note {
    font-size: 11px;
    color: var(--color-arena-oscura);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.btn-checkout {
    width: 100%;
    padding: 16px;
}


/* ==========================================================================
   MODAL DE BIENVENIDA / COMPRA EXITOSA (ZONA 3 MOODBOARD EXACTO)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(55, 7, 17, 0.6);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.welcome-card-modal {
    background-color: var(--color-champaña); /* Arena suave orgánica */
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 520px;
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow-lg), 0 30px 60px rgba(55, 7, 17, 0.25);
    animation: zoomInModal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomInModal {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 26px;
    color: var(--color-arena-oscura);
}

.close-modal-btn:hover {
    color: var(--color-burdeos);
}

.modal-card-border {
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: center;
    background-color: var(--color-blanco-puro);
}

.modal-wheat-icon {
    width: 32px;
    height: 48px;
    margin: 0 auto 20px auto;
}

.ritual-title {
    font-size: 26px;
    color: var(--color-burdeos);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.ritual-thanks {
    font-family: var(--font-accent);
    font-size: 18px;
    color: var(--color-cobre-oro);
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 500;
}

.ritual-message {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--color-texto-oscuro);
    opacity: 0.85;
    margin-bottom: 24px;
}

.ritual-signature {
    font-size: 13px;
    color: var(--color-arena-oscura);
    line-height: 1.5;
    margin-bottom: 30px;
}

.ritual-signature strong {
    font-family: var(--font-accent);
    color: var(--color-burdeos);
    font-size: 15px;
}


/* ==========================================================================
   FOOTER DE LUJO
   ========================================================================== */
.luxury-footer {
    background-color: var(--color-burdeos-dark);
    color: var(--color-texto-claro);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(197, 160, 89, 0.25);
    position: relative;
    overflow: hidden;
}

.luxury-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-cobre-oro), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-title {
    color: var(--color-champaña);
}

.footer-brand .logo-subtitle {
    color: var(--color-cobre-oro);
}

.footer-desc {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.8;
    margin-top: 20px;
    max-width: 320px;
}

.footer-links h3, .footer-newsletter h3 {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-cobre-oro);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13.5px;
    opacity: 0.75;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-cobre-oro);
    transform: translateX(4px);
    display: inline-block;
}

.footer-newsletter p {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1.5px solid rgba(197, 160, 89, 0.4);
    padding-bottom: 8px;
}

.newsletter-form input {
    background: none;
    border: none;
    outline: none;
    color: var(--color-champaña);
    font-family: var(--font-primary);
    font-size: 13px;
    flex-grow: 1;
    padding-right: 10px;
}

.newsletter-form input::placeholder {
    color: rgba(244, 237, 228, 0.4);
}

.btn-newsletter {
    color: var(--color-cobre-oro);
    font-size: 16px;
}

.btn-newsletter:hover {
    color: var(--color-champaña);
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 11.5px;
    opacity: 0.45;
    letter-spacing: 0.5px;
}


/* ==========================================================================
   DISEÑO RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

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

    .hero-description {
        max-width: 100%;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .main-header {
        padding: 10px 0;
    }

    .main-nav {
        display: none; /* En un escenario real, tendríamos menú hamburguesa */
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}

.hidden-audio-player {
    display: none;
}

/* ==========================================================================
   SPA: SISTEMA DE PESTAÑAS (FADE-IN ANIMATION)
   ========================================================================== */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeInTab 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   PRODUCT SPOTLIGHT (SINGLE PRODUCT LAYOUT)
   ========================================================================== */
.product-spotlight-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background-color: var(--color-blanco-puro);
    border: 1px solid rgba(161, 136, 102, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    align-items: center;
    margin-top: 20px;
}

.spotlight-image-wrapper {
    width: 100%;
    height: 420px;
    background-color: rgba(244, 237, 228, 0.4);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(161, 136, 102, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.spotlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-spotlight-container:hover .spotlight-img {
    transform: scale(1.03);
}

.spotlight-info {
    display: flex;
    flex-direction: column;
}

.spotlight-name {
    font-size: 32px;
    color: var(--color-burdeos);
    margin-bottom: 12px;
}

.spotlight-price-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.spotlight-price {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-burdeos);
}

.shipping-badge {
    background-color: rgba(197, 160, 89, 0.12);
    color: var(--color-arena-oscura);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spotlight-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-texto-oscuro);
    opacity: 0.85;
    margin-bottom: 30px;
}

.spotlight-benefits-header {
    border-top: 1px solid rgba(161, 136, 102, 0.12);
    padding-top: 18px;
    margin-bottom: 12px;
}

.spotlight-benefits-header h4 {
    font-size: 16px;
    color: var(--color-burdeos);
}

.spotlight-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.benefit-item i {
    color: var(--color-cobre-oro);
    font-size: 14px;
    margin-top: 4px;
}

.benefit-item span {
    font-size: 13.5px;
    color: var(--color-texto-oscuro);
    line-height: 1.5;
}

.spotlight-quote {
    font-family: var(--font-accent);
    font-size: 14px;
    color: var(--color-arena-oscura);
    font-style: italic;
    border-left: 2px solid var(--color-cobre-oro);
    padding-left: 16px;
    margin: 15px 0 25px 0;
}

.spotlight-actions {
    display: flex;
    gap: 16px;
}

/* SPOTLIGHT EXTRA BLOCKS (MATERIALES / DISEÑO) */
.spotlight-extra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.extra-card {
    background-color: var(--color-blanco-puro);
    border: 1px solid rgba(161, 136, 102, 0.12);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
}

.extra-card h3 {
    font-size: 20px;
    color: var(--color-burdeos);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.extra-card h3 i {
    color: var(--color-cobre-oro);
}

.extra-desc {
    font-size: 14px;
    color: var(--color-texto-oscuro);
    opacity: 0.85;
    margin-bottom: 20px;
}

.technical-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.technical-list li {
    font-size: 13.5px;
    line-height: 1.6;
    border-left: 2px solid var(--color-cobre-oro);
    padding-left: 14px;
}

.technical-list li strong {
    display: block;
    color: var(--color-burdeos);
    margin-bottom: 4px;
}

.highlight-text {
    background-color: rgba(197, 160, 89, 0.08);
    font-weight: 500;
}

/* ==========================================================================
   RITUAL ENKNTO PAGE LAYOUT
   ========================================================================== */
.ritual-intro-block {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.ritual-welcome-text p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.instruction-box-zen {
    background-color: rgba(142, 110, 136, 0.08);
    border-left: 3px solid var(--color-malva);
    padding: 16px 20px;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    display: flex;
    gap: 14px;
    align-items: center;
}

.instruction-box-zen i {
    color: var(--color-malva);
    font-size: 20px;
}

.instruction-box-zen em {
    font-size: 14px;
    color: var(--color-texto-oscuro);
}

.in-the-box-card {
    background-color: var(--color-blanco-puro);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.in-the-box-card h3 {
    font-size: 18px;
    color: var(--color-burdeos);
    margin-bottom: 18px;
    border-bottom: 1.5px solid rgba(161, 136, 102, 0.15);
    padding-bottom: 10px;
}

.in-the-box-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.in-the-box-card li {
    font-size: 13.5px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.in-the-box-card li i {
    color: var(--color-cobre-oro);
    margin-top: 3px;
}

.prep-steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.prep-steps-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background-color: rgba(244, 237, 228, 0.3);
    border: 1px solid rgba(161, 136, 102, 0.08);
    padding: 14px;
    border-radius: var(--border-radius-md);
}

.step-num {
    background-color: var(--color-burdeos);
    color: var(--color-champaña);
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.step-content {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-texto-oscuro);
}

.step-content strong {
    color: var(--color-burdeos);
    display: block;
    margin-bottom: 3px;
}

.routine-intro-p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.checklist-interactive-section {
    border-top: 1px solid rgba(161, 136, 102, 0.15);
    padding-top: 24px;
    margin-top: 24px;
}

.checklist-interactive-section h4 {
    font-family: var(--font-accent);
    font-size: 16px;
    color: var(--color-burdeos);
    margin-bottom: 15px;
}

.ritual-tips-box {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
    padding-top: 20px;
    background-color: rgba(255,255,255,0.04);
    border-radius: var(--border-radius-md);
    padding: 20px;
    text-align: left;
}

.ritual-tips-box h4 {
    font-size: 14px;
    color: var(--color-cobre-oro);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.routine-tips-ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.routine-tips-ul li {
    font-size: 12.5px;
    color: var(--color-champaña);
    opacity: 0.85;
    position: relative;
    padding-left: 14px;
}

.routine-tips-ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-cobre-oro);
    font-size: 10px;
}

.closing-phrase {
    font-family: var(--font-accent);
    font-size: 14px;
    color: var(--color-cobre-oro);
    font-style: italic;
    text-align: center;
    border-top: 1.5px dashed rgba(255,255,255,0.15);
    padding-top: 14px;
}

/* ==========================================================================
   LA ESENCIA: PILARES FILOSÓFICOS Y MANIFIESTO
   ========================================================================== */
.manifesto-card {
    background-color: var(--color-blanco-puro);
    border: 1px solid rgba(161, 136, 102, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.manifesto-lead {
    font-family: var(--font-accent);
    font-size: 20px;
    color: var(--color-burdeos);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.manifesto-card p:not(.manifesto-lead) {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 24px;
}

.manifesto-badge {
    display: inline-block;
    background-color: rgba(91, 20, 36, 0.05);
    border: 1.5px solid var(--color-burdeos);
    color: var(--color-burdeos);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 24px;
    border-radius: 50px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background-color: var(--color-blanco-puro);
    border: 1px solid rgba(161, 136, 102, 0.15);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-medium);
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-cobre-oro);
    box-shadow: var(--shadow-md);
}

.pillar-num {
    font-family: var(--font-accent);
    font-size: 40px;
    color: rgba(91, 20, 36, 0.1);
    font-weight: 700;
    position: absolute;
    top: 20px;
    right: 30px;
}

.pillar-card h3 {
    font-size: 20px;
    color: var(--color-burdeos);
    margin-bottom: 15px;
    border-bottom: 1.5px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 8px;
    width: fit-content;
}

.pillar-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--color-texto-oscuro);
    opacity: 0.8;
}

/* ==========================================================================
   COMUNIDAD: TESTIMONIOS Y GALERÍA CROP
   ========================================================================== */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: var(--color-blanco-puro);
    border: 1px solid rgba(91, 20, 36, 0.08);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-rating {
    color: var(--color-cobre-oro);
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    color: var(--color-texto-oscuro);
    opacity: 0.9;
    margin-bottom: 20px;
}

.testimonial-user strong {
    font-family: var(--font-accent);
    font-size: 15px;
    color: var(--color-burdeos);
    display: block;
}

.testimonial-user span {
    font-size: 12px;
    color: var(--color-arena-oscura);
}

.gallery-wrapper {
    background-color: rgba(235, 220, 201, 0.25);
    border: 1px solid rgba(161, 136, 102, 0.12);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    margin-bottom: 50px;
}

.gallery-wrapper h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 8px;
}

.gallery-intro-p {
    font-size: 14px;
    text-align: center;
    color: var(--color-arena-oscura);
    margin-bottom: 30px;
}

.gallery-placeholder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.gallery-item-card {
    background-color: var(--color-blanco-puro);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(161, 136, 102, 0.1);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.item-visual-moodboard, .item-visual-moodboard2 {
    height: 220px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid rgba(161, 136, 102, 0.1);
}

.community-img-crop-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% 88%;
    transform: scale(2.0);
    transform-origin: 80% 88%;
}

.community-img-crop-2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 18% 54%;
    transform: scale(2.2);
    transform-origin: 18% 54%;
}

.gallery-item-card h4 {
    font-size: 16px;
    color: var(--color-burdeos);
    margin-bottom: 6px;
}

.gallery-item-card p {
    font-size: 12.5px;
    color: var(--color-arena-oscura);
}

.community-cta-box {
    background: linear-gradient(135deg, var(--color-burdeos), var(--color-burdeos-dark));
    color: var(--color-champaña);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.community-cta-box h3 {
    color: var(--color-champaña);
    font-size: 24px;
    margin-bottom: 10px;
}

.community-cta-box p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 24px;
}

/* ==========================================================================
   HABLEMOS: FORMULARIO DE CONTACTO, ACORDEÓN FAQS Y PRIVACIDAD
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card-form {
    background-color: var(--color-blanco-puro);
    border: 1px solid rgba(161, 136, 102, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-card-form h3, .contact-info-card h3 {
    font-size: 22px;
    color: var(--color-burdeos);
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-arena-oscura);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, .form-group textarea {
    font-family: var(--font-primary);
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(161, 136, 102, 0.25);
    border-radius: var(--border-radius-sm);
    background-color: rgba(244, 237, 228, 0.3);
    color: var(--color-texto-oscuro);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-burdeos);
    background-color: var(--color-blanco-puro);
    box-shadow: 0 0 0 3px rgba(91, 20, 36, 0.05);
}

.contact-info-card {
    background-color: var(--color-blanco-puro);
    border: 1px solid rgba(161, 136, 102, 0.12);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item-block i {
    font-size: 22px;
    color: var(--color-cobre-oro);
    margin-top: 4px;
}

.info-item-block strong {
    font-size: 14px;
    color: var(--color-burdeos);
    display: block;
    margin-bottom: 6px;
}

.info-item-block p, .info-item-block a {
    font-size: 13.5px;
    color: var(--color-texto-oscuro);
    opacity: 0.8;
    line-height: 1.6;
}

.email-link {
    color: var(--color-burdeos);
    font-weight: 500;
    border-bottom: 1px dashed var(--color-cobre-oro);
}

.email-link:hover {
    color: var(--color-cobre-oro);
}

.info-faq-ad {
    border-top: 1px solid rgba(161, 136, 102, 0.12);
    padding-top: 24px;
}

.info-faq-ad h4 {
    font-size: 15px;
    color: var(--color-burdeos);
    margin-bottom: 8px;
}

.info-faq-ad p {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
}

/* FAQ Accordion Section */
.faq-container-section {
    background-color: var(--color-blanco-puro);
    border: 1px solid rgba(161, 136, 102, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    margin-bottom: 50px;
}

.faq-title-heading {
    font-size: 26px;
    text-align: center;
    margin-bottom: 40px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-bottom: 1px solid rgba(161, 136, 102, 0.12);
    padding-bottom: 16px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-accent);
    font-size: 18px;
    color: var(--color-burdeos);
    font-weight: 600;
    padding: 8px 0;
}

.faq-question i {
    font-size: 14px;
    color: var(--color-arena-oscura);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--color-burdeos);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-texto-oscuro);
    opacity: 0.8;
    padding-top: 10px;
}

/* Privacy section */
.privacy-section-block {
    text-align: center;
    margin-top: 30px;
}

.btn-privacy-toggle {
    font-size: 13px;
    color: var(--color-arena-oscura);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px dashed var(--color-arena-oscura);
    padding-bottom: 4px;
}

.btn-privacy-toggle:hover {
    color: var(--color-burdeos);
    border-color: var(--color-burdeos);
}

.privacy-policy-content-hidden {
    display: none;
}

.privacy-policy-content-visible {
    display: block;
    animation: slideInDown 0.3s ease-out;
    margin-top: 24px;
    text-align: left;
}

.privacy-inner {
    background-color: var(--color-blanco-puro);
    border: 1px solid rgba(161, 136, 102, 0.15);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    max-height: 400px;
    overflow-y: auto;
}

.privacy-inner h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.privacy-inner h5 {
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--color-burdeos);
}

.privacy-inner ul, .privacy-inner ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-inner li {
    list-style: disc;
    font-size: 13px;
    margin-bottom: 6px;
    opacity: 0.8;
}

.privacy-inner ol li {
    list-style: decimal;
}

.privacy-inner p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* ==========================================================================
   NUEVA REJILLA DE DOS COLUMNAS PARA EL RITUAL (SIN TIMER NI DIARIO)
   ========================================================================== */
.dashboard-grid-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* ==========================================================================
   RECOMENDACIONES CLAVE EN CONTRASTE LEGIBLE
   ========================================================================== */
.ritual-tips-box-readable {
    margin-top: 30px;
    background-color: #F4EDE4; /* Fondo champaña de excelente visibilidad */
    border: 1px solid rgba(91, 20, 36, 0.15); /* Bordes burdeos suaves */
    border-radius: var(--border-radius-md);
    padding: 24px 30px;
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.ritual-tips-box-readable h4 {
    font-size: 15px;
    color: var(--color-burdeos);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-bottom: 1.5px solid rgba(91, 20, 36, 0.1);
    padding-bottom: 8px;
}

.routine-tips-ul-readable {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.routine-tips-ul-readable li {
    font-size: 13.5px;
    color: var(--color-texto-oscuro);
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.routine-tips-ul-readable li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-burdeos); /* Bullet en burdeos legible */
    font-size: 12px;
}

.closing-phrase-readable {
    font-family: var(--font-accent);
    font-size: 14.5px;
    color: var(--color-burdeos);
    font-weight: 600;
    font-style: italic;
    text-align: center;
    border-top: 1px dashed rgba(91, 20, 36, 0.15);
    padding-top: 14px;
    margin-top: 14px;
}

/* ==========================================================================
   MI EXPERIENCIA CON LA PESA FACIAL (STORY LAYOUT)
   ========================================================================== */
.story-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: flex-start;
    margin-top: 40px;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.story-content p {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--color-texto-oscuro);
    opacity: 0.9;
}

.story-highlight {
    font-family: var(--font-accent);
    font-size: 20px;
    color: var(--color-burdeos) !important;
    line-height: 1.6;
    font-style: italic;
    opacity: 1 !important;
    border-left: 3px solid var(--color-cobre-oro);
    padding-left: 20px;
    margin-bottom: 10px;
}

.experience-results-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 15px;
    background-color: rgba(244, 237, 228, 0.5);
    border: 1px solid rgba(161, 136, 102, 0.15);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.result-bullet {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.result-bullet i {
    color: var(--color-burdeos);
    font-size: 16px;
    margin-top: 3px;
}

.result-bullet span {
    font-size: 13.5px;
    color: var(--color-texto-oscuro);
    font-weight: 500;
    line-height: 1.6;
}

.story-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-img-frame {
    height: 320px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--color-cobre-oro);
    box-shadow: var(--shadow-md);
}

.story-img-crop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 12%;
    transform: scale(1.6);
    transform-origin: 50% 12%;
    transition: var(--transition-slow);
}

.story-img-frame:hover .story-img-crop {
    transform: scale(1.65);
}

.story-quote-card {
    background-color: var(--color-blanco-puro);
    border: 1px solid rgba(91, 20, 36, 0.1);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
}

.story-quote-card i {
    color: var(--color-cobre-oro);
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
}

.story-quote-card p {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 14.5px;
    color: var(--color-burdeos);
    line-height: 1.6;
    font-weight: 500;
}

/* ==========================================================================
   REDES SOCIALES EN FOOTER
   ========================================================================== */
.social-links-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.social-link-item {
    color: var(--color-champaña);
    opacity: 0.85;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.social-link-item:hover {
    color: var(--color-cobre-oro);
    opacity: 1;
    transform: translateX(4px);
}

.social-link-item i {
    color: var(--color-cobre-oro);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* ==========================================================================
   JUSTIFICACIÓN DE TEXTO GENERAL
   ========================================================================== */
.justify-text {
    text-align: justify;
    text-justify: inter-word;
}

/* ==========================================================================
   IMÁGENES DUALES DE HERO EN INICIO
   ========================================================================== */
.hero-dual-images-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.hero-dual-card {
    background-color: var(--color-blanco-puro);
    border: 1px solid rgba(161, 136, 102, 0.15);
    border-radius: var(--border-radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.hero-dual-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-cobre-oro);
    box-shadow: var(--shadow-md);
}

.hero-dual-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.hero-dual-info {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.hero-dual-info h3 {
    font-size: 16px;
    color: var(--color-burdeos);
    margin: 0;
}

.hero-dual-info p {
    font-size: 12.5px;
    color: var(--color-texto-oscuro);
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   PÁGINA PESA FACIAL: REEMPLAZO DE BENEFICIOS Y DISEÑO
   ========================================================================== */
.materials-spotlight-photo-card {
    background-color: var(--color-champaña-light);
    border: 1px solid rgba(161, 136, 102, 0.15);
    border-radius: var(--border-radius-md);
    padding: 16px;
    margin-top: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.materials-card-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(161, 136, 102, 0.1);
    background-color: rgba(244, 237, 228, 0.3);
    padding: 10px;
}

.materials-photo-caption {
    font-size: 13px;
    color: var(--color-texto-oscuro);
    margin-top: 10px;
    opacity: 0.85;
    line-height: 1.5;
}

.design-kitchen-photo-container {
    margin-top: 20px;
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(161, 136, 102, 0.15);
}

.design-kitchen-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.design-photo-overlay-caption {
    background-color: rgba(91, 20, 36, 0.85);
    color: var(--color-champaña);
    padding: 12px 16px;
    font-size: 12.5px;
    line-height: 1.4;
}

/* ==========================================================================
   NUEVA PESTAÑA: EJERCICIOS
   ========================================================================== */
.exercises-intro-ad-card {
    background-color: #F4EDE4;
    border: 1px solid rgba(91, 20, 36, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.exercises-intro-ad-card h3 {
    font-size: 20px;
    color: var(--color-burdeos);
    margin-bottom: 20px;
    border-bottom: 1.5px solid rgba(91, 20, 36, 0.1);
    padding-bottom: 8px;
}

.exercises-intro-ad-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-texto-oscuro);
    margin-bottom: 15px;
}

.exercises-intro-ad-card p:last-child {
    margin-bottom: 0;
}

.exercise-sections-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.exercise-phase-block {
    background-color: var(--color-blanco-puro);
    border: 1px solid rgba(161, 136, 102, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.phase-header-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 12px;
}

.phase-number {
    font-family: var(--font-accent);
    font-size: 36px;
    font-weight: 700;
    color: rgba(91, 20, 36, 0.15);
}

.phase-header-title h2 {
    font-size: 24px;
    color: var(--color-burdeos);
    margin: 0;
}

.phase-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--color-texto-oscuro);
    margin-bottom: 30px;
    opacity: 0.9;
}

.exercise-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.exercise-detail-grid-three {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.exercise-detail-card {
    background-color: rgba(244, 237, 228, 0.3);
    border: 1px solid rgba(161, 136, 102, 0.12);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.exercise-detail-card h3 {
    font-size: 18px;
    color: var(--color-burdeos);
    margin-bottom: 12px;
}

.exercise-detail-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--color-texto-oscuro);
    margin-bottom: 16px;
    flex-grow: 1;
}

.rep-indicator {
    display: inline-block;
    background-color: rgba(91, 20, 36, 0.05);
    color: var(--color-burdeos);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    text-align: center;
}

.video-placeholder-box {
    width: 100%;
    height: 160px;
    background-color: rgba(91, 20, 36, 0.04);
    border: 1px dashed rgba(161, 136, 102, 0.3);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition-fast);
}

.video-placeholder-box:hover {
    background-color: rgba(91, 20, 36, 0.08);
    border-color: var(--color-cobre-oro);
}

.video-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--color-burdeos);
}

.video-mockup i {
    font-size: 32px;
    color: var(--color-cobre-oro);
    transition: var(--transition-fast);
}

.video-placeholder-box:hover .video-mockup i {
    transform: scale(1.1);
    color: var(--color-burdeos);
}

.video-mockup span {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

/* ==========================================================================
   MI EXPERIENCIA: EVOLUCIÓN ANTES/DESPUÉS Y FRASE RECUADRO
   ========================================================================== */
.evolution-section-block {
    margin-top: 60px;
    border-top: 1px solid rgba(161, 136, 102, 0.2);
    padding-top: 40px;
}

.evolution-divider-title {
    margin-bottom: 30px;
}

.evolution-divider-title h2 {
    font-size: 22px;
    color: var(--color-burdeos);
    border-bottom: 1.5px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 8px;
    display: inline-block;
}

.evolution-two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.evolution-photo-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.photo-frame-comparison {
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--color-cobre-oro);
    box-shadow: var(--shadow-md);
}

.comparison-img-item {
    width: 100%;
    display: block;
}

.phrase-comparison-box {
    background-color: var(--color-champaña);
    border: 1px solid rgba(91, 20, 36, 0.15);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.phrase-comparison-box p {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 14.5px;
    color: var(--color-burdeos);
    font-weight: 600;
    margin: 0;
}

.evolution-text-box p {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--color-texto-oscuro);
    margin-bottom: 16px;
    opacity: 0.9;
}

/* ==========================================================================
   RESPONSIVIDAD ADICIONAL PARA NUEVAS SECCIONES
   ========================================================================== */
@media (max-width: 992px) {
    .contact-grid, .dashboard-grid-two-columns, .story-container, .hero-dual-images-container, .evolution-two-column-grid, .exercise-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .exercise-detail-grid-three {
        grid-template-columns: 1fr;
    }
    
    .story-container {
        gap: 30px;
    }
    
    .hero-dual-images-container {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .gallery-placeholder-grid {
        grid-template-columns: 1fr;
    }
    
    .item-visual-moodboard, .item-visual-moodboard2 {
        height: 180px;
    }
    
    .manifesto-card, .faq-container-section, .privacy-inner, .exercises-intro-ad-card, .exercise-phase-block {
        padding: 24px;
    }
    
    .spotlight-extra-grid {
        grid-template-columns: 1fr;
    }
    
    .story-img-frame {
        height: 240px;
    }
}

/* ==========================================================================
   DISEÑO DE IMAGEN DE HÉROE ÚNICA (MANCUERNA)
   ========================================================================== */
.hero-single-card {
    background-color: transparent;
    border: none;
    border-radius: var(--border-radius-lg);
    padding: 0;
    box-shadow: none;
    text-align: center;
    transition: var(--transition-medium);
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.hero-single-card:hover {
    transform: translateY(-5px);
}

.hero-single-img {
    width: 100%;
    height: 520px; /* Aumentamos ligeramente el alto para que luzca imponente */
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg); /* Sombra elegante directamente a la imagen */
}

.hero-single-info {
    margin-top: 16px;
}

.hero-single-info h3 {
    font-size: 18px;
    color: var(--color-burdeos);
    margin-bottom: 8px;
}

.hero-single-info p {
    font-size: 13.5px;
    color: var(--color-texto-oscuro);
    opacity: 0.85;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   LOGO REDONDO EN INICIO
   ========================================================================== */
.logo-hero-container {
    margin-bottom: 24px;
}

.hero-round-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-cobre-oro);
    box-shadow: var(--shadow-sm);
    background-color: var(--color-blanco-puro);
}

/* ==========================================================================
   FOTO DE DESPIECE DE ANATOMÍA (FOTO 2)
   ========================================================================== */
.anatomy-image-container {
    margin-top: 20px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(161, 136, 102, 0.15);
    background-color: var(--color-blanco-puro);
    padding: 16px;
}

.anatomy-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 520px;
    margin: 0 auto;
}

/* ==========================================================================
   ESPIGA DEL LOGO COMO VIÑETA (ESTILO PERSONALIZADO)
   ========================================================================== */
.espiga-list {
    list-style: none;
    padding-left: 0 !important;
}

.espiga-list li {
    position: relative;
    padding-left: 28px !important;
    margin-bottom: 12px;
    list-style-type: none !important;
}

.espiga-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 150" xmlns="http://www.w3.org/2000/svg"><path d="M50 135 C50 135 50 110 50 95" stroke="%23C5A059" stroke-width="12" stroke-linecap="round" fill="none"/><path d="M50 110 C35 95, 35 80, 50 65 C65 80, 65 95, 50 110 Z" stroke="%23C5A059" stroke-width="12" fill="none"/><path d="M50 85 C35 70, 35 55, 50 40 C65 55, 65 70, 50 85 Z" stroke="%23C5A059" stroke-width="12" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
}

/* ==========================================================================
   BOTÓN DE COMPRA ATRACTIVO EN CATALOGO
   ========================================================================== */
.btn-spotlight-buy-atr {
    background: linear-gradient(135deg, var(--color-burdeos) 0%, var(--color-cobre-oro) 100%);
    color: var(--color-champaña);
    border: none;
    border-radius: var(--border-radius-md);
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(91, 20, 36, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-spotlight-buy-atr:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(91, 20, 36, 0.4);
    background: linear-gradient(135deg, var(--color-cobre-oro) 0%, var(--color-burdeos) 100%);
}

.btn-spotlight-buy-atr i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.btn-spotlight-buy-atr:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   DISEÑO DE REEMPLAZO DE LOGOTIPO EN EL HERO
   ========================================================================== */
.hero-logo-replacement {
    margin-bottom: 30px;
    text-align: left;
}

.hero-logo-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    display: block;
}

/* ==========================================================================
   ESTILOS DE LOGO DEL FOOTER (RESTAURADOS)
   ========================================================================== */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 32px;
    height: 48px;
    display: block;
    transform-origin: center bottom;
    transition: var(--transition-medium);
}

.logo-wrapper:hover .brand-icon {
    transform: scale(1.08) rotate(3deg);
}


