:root {
    --bg-gradient: linear-gradient(135deg, #fcfdfd 0%, #f4f8f5 100%);
    --primary-deep: #11261b;
    --primary-forest: #1b3b2b;
    --accent-green: #234e35;
    --mint-soft: #eef5f0;
    --text-muted: #557062;
    --border-subtle: rgba(35, 78, 53, 0.08);
    --amber-accent: #b9812f;
    --amber-soft: #fbf3e6;
    --amber-text: #8a5f1f;
    --burgundy-accent: #6d2a22;
    --burgundy-soft: #f7ece9;
    --orange-accent: #d9640c;
    --orange-soft: #fdf0e4;
    --orange-text: #b3520a;
    --celeste-accent: #1f6f8b;
    --celeste-soft: #e9f4f8;
    --celeste-text: #175468;
    --gris-accent: #55606a;
    --gris-soft: #f0f1f3;
    --gris-text: #3c454d;
    --rosa-accent: #b5486f;
    --rosa-soft: #fbeef3;
    --rosa-text: #8a3554;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg-gradient);
    color: var(--primary-deep);
    overflow-x: hidden;
    line-height: 1.5;
}

/* HEADER ESTILO APPLE */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 60px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 1.3rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-text strong { font-family: Georgia, 'Times New Roman', serif; font-size: 1.25rem; letter-spacing: 1.5px; color: var(--primary-forest); display: block; line-height: 1; }
.logo-text small { font-size: 0.55rem; color: var(--text-muted); letter-spacing: 0.3px; }

.main-nav { display: flex; gap: 32px; }
.main-nav a { text-decoration: none; color: var(--text-muted); font-size: 0.85rem; font-weight: 500; transition: color 0.2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--primary-forest); font-weight: 600; }

/* BOTÓN HAMBURGUESA (solo mobile/tablet) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid rgba(35, 78, 53, 0.15);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--primary-forest);
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn-whatsapp-nav {
    background-color: var(--accent-green);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.btn-whatsapp-nav:hover { transform: translateY(-1px); background-color: var(--primary-forest); }

/* SECCIÓN HERO UNIFICADA */
.hero-section {
    padding: 30px 40px;
    background: transparent;
    display: flex;
    justify-content: center;
}

.hero-unified-container {
    position: relative;
    max-width: 1250px;
    margin: 0 auto;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* LA IMAGEN OCUPA TODO EL ANCHO DEL HERO, DE FONDO */
.hero-image-side {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.organic-glow {
    display: none; /* el propio jpg ya trae el degradado/luces, no hace falta un glow extra */
}

.fused-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.fused-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 28% center; /* el hongo queda a la izquierda, igual que en la referencia */
}

/* COLUMNA DERECHA: TEXTOS SOBRE LA ZONA CLARA DE LA FOTO */
.hero-content-side {
    position: relative;
    z-index: 2;
    width: 52%;
    margin-left: 46%;
    padding: 10px 0;
    background: transparent;
}

.badge-top {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(238, 245, 240, 0.9);
    color: var(--accent-green);
    border: 1px solid rgba(35, 78, 53, 0.12);
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.hero-content-side h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.3rem;
    line-height: 1.15;
    color: var(--primary-deep);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0;
}

.hero-content-side .title-big {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.7rem;
    color: var(--primary-forest);
    letter-spacing: 0;
    font-weight: 700;
}

.hero-content-side p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.feature-col {
    background: transparent;
    padding: 0;
    text-align: center;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease;
}
.feature-col:hover { transform: translateY(-2px); }

.f-icon {
    color: var(--accent-green);
    margin-bottom: 6px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-green);
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.f-icon svg { width: 22px; height: 22px; }
.feature-col span { font-size: 0.62rem; color: var(--primary-deep); font-weight: 600; line-height: 1.25; display: block; }

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

/* BOTONES PREMIUM */
.btn-primary-custom, .btn-secondary-custom {
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    flex: none;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.3px;
}

.btn-primary-custom {
    background-color: var(--accent-green);
    color: #fff;
    box-shadow: 0 4px 14px rgba(35, 78, 53, 0.2);
}
.btn-primary-custom:hover {
    background-color: var(--primary-forest);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 78, 53, 0.3);
}

.btn-secondary-custom {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    color: var(--accent-green);
    border: 1px solid rgba(35, 78, 53, 0.2);
}
.btn-secondary-custom:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.stars { color: #f59e0b; letter-spacing: 3px; font-size: 0.85rem; }
.rating-box span { font-size: 0.78rem; font-weight: 600; color: var(--primary-deep); }

.tech-box {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    max-width: 480px;
}

.tech-icon {
    flex: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mint-soft);
    border: 1px solid rgba(35, 78, 53, 0.15);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tech-icon svg { width: 19px; height: 19px; }
.tech-info { display: flex; flex-direction: column; gap: 2px; }
.tech-info strong { font-size: 0.82rem; color: var(--primary-deep); font-weight: 700; line-height: 1.3; }
.tech-info span { font-size: 0.74rem; color: var(--text-muted); }
.tech-seal {
    margin-left: auto;
    flex: none;
    font-size: 0.5rem;
    font-weight: 700;
    border: 1px dashed var(--accent-green);
    color: var(--accent-green);
    padding: 6px 8px;
    border-radius: 50%;
    text-align: center;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.15;
    background: rgba(255, 255, 255, 0.5);
}

/* SECCIONES INFERIORES */
.section-wrapper {
    max-width: 1250px;
    margin: 50px auto;
    padding: 0 40px;
}

.minimal-features-bar, .protocol-card-clean, .bottom-banner-clean {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 15px 40px rgba(17, 38, 27, 0.06);
}

.row-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.rf-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.rf-icon { color: var(--accent-green); display: inline-flex; flex: none; }
.rf-icon svg { width: 34px; height: 34px; }
.rf-item div { display: flex; flex-direction: column; }
.rf-item strong { font-size: 0.92rem; color: var(--primary-deep); letter-spacing: 0.3px; font-weight: 700; }
.rf-item small { font-size: 0.76rem; color: var(--text-muted); }

.protocol-card-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
}

.proto-left { display: flex; align-items: center; gap: 22px; }
.p-icon-circle { color: var(--accent-green); background: var(--mint-soft); width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(35, 78, 53, 0.1); flex: none; }
.p-icon-circle svg { width: 32px; height: 32px; }
.proto-tag { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; }
.proto-left h3 { font-size: 1.9rem; color: var(--primary-deep); font-weight: 800; margin: 2px 0; }
.proto-left p { font-size: 0.95rem; color: var(--text-muted); }

.proto-steps { display: flex; align-items: center; gap: 30px; }
.p-step { text-align: center; display: flex; flex-direction: column; align-items: center; }
.ps-ico-circle {
    color: var(--accent-green);
    margin-bottom: 8px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(238,245,240,0.6) 100%);
    box-shadow: 0 6px 16px rgba(35, 78, 53, 0.1);
}
.ps-ico-circle svg { width: 28px; height: 28px; }
.p-step strong { font-size: 0.92rem; color: var(--primary-deep); letter-spacing: 0.3px; }
.p-step small { font-size: 0.82rem; color: var(--text-muted); }
.p-arrow { font-size: 1.6rem; color: #a3b8ad; font-weight: 300; }

/* BENEFICIOS MINIMALISTAS */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.b-card {
    background: transparent;
    border: none;
    padding: 20px 10px;
    text-align: center;
    transition: transform 0.2s ease;
}
.b-card:hover { transform: translateY(-4px); }

.bc-ico { color: var(--accent-green); margin-bottom: 14px; display: flex; justify-content: center; }
.bc-ico svg { width: 38px; height: 38px; }
.b-card h3 { font-size: 0.98rem; color: var(--primary-deep); margin-bottom: 8px; font-weight: 700; letter-spacing: 0.5px; }
.b-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.45; }

/* CATÁLOGO PREMIUM */
.catalog-section { margin-top: 80px; }
.catalog-title { text-align: center; margin-bottom: 40px; }
.catalog-title small { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); letter-spacing: 2px; display: block; margin-bottom: 8px; }
.catalog-title h2 { font-size: 2.2rem; color: var(--primary-deep); font-weight: 800; letter-spacing: -0.5px; }
.catalog-authority {
    margin-top: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-green);
    letter-spacing: 0.2px;
}

/* Encabezado introductorio de la sección Beneficios */
.benefits-intro-text {
    max-width: 640px;
    margin: 16px auto 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Hongo/adaptógeno responsable de cada beneficio */
.b-source {
    display: block;
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 0.2px;
}

/* Nota técnica y sello, al pie de la sección de beneficios */
.benefits-footnote { margin-top: 36px; }
.benefits-tech-box {
    margin: 20px auto 0;
    max-width: 520px;
}

.products-grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.prod-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.prod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.prod-img {
    position: relative;
    width: 100%;
    height: 260px;
    background: var(--mint-soft);
    overflow: hidden;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.prod-card:hover .prod-img img { transform: scale(1.04); }

.badge-brand {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 5px 10px;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 6px;
    color: var(--accent-green);
    z-index: 2;
    letter-spacing: 0.5px;
}

.prod-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.prod-content h3 {
    font-size: 1.25rem;
    color: var(--primary-deep);
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.prod-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    flex: 1;
    line-height: 1.55;
}

.badge-fruiting-body {
    display: inline-block;
    align-self: center;
    margin-bottom: 18px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--accent-green);
    background: var(--mint-soft);
    border: 1px solid rgba(35, 78, 53, 0.18);
    border-radius: 30px;
}

.btn-card-prod {
    background-color: var(--accent-green);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.2s ease;
}
.btn-card-prod:hover { background-color: var(--primary-forest); }

.bottom-banner-clean {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 35px;
}

.bottom-banner-clean span { font-size: 0.95rem; font-weight: 600; color: var(--accent-green); letter-spacing: 0.2px; }
.btn-all {
    background-color: var(--accent-green);
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}
.btn-all:hover { background-color: var(--primary-forest); transform: translateY(-1px); }

/* RESPONSIVO */
@media (max-width: 1024px) {
    .site-header { padding: 16px 24px; }
    .hero-unified-container { flex-direction: column; min-height: 0; }
    .hero-image-side { position: relative; inset: auto; height: 340px; margin-bottom: 24px; border-radius: 20px; overflow: hidden; }
    .hero-content-side { width: 100%; padding: 0; text-align: center; margin-left: 0; }
    .badge-top { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .rating-box { justify-content: center; }
    .tech-box { text-align: left; margin: 0 auto; }
    .row-features { justify-content: center; gap: 22px 32px; }
    .rf-item { border-right: none; }
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid-box { grid-template-columns: repeat(2, 1fr); }
    .protocol-card-clean { flex-direction: column; gap: 24px; text-align: center; }
    .proto-left { flex-direction: column; text-align: center; }

    /* NAV MOBILE: panel desplegable en vez de desaparecer */
    .site-header { flex-wrap: wrap; }
    .nav-toggle { display: flex; order: 2; }
    .btn-whatsapp-nav { order: 3; }
    .main-nav {
        order: 4;
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.3s ease;
        margin-top: 0;
    }
    .main-nav.is-open {
        max-height: 400px;
        opacity: 1;
        margin-top: 16px;
    }
    .main-nav a {
        width: 100%;
        padding: 12px 4px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-features { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid-box { grid-template-columns: 1fr; }
    .bottom-banner-clean { flex-direction: column; gap: 16px; text-align: center; }
    .section-wrapper { padding: 0 20px; }
}

/* Nota técnica: "agitar antes de usar" — formato de aviso de laboratorio, legible pero compacto */
.proto-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 760px;
    margin: 16px auto 0;
    padding: 12px 18px;
    background: var(--mint-soft);
    border: 1px solid rgba(35, 78, 53, 0.15);
    border-left: 3px solid var(--accent-green);
    border-radius: 10px;
    font-size: 0.85rem;
    line-height: 1.55;
    letter-spacing: 0.1px;
    color: var(--primary-deep);
}
.proto-note svg {
    flex: none;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--accent-green);
}
.proto-note strong {
    font-weight: 700;
    color: var(--primary-forest);
}

/* ============================================================
   BLOQUE SEO / ACCESIBILIDAD — usa las mismas variables, radios
   y sombras que el resto del sitio para no romper la estética.
   ============================================================ */

/* Accesibilidad: oculta visualmente pero deja disponible para lectores de pantalla / SEO */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Skip-link: invisible hasta recibir foco por teclado */
.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    background: var(--primary-forest);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 2000;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* Foco visible por teclado en todos los elementos interactivos (no altera el estado normal) */
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid var(--accent-green);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Texto SEO introductorio: mismo estilo de tarjeta que .minimal-features-bar */
.intro-seo-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 34px 40px;
    box-shadow: 0 15px 40px rgba(17, 38, 27, 0.06);
}
.intro-seo-card h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--primary-forest);
    font-weight: 700;
    margin-bottom: 14px;
}
.intro-seo-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.intro-seo-card p:last-child { margin-bottom: 0; }
.intro-seo-card strong { color: var(--primary-deep); }
.intro-seo-card a { color: var(--accent-green); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(35,78,53,0.3); }
.intro-seo-card a:hover { color: var(--primary-forest); border-color: var(--primary-forest); }

/* Tabla comparativa "Cómo elegir" */
.compare-title-block h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 800;
}
.compare-table-wrap {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 15px 40px rgba(17, 38, 27, 0.06);
    overflow-x: auto;
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 1.02rem; }
.compare-table th, .compare-table td { text-align: left; padding: 20px 24px; }
.compare-table thead th {
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-subtle);
}
.compare-table tbody tr:not(:last-child) td,
.compare-table tbody tr:not(:last-child) th { border-bottom: 1px solid var(--border-subtle); }
.compare-table tbody th {
    color: var(--primary-deep);
    font-weight: 700;
    font-size: 1.05rem;
}
.compare-table tbody th a { color: var(--primary-forest); text-decoration: none; }
.compare-table tbody th a:hover { text-decoration: underline; }
.compare-table tbody td { color: var(--text-muted); }

/* Guía de Selección agrupada por categoría — encabezados pastel + acento lateral por fila */
.cat-header-row th {
    padding: 12px 24px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: none !important;
}
.cat-group tr:not(.cat-header-row) th:first-child { border-left: 3px solid transparent; padding-left: 21px; }

.cat-celeste .cat-header-row th { background: var(--celeste-soft); color: var(--celeste-text); }
.cat-celeste tr:not(.cat-header-row) th:first-child { border-left-color: var(--celeste-accent); }

.cat-amber .cat-header-row th { background: var(--amber-soft); color: var(--amber-text); }
.cat-amber tr:not(.cat-header-row) th:first-child { border-left-color: var(--amber-accent); }

.cat-verde .cat-header-row th { background: var(--mint-soft); color: var(--accent-green); }
.cat-verde tr:not(.cat-header-row) th:first-child { border-left-color: var(--accent-green); }

.cat-gris .cat-header-row th { background: var(--gris-soft); color: var(--gris-text); }
.cat-gris tr:not(.cat-header-row) th:first-child { border-left-color: var(--gris-accent); }

.cat-rosa .cat-header-row th { background: var(--rosa-soft); color: var(--rosa-text); }
.cat-rosa tr:not(.cat-header-row) th:first-child { border-left-color: var(--rosa-accent); }

/* Notas debajo de la tabla + sello, más espacio de aire */
.compare-note { margin-top: 18px; font-size: 0.95rem; }
.compare-note:first-of-type { margin-top: 24px; }
.compare-note-amber {
    background: var(--amber-soft);
    border-color: rgba(185, 129, 47, 0.25);
    border-left-color: var(--amber-accent);
}
.compare-note-amber svg { color: var(--amber-accent); }
.compare-note-amber strong { color: #8a5f1f; }
.compare-tech-box { margin: 26px auto 0; max-width: 560px; }

/* FAQ: <details>/<summary> con el mismo lenguaje visual de tarjetas, tipografía grande y audaz */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-block-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--accent-green);
    text-transform: uppercase;
    margin: 8px 0 -2px 4px;
}
.faq-block-label-b { margin-top: 20px; }
.faq-sublist {
    margin: 14px 0 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-sublist li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}
.faq-sublist strong { color: var(--primary-deep); }
.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 10px 30px rgba(17, 38, 27, 0.05);
}
.faq-item summary {
    cursor: pointer;
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.4;
    color: var(--primary-forest);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    flex: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--mint-soft);
    font-size: 1.5rem;
    color: var(--accent-green);
    font-weight: 400;
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}
.faq-highlight {
    color: var(--amber-text);
    font-weight: 700;
}

/* Sello final de la sección FAQ */
.faq-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 32px auto 0;
    padding: 14px 28px;
    max-width: fit-content;
    background: var(--mint-soft);
    border: 1px solid rgba(35, 78, 53, 0.15);
    border-radius: 50px;
    color: var(--primary-forest);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.faq-seal svg { width: 20px; height: 20px; flex: none; color: var(--accent-green); }

@media (max-width: 768px) {
    .intro-seo-card { padding: 24px 22px; }
    .compare-table { font-size: 0.88rem; }
    .compare-table th, .compare-table td { padding: 14px 16px; }
    .compare-table tbody th { font-size: 0.9rem; }
    .compare-title-block h2 { font-size: 1.9rem; }
    .faq-item { padding: 18px 20px; }
    .faq-item summary { font-size: 1rem; }
    .faq-item p { font-size: 0.9rem; }
    .faq-seal { text-align: center; padding: 12px 20px; font-size: 0.85rem; }
}

/* ============================================================
   BLOQUES DE CIERRE — Puente al catálogo, Diferencial de proceso,
   Footer de respaldo. Tipografía grande (18px+ / 24px+ en títulos)
   y mucho aire entre bloques, según especificación.
   ============================================================ */

/* Bloque 1: Puente al catálogo completo */
.bridge-card {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 40px;
    background: linear-gradient(135deg, var(--mint-soft) 0%, var(--amber-soft) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(17, 38, 27, 0.06);
}
.bridge-card h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.2rem;
    line-height: 1.25;
    color: var(--primary-forest);
    font-weight: 700;
    margin-bottom: 18px;
}
.bridge-card p {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.btn-amber {
    display: inline-block;
    background-color: var(--amber-text);
    color: #fff;
    padding: 16px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 22px rgba(185, 129, 47, 0.3);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-amber:hover {
    background-color: #6e4a18;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(185, 129, 47, 0.4);
}

/* Bloque 2: Diferencial de proceso — 3 tarjetas grandes */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
/* Variante para "Nuestra Materia Prima": fila horizontal de 5, no lista vertical */
.authority-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.authority-grid .process-card {
    padding: 28px 20px;
    text-align: center;
}
.authority-grid .process-icon { margin-left: auto; margin-right: auto; }
.process-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 15px 40px rgba(17, 38, 27, 0.05);
}
.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--mint-soft);
    border: 1px solid rgba(35, 78, 53, 0.15);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.process-icon svg { width: 28px; height: 28px; }
.process-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: var(--primary-forest);
    margin-bottom: 14px;
}
.process-card p {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* Bloque 3: Footer de respaldo farmacéutico y seguridad */
.site-footer {
    background: var(--mint-soft);
    border-top: 1px solid var(--border-subtle);
    padding: 56px 0 40px;
    margin-top: 60px;
}
.footer-trust {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(35, 78, 53, 0.12);
}
.footer-authority {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    color: var(--primary-forest);
    flex: 1 1 320px;
}
.footer-authority svg { width: 26px; height: 26px; flex: none; color: var(--accent-green); }
.footer-authority strong { color: var(--primary-deep); }
.footer-disclaimer {
    flex: 1 1 380px;
    max-width: 480px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
}
.footer-disclaimer strong { color: var(--primary-deep); }
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .process-grid { grid-template-columns: 1fr; }
    .authority-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-trust { flex-direction: column; text-align: left; }
    .footer-disclaimer { max-width: 100%; }
}

@media (max-width: 640px) {
    .authority-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .bridge-card { padding: 40px 24px; }
    .bridge-card h2 { font-size: 1.7rem; }
}

/* Resumen "Sincronía Vital" — cierre visual del protocolo, estilo nota técnica */
.sync-vital-note {
    max-width: 620px;
    margin: 18px auto 0;
    padding: 16px 24px;
    text-align: center;
    background: var(--mint-soft);
    border: 1px solid rgba(35, 78, 53, 0.15);
    border-radius: 12px;
}
.sync-vital-title {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 6px;
}
.sync-vital-note p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--primary-deep);
}
.sync-vital-note p strong {
    color: var(--primary-forest);
    font-weight: 800;
}


/* ============================================================
   EFECTOS DE PROFUNDIDAD Y VIDRIO (sin cambiar colores)
   Agregar al final de hongos.css
   ============================================================ */

/* 1. Glassmorphism en tarjetas (mantiene colores originales) */
.prod-card,
.process-card,
.bridge-card,
.protocol-card-clean,
.bottom-banner-clean {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* 2. Efecto flotante hover (sutil) */
.prod-card:hover,
.process-card:hover,
.bridge-card:hover,
.protocol-card-clean:hover,
.bottom-banner-clean:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* 3. Si tienes un pop-up/modal, aplica solo el vidrio y la sombra (sin cambiar fondo) */
.popup-content {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}











/* ============================================================
   NUEVA SECCIÓN: SISTEMAS DE SINERGIA ADAPTÓGENA
   (SOLO AÑADIR AL FINAL DEL ARCHIVO)
   ============================================================ */

/* 1. Grid de combos */
.sinergia-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* 2. Tarjetas de sinergia (Glassmorphism + bordes por categoría) */
.sinergia-card {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 3. Colores de borde y sombra por categoría (usando atributo data-category) */
.sinergia-card[data-category="celeste-rosa"] {
    border-color: rgba(179, 229, 252, 0.3);
    box-shadow: 0 4px 20px rgba(179, 229, 252, 0.1);
}
.sinergia-card[data-category="celeste-rosa"]:hover {
    border-color: rgba(179, 229, 252, 0.7);
    box-shadow: 0 10px 35px rgba(179, 229, 252, 0.25), 0 10px 35px rgba(206, 147, 216, 0.15);
}

.sinergia-card[data-category="amber"] {
    border-color: rgba(255, 224, 178, 0.3);
    box-shadow: 0 4px 20px rgba(255, 224, 178, 0.1);
}
.sinergia-card[data-category="amber"]:hover {
    border-color: rgba(255, 224, 178, 0.7);
    box-shadow: 0 10px 35px rgba(255, 224, 178, 0.25);
}

.sinergia-card[data-category="rosa"] {
    border-color: rgba(243, 229, 245, 0.3);
    box-shadow: 0 4px 20px rgba(243, 229, 245, 0.1);
}
.sinergia-card[data-category="rosa"]:hover {
    border-color: rgba(243, 229, 245, 0.7);
    box-shadow: 0 10px 35px rgba(243, 229, 245, 0.25);
}

.sinergia-card[data-category="verde"] {
    border-color: rgba(200, 230, 201, 0.3);
    box-shadow: 0 4px 20px rgba(200, 230, 201, 0.1);
}
.sinergia-card[data-category="verde"]:hover {
    border-color: rgba(200, 230, 201, 0.7);
    box-shadow: 0 10px 35px rgba(200, 230, 201, 0.25);
}

/* 4. Efecto hover flotante (elevación y sombra) */
.sinergia-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* 5. Estilos internos de la tarjeta (respetando tu paleta) */
.sinergia-header {
    margin-bottom: 16px;
}
.sinergia-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted, #f5c842);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 10px;
}
.sinergia-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff; /* o tu color primario de texto */
    margin: 0;
}

.sinergia-body {
    flex: 1;
    margin-bottom: 20px;
}
.sinergia-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary, #b0b8c0);
    margin-bottom: 12px;
}
.sinergia-body p:last-child {
    margin-bottom: 0;
}
.sinergia-body strong {
    color: #fff; /* o tu color de texto fuerte */
    font-weight: 600;
}

.sinergia-footer {
    margin-top: auto;
}
.btn-sinergia {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}
.btn-sinergia:hover {
    background: var(--whatsapp-green, #25d366);
    color: #000;
    border-color: var(--whatsapp-green, #25d366);
    transform: translateY(-2px);
}

/* 6. Responsive (mobile-first) */
@media (max-width: 768px) {
    .sinergia-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .sinergia-card {
        padding: 20px 18px;
    }
    .sinergia-header h3 {
        font-size: 1.2rem;
    }
}


.sinergia-badge {
    color: #f5c842 !important;
}