/* ============================================================
   HOME — MJ Nutrición
   ============================================================ */

/* ============================================================
   SLIDER / HERO
   ============================================================ */
.slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--verde-dark);
    cursor: grab;
    user-select: none;
}
.slider-wrap:active { cursor: grabbing; }
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
    display: flex;
    align-items: center;
    min-height: 70svh;
}
.slide.activo { opacity: 1; position: relative; }

/* Imagen de fondo */
.slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: none;
}

/* Contenido texto */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 20px;
    width: 100%;
}
.slide-content .titulo1,
.slide-content .titulo2,
.slide-content .texto {
    max-width: 46%;
}
.slide-content .titulo1 {
    font-family: var(--fuente-titulo);
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 700;
    color: var(--blanco);
    line-height: 1.1;
    text-shadow: none;
}
.slide-content .titulo2 {
    font-family: var(--fuente-titulo);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--dorado);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.slide-content .texto {
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    color: rgba(255,255,255,.88);
    line-height: 1.75;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .slide-content .titulo1,
    .slide-content .titulo2,
    .slide-content .texto { max-width: 100%; }
    .slide-content .titulo1 { font-size: clamp(2rem, 8vw, 3rem); }
    .slide-content .titulo2 { font-size: clamp(1.6rem, 6.5vw, 2.5rem); }
}

/* Controles del slider */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .6rem;
    z-index: 10;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b0b0b0;
    border: none;
    transition: background var(--transicion), transform var(--transicion);
}
.slider-dot.activo {
    background: #3a3a3a;
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    border: none;
    color: var(--negro);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
    transition: background var(--transicion), transform var(--transicion), box-shadow var(--transicion);
    cursor: pointer;
}
.slider-arrow:hover {
    background: var(--blanco);
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transform: translateY(-50%) scale(1.08);
}
.slider-arrow svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.slider-prev { left: 1.25rem; }
.slider-next { right: 1.25rem; }

/* Slide sin imagen: fondo degradado */
.slide-sin-imagen {
    background: linear-gradient(135deg, var(--verde-dark) 0%, var(--verde) 50%, #3d6b4f 100%);
}
.slide-sin-imagen .slide-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,.25) 0%, transparent 60%);
}

@media (max-width: 768px) {
    .slide { align-items: flex-end; min-height: 80svh; }
    .slide-content {
        padding: 0 20px 4rem;
        text-align: center;
        background: linear-gradient(to top, rgba(255,255,255,.92) 0%, rgba(255,255,255,.6) 60%, transparent 100%);
    }
    .slide-overlay { background: none; }
    .slider-dots { bottom: 1rem; }
    .slider-arrow { display: none; }
    .slide-content .btn { margin: 0 auto; }
}

/* ============================================================
   SECCIÓN PLANES Y GUÍAS
   ============================================================ */
.hs-planes {
    overflow: hidden;
    background: #ffffff;
}
.hs-planes-fondo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}
/* Mitad izquierda: imagen centrada, sin fondo */
.hs-planes-imagen {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem;
}
.hs-planes-imagen img {
    width: 82%;
    max-width: 480px;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 1;
}
/* Mitad derecha: texto sobre blanco */
.hs-planes-texto {
    background: #fff;
    padding: 4.5rem 4rem 4.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}
.hs-etiqueta {
    display: inline-block;
    background: var(--verde);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    padding: .35rem 1rem;
    border-radius: 50px;
    align-self: flex-start;
}
.hs-pretitulo {
    font-size: .9rem;
    color: var(--gris);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0;
}
.hs-titulo {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--verde);
    line-height: 1.1;
    margin: 0;
}
.hs-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.hs-lista li {
    font-size: .95rem;
    color: var(--negro);
    padding-left: 1.6rem;
    position: relative;
    line-height: 1.5;
}
.hs-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--verde);
    font-weight: 900;
}
.hs-btn-blanco {
    align-self: flex-start;
}

/* ============================================================
   SECCIÓN PRODUCTOS
   ============================================================ */
.hs-productos {
    background: #f9fafb;
    padding: 5.5rem 20px;
    position: relative;
    overflow: hidden;
}
.hs-productos::after {
    content: '';
    position: absolute;
    bottom: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,189,248,.08) 0%, transparent 70%);
    pointer-events: none;
}
.hs-productos-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hs-productos-texto {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.hs-tag-verde {
    display: inline-block;
    background: #f0fdf4;
    color: var(--verde);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: .35rem .9rem;
    border-radius: 50px;
    border: 1px solid rgba(60,176,67,.25);
    align-self: flex-start;
}
.hs-prod-titulo {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: var(--negro);
    line-height: 1.15;
    margin: 0;
}
.hs-prod-frase {
    font-size: 1.1rem;
    color: var(--verde);
    font-weight: 700;
    font-style: italic;
    line-height: 1.5;
    border-left: 4px solid var(--verde);
    padding-left: 1rem;
    margin: 0;
}
.hs-prod-desc {
    font-size: .95rem;
    color: var(--gris);
    line-height: 1.75;
    margin: 0;
}
.hs-productos-imagen {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}
.hs-productos-imagen::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 85%;
    background: radial-gradient(ellipse, rgba(60,176,67,.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hs-productos-imagen img {
    max-height: 520px;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 20px 120px 20px 120px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

@media (max-width: 900px) {
    .hs-planes-fondo { grid-template-columns: 1fr; }
    .hs-planes-imagen { min-height: 250px; padding: 1rem 1rem 0 1rem; display: flex; justify-content: center; }
    .hs-planes-texto { 
        padding: 1.5rem 1.5rem 2.5rem; 
        text-align: center;
        align-items: center;
    }
    .hs-planes-texto .hs-etiqueta,
    .hs-planes-texto .hs-btn-blanco {
        align-self: center;
    }
    .hs-planes-texto .hs-lista {
        width: 100%;
        margin: 0;
    }
    .hs-planes-texto .hs-lista li {
        padding-left: 0;
        display: flex;
        justify-content: center;
        text-align: center;
    }
    .hs-planes-texto .hs-lista li::before {
        position: relative;
        left: auto;
        top: 2px;
        margin-right: 0.5rem;
    }
    .hs-planes-imagen img { width: 95%; border-radius: 16px; margin: 0 auto; }
    
    .hs-productos-inner { grid-template-columns: 1fr; gap: 2rem; }
    .hs-productos-texto {
        text-align: center;
        align-items: center;
    }
    .hs-productos-texto .hs-tag-verde,
    .hs-productos-texto .btn-primario {
        align-self: center;
    }
    .hs-productos-imagen { order: -1; max-height: 320px; overflow: hidden; }
    .hs-productos-imagen img { max-height: 320px; }
}

/* ============================================================
   SECCIÓN SERVICIOS
   ============================================================ */
.seccion {
    padding: 5rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.seccion-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.seccion-etiqueta {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: .75rem;
}
.seccion-titulo {
    font-family: var(--fuente-titulo);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--negro);
}
.seccion-titulo span { color: var(--verde); }
.seccion-subtitulo {
    font-size: 1rem;
    color: var(--gris);
    margin-top: .75rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Cards servicios */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.servicio-card {
    background: var(--crema);
    border-radius: var(--radio-lg);
    padding: 2.5rem 2rem;
    transition: transform var(--transicion), box-shadow var(--transicion);
    border: 1px solid var(--crema-dark);
}
.servicio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sombra-lg);
}
.servicio-icono {
    width: 56px;
    height: 56px;
    background: var(--verde);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.servicio-icono svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 2; }
.servicio-card h3 {
    font-family: var(--fuente-titulo);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .6rem;
    color: var(--negro);
}
.servicio-card p {
    font-size: .9rem;
    color: var(--gris);
    line-height: 1.65;
}

/* ============================================================
   SECCIÓN CONÓCEME
   ============================================================ */
.hs-conoceme {
    background: linear-gradient(135deg, var(--crema) 0%, #ffffff 100%);
    padding: 6rem 20px;
    position: relative;
    overflow: hidden;
}
.hs-conoceme::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(60,176,67,.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hs-conoceme-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-areas: 
        "header imagen"
        "texto imagen";
    gap: 0 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hs-cono-header { 
    grid-area: header; 
    margin-bottom: 1.5rem; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
}
.hs-cono-header .hs-tag-verde { margin-bottom: .8rem; }
.hs-conoceme-texto {
    grid-area: texto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.hs-cono-titulo {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--negro);
    line-height: 1.1;
    margin-bottom: .5rem;
}
.hs-cono-titulo span {
    color: var(--verde);
}
.hs-cono-bloque {
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
    border-left: 4px solid var(--verde-claro);
}
.hs-cono-bloque p {
    font-size: 1.05rem;
    color: var(--gris);
    line-height: 1.7;
    margin-bottom: .8rem;
}
.hs-cono-bloque p:last-child { margin-bottom: 0; }
.hs-cono-destacado {
    font-size: 1.2rem !important;
    font-weight: 700;
    color: var(--verde-dark) !important;
    font-style: italic;
    padding: .5rem 0;
}
.hs-cono-lista-bloque {
    border-left-color: var(--dorado);
}
.hs-cono-lista {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    list-style: none;
    padding: 0;
}
.hs-cono-lista li {
    font-size: 1rem;
    color: var(--negro);
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    line-height: 1.4;
}
.hs-cono-lista li::before {
    content: '✓';
    color: var(--verde);
    font-weight: 900;
    margin-top: 2px;
}
.hs-cono-cierre {
    padding: 1rem 0 0;
}
.hs-cono-cierre p {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--negro);
    line-height: 1.6;
    margin: 0;
}

/* Imagen Conóceme */
.hs-conoceme-imagen {
    grid-area: imagen;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.hs-cono-img-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    display: flex;
    justify-content: center;
}
.hs-cono-img-wrap::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 75%;
    background: linear-gradient(135deg, rgba(60,176,67,0.15) 0%, rgba(94,207,88,0.3) 100%);
    border-radius: 200px 200px 30px 30px;
    z-index: 0;
}
.hs-cono-img-wrap img {
    position: relative;
    z-index: 1;
    display: block;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,.15));
}

@media (max-width: 991px) {
    .hs-conoceme {
        padding: 4rem 20px;
    }
    .hs-conoceme-inner {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "header"
            "imagen"
            "texto";
        gap: 1rem;
    }
    .hs-cono-header {
        margin-bottom: 0;
        align-items: center;
        text-align: center;
    }
    .hs-cono-img-wrap {
        max-width: 360px;
    }
}

/* ============================================================
   SECCIÓN CONSULTA ONLINE MODERNA
   ============================================================ */
.hs-consulta-moderna {
    padding: 6rem 20px;
    background: var(--crema);
    position: relative;
}
.hs-consulta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.04);
    display: flex;
    overflow: hidden;
}
.hs-cons-img-box {
    width: 45%;
    position: relative;
}
.hs-cons-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hs-cons-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.05) 100%);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}
.hs-badge-flotante {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    color: var(--verde-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: flotar 4s ease-in-out infinite;
}
@keyframes flotar {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hs-cons-text-box {
    width: 55%;
    padding: 3.5rem 3.5rem;
    display: flex;
    flex-direction: column;
}
.hs-cons-titulo-nuevo {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--negro);
    line-height: 1.1;
    margin-bottom: 0.8rem;
}
.hs-cons-titulo-nuevo span {
    color: var(--verde);
}
.hs-cons-sub-nuevo {
    font-size: 1.05rem;
    color: var(--gris);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Timeline */
.hs-cons-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    position: relative;
}
.hs-cons-timeline::before {
    content: '';
    position: absolute;
    left: 19px; top: 10px; bottom: 10px;
    width: 2px;
    background: var(--crema-dark);
    z-index: 0;
}
.hs-tl-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}
.hs-tl-num {
    width: 40px; height: 40px;
    background: var(--verde);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px #fff;
}
.hs-tl-info {
    display: flex;
    flex-direction: column;
    padding-top: 0.1rem;
}
.hs-tl-info strong {
    font-size: 1.05rem;
    color: var(--negro);
    margin-bottom: 0.2rem;
}
.hs-tl-info span {
    font-size: 0.9rem;
    color: var(--gris);
    line-height: 1.4;
}
.hs-cons-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.hs-link-sutil {
    font-size: 0.9rem;
    color: var(--gris);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}
.hs-link-sutil:hover {
    color: var(--verde);
}

@media (max-width: 991px) {
    .hs-consulta-wrapper {
        flex-direction: column;
    }
    .hs-cons-img-box {
        width: 100%;
        height: 350px;
    }
    .hs-cons-text-box {
        width: 100%;
        padding: 3rem 2rem;
    }
}
@media (max-width: 768px) {
    .hs-cons-titulo-nuevo {
        font-size: 2.2rem;
    }
    .hs-cons-timeline::before {
        left: 20px;
    }
    .hs-tl-num {
        width: 42px; height: 42px;
        font-size: 1.1rem;
    }
}

/* ============================================================
   SECCIÓN FAQ
   ============================================================ */
.hs-faq-section {
    padding: 6rem 20px;
    background: #fafafa;
    position: relative;
}
.hs-faq-header {
    text-align: center;
    margin-bottom: 4rem;
}
.hs-faq-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--negro);
    margin-bottom: 0.5rem;
}
.hs-faq-header p {
    font-size: 1.15rem;
    color: var(--verde);
    font-weight: 600;
}
.hs-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.hs-faq-cat-titulo {
    font-size: 1.8rem;
    color: var(--negro);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.hs-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hs-acc-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.hs-acc-item:hover {
    border-color: rgba(60,176,67,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.hs-acc-item.activo {
    border-color: rgba(60,176,67,0.5);
    box-shadow: 0 8px 25px rgba(60,176,67,0.08);
}
.hs-acc-btn {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--negro);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s;
    line-height: 1.3;
}
.hs-acc-item.activo .hs-acc-btn {
    color: var(--verde);
}
.hs-acc-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    color: var(--gris);
    transition: color 0.3s ease;
}
.hs-acc-item.activo .hs-acc-icon {
    color: var(--verde);
}
.hs-acc-icon::before, .hs-acc-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}
.hs-acc-icon::before { width: 14px; height: 2px; border-radius: 2px; }
.hs-acc-icon::after { width: 2px; height: 14px; border-radius: 2px; }
.hs-acc-item.activo .hs-acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.hs-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.hs-acc-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--gris);
    font-size: 0.95rem;
    line-height: 1.6;
}
.hs-acc-inner p {
    margin-bottom: 0.8rem;
}
.hs-acc-inner p:last-child {
    margin-bottom: 0;
}
.hs-acc-inner ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}
.hs-acc-inner li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
}
.hs-acc-inner li::before {
    content: '✓';
    color: var(--verde);
    position: absolute;
    left: 0;
    font-weight: 900;
}
@media (max-width: 900px) {
    .hs-faq-container { grid-template-columns: 1fr; gap: 3rem; }
    .hs-faq-section { padding: 4rem 20px; }
}

/* ============================================================
   SECCIÓN RESEÑAS (Mis Pacientes)
   ============================================================ */
.hs-resenas-section {
    padding: 5rem 0;
    background: #ffffff;
    overflow: hidden;
}
.hs-resenas-header {
    text-align: center;
    margin-bottom: 2rem;
}
.hs-resenas-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--negro);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.hs-resenas-header p {
    font-size: 1.3rem;
    color: var(--verde);
    font-weight: 700;
}
.hs-resenas-carousel-wrap {
    max-width: 1500px;
    width: 95%;
    margin: 0 auto;
    position: relative;
    padding: 2rem 60px;
}
.hs-resenas-swiper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0; /* Para que no se corte la sombra */
}
.hs-resena-card {
    height: auto;
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0,0,0,0.03);
}
.hs-resena-texto {
    font-size: 1.05rem;
    color: var(--gris);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    position: relative;
}
.hs-resena-texto::before {
    content: '"';
    font-size: 4rem;
    color: rgba(60,176,67,0.15);
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: serif;
    font-weight: 900;
}
.hs-resena-autor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.hs-resena-autor img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 3px solid #fff;
}
.hs-resena-nombre {
    font-weight: 800;
    color: var(--negro);
    font-size: 1.1rem;
    letter-spacing: 1px;
}
.hs-resenas-btn-prev, .hs-resenas-btn-next {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    color: var(--verde);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}
.hs-resenas-btn-prev::after, .hs-resenas-btn-next::after {
    display: none !important;
}
.hs-resenas-btn-prev { left: 0; }
.hs-resenas-btn-next { right: 0; }
.hs-resenas-btn-prev svg, .hs-resenas-btn-next svg { width: 22px; height: 22px; stroke-width: 2.5px; }
.hs-resenas-btn-prev:hover, .hs-resenas-btn-next:hover { 
    transform: translateY(-50%) scale(1.1); 
    background: var(--verde); 
    color: #fff; 
    border-color: var(--verde);
}
.hs-resenas-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
    position: static;
}
.hs-resenas-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(60,176,67,0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    opacity: 1;
    margin: 0 !important;
}
.hs-resenas-dot.activo {
    background: var(--verde);
    transform: scale(1.3);
}
@media (max-width: 960px) {
    .hs-resenas-carousel-wrap { padding: 2rem 1rem; }
    .hs-resenas-btn-prev, .hs-resenas-btn-next { display: none; }
}

/* ============================================================
   CONTACTO / CTA
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--verde-dark) 0%, var(--verde) 100%);
    padding: 5rem 20px;
    text-align: center;
}
.cta-section h2 {
    font-family: var(--fuente-titulo);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--blanco);
    margin-bottom: 1rem;
}
.cta-section p {
    color: rgba(255,255,255,.82);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.cta-botones {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
