/* ============================================================
   Nutrire Home — componentes propios (.ntr-*)
   ============================================================ */

/* ---- Hero ---- */
.ntr-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 88% 12%, rgba(53,105,30,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 5% 90%, rgba(2,79,69,0.06) 0%, transparent 45%),
        linear-gradient(180deg, #FFFFFF 0%, #F4FAF6 100%);
    padding: clamp(3rem, 7vw, 5.5rem) 0 0;
}
.ntr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-pale);
    color: var(--gold-dark);
    border: 1px solid var(--gold-light);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.45em 1.1em;
    border-radius: 30px;
    margin-bottom: 1.4rem;
}
.ntr-hero h1 {
    font-size: clamp(2.1rem, 4.6vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--purple-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1.4rem;
}
.ntr-hero h1 .resalta {
    color: var(--gold);
    position: relative;
    display: inline-block;
    z-index: 1;
}
.ntr-hero h1 .resalta::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.04em;
    height: 0.18em;
    background: var(--gold-light);
    border-radius: 4px;
    z-index: -1;
}
.ntr-hero-text {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.85;
    max-width: 540px;
    margin-bottom: 2rem;
}
.ntr-hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.ntr-stats { display: flex; gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap; padding-bottom: 3rem; }
.ntr-stat .num {
    font-family: 'Sora', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--purple-dark);
    line-height: 1;
}
.ntr-stat .num span { color: var(--gold); }
.ntr-stat .lbl { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.3rem; }

/* Imagen hero: nutricionistas sobre blob orgánico */
.ntr-hero-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: clamp(340px, 42vw, 560px);
}
.ntr-hero-blob {
    position: absolute;
    inset: 8% 6% 0 6%;
    background: linear-gradient(145deg, var(--purple-pale) 0%, #CFE8D8 55%, var(--gold-pale) 100%);
    border-radius: 42% 58% 56% 44% / 48% 42% 58% 52%;
    animation: ntrMorph 14s ease-in-out infinite alternate;
}
.ntr-hero-visual img.nutris {
    position: relative;
    z-index: 2;
    width: min(100%, 470px);
    height: auto;
    filter: drop-shadow(0 24px 40px rgba(2, 46, 39, 0.25));
}
.ntr-float-chip {
    position: absolute;
    z-index: 3;
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple-dark);
    animation: ntrFloat 5.5s ease-in-out infinite;
}
.ntr-float-chip i { color: var(--gold); font-size: 1.1rem; }
.ntr-float-chip.chip-a { top: 16%; left: 0; animation-delay: 0s; }
.ntr-float-chip.chip-b { bottom: 12%; right: 0; animation-delay: 2.2s; }

@keyframes ntrMorph {
    0%   { border-radius: 42% 58% 56% 44% / 48% 42% 58% 52%; }
    50%  { border-radius: 55% 45% 42% 58% / 44% 56% 44% 56%; }
    100% { border-radius: 46% 54% 60% 40% / 56% 46% 54% 44%; }
}
@keyframes ntrFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* ---- Secciones genéricas ---- */
.ntr-section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; background: var(--white); }
.ntr-section-alt { background: var(--off-white); }
.ntr-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.ntr-title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 700;
    color: var(--purple-dark);
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.ntr-lead { color: var(--text-muted); font-size: 0.98rem; line-height: 1.85; }

/* ---- Cards de NutriServicios ---- */
.ntr-service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2.2rem 1.8rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ntr-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple-dark), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.ntr-service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}
.ntr-service-card:hover::before { transform: scaleX(1); }
.ntr-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--purple-pale), var(--gold-pale));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
    transition: transform 0.3s ease;
}
.ntr-service-card:hover .ntr-service-icon { transform: scale(1.08) rotate(-4deg); }
.ntr-service-icon i { font-size: 1.7rem; color: var(--purple-dark); }
.ntr-service-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 0.6rem;
}
.ntr-service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; margin: 0; }

/* ---- Slider de nutritransformaciones ----
   Imágenes verticales (posts de FB/IG, 4:5). Multi-imagen responsive:
   3 visibles en desktop, 2 en tablet, 1 en móvil (scroll-snap). */
.ntr-slider { position: relative; }
.ntr-slider-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 0.25rem 1.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.ntr-slider-track::-webkit-scrollbar { display: none; }
.ntr-slide {
    flex: 0 0 calc((100% - 2.5rem) / 3);
    scroll-snap-align: start;
}
.ntr-slide img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    background: var(--purple-pale);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ntr-slide img:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ntr-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 50%;
    border: none;
    background: rgba(2, 79, 69, 0.82);
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: background 0.2s, transform 0.2s;
}
.ntr-slider-btn:hover { background: var(--gold); transform: translateY(-50%) scale(1.06); }
.ntr-slider-btn.prev { left: -0.9rem; }
.ntr-slider-btn.next { right: -0.9rem; }

@media (max-width: 991.98px) {
    .ntr-slide { flex: 0 0 calc((100% - 1.25rem) / 2); }
}
@media (max-width: 575.98px) {
    .ntr-slide { flex: 0 0 100%; }
    .ntr-slider-btn.prev { left: 0.35rem; }
    .ntr-slider-btn.next { right: 0.35rem; }
}
.ntr-carousel-empty {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    border: 2px dashed var(--border);
    border-radius: 20px;
    padding: 3.5rem 2rem;
    color: var(--text-muted);
    background: var(--white);
}
.ntr-carousel-empty i { font-size: 2.4rem; color: var(--purple-light); display: block; margin-bottom: 0.8rem; }

/* ---- Imágenes editoriales (Somos / Meta) ---- */
.ntr-photo {
    position: relative;
}
.ntr-photo img {
    width: 100%;
    height: auto;
    border-radius: 28px 90px 28px 90px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}
.ntr-photo.flip img { border-radius: 90px 28px 90px 28px; }
.ntr-photo::before {
    content: '';
    position: absolute;
    inset: -14px 14px 14px -14px;
    border: 2px solid var(--gold-light);
    border-radius: 28px 90px 28px 90px;
    z-index: 0;
}
.ntr-photo.flip::before {
    inset: -14px -14px 14px 14px;
    border-radius: 90px 28px 90px 28px;
}
.ntr-photo img { position: relative; z-index: 1; }
.ntr-photo-badge {
    position: absolute;
    bottom: -18px;
    left: 24px;
    background: var(--purple-dark);
    color: var(--white);
    border-radius: 16px;
    padding: 0.9rem 1.3rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 2;
}
.ntr-photo-badge .num { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.ntr-photo-badge .lbl { font-size: 0.74rem; opacity: 0.85; line-height: 1.3; }

/* ---- Checklist (Cumplamos juntos esa meta) ---- */
.ntr-check { list-style: none; padding: 0; margin: 1.6rem 0 2rem; }
.ntr-check li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    transition: background 0.2s;
    font-weight: 600;
    color: var(--purple-dark);
}
.ntr-check li:hover { background: var(--gold-pale); }
.ntr-check li i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.05rem;
}
.ntr-check li small { display: block; font-weight: 400; color: var(--text-muted); margin-top: 0.15rem; }

/* ---- Botones Nutrire ---- */
.btn-nutrire {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    padding: 0.85rem 1.9rem;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(53, 105, 30, 0.3);
}
.btn-nutrire:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(53, 105, 30, 0.42);
}
.btn-nutrire-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: transparent;
    color: var(--purple-dark);
    border: 2px solid var(--purple-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.78rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-nutrire-outline:hover {
    background: var(--purple-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(2, 79, 69, 0.3);
}

/* ---- Footer Nutrire (extiende footer-pyo) ---- */
.footer-logo-chip {
    background: var(--white);
    border-radius: 18px;
    padding: 0.6rem;
    display: inline-flex;
    margin-bottom: 1rem;
}
.footer-logo-chip img { height: 64px; width: auto; }
.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    margin-bottom: 0.8rem;
}
.footer-contact-row i { color: var(--gold-light); font-size: 1rem; margin-top: 0.1rem; }
.footer-contact-row a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-contact-row a:hover { color: var(--gold-light); }
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.22s ease;
}
.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* ---- Hero de páginas internas ---- */
.ntr-page-hero {
    background:
        radial-gradient(ellipse at 85% 15%, rgba(53,105,30,0.08) 0%, transparent 50%),
        linear-gradient(180deg, #FFFFFF 0%, #F4FAF6 100%);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    text-align: center;
}
.ntr-page-hero h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--purple-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.ntr-page-hero h1 .resalta { color: var(--gold); }
.ntr-page-hero p {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.85;
    max-width: 620px;
    margin: 0 auto;
}

/* ---- Cards de servicio con enlace ---- */
.ntr-service-card.is-link { display: block; text-decoration: none; cursor: pointer; }
.ntr-service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.1rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--gold);
    transition: gap 0.25s ease;
}
.ntr-service-card.is-link:hover .ntr-service-cta { gap: 0.75rem; }

/* ---- Cards del equipo (Conoce a los Nutri) ---- */
.ntr-team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.ntr-team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
/* Las fotos del equipo son flyers con texto: se muestran completas, sin recorte */
.ntr-team-card .foto {
    width: 100%;
    height: auto;
    display: block;
}
.ntr-team-card .foto-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(145deg, var(--purple-pale), var(--gold-pale));
    color: var(--purple-light);
    font-size: 0.85rem;
}
.ntr-team-card .foto-placeholder i { font-size: 3.2rem; }
.ntr-team-card .info { padding: 1.4rem 1rem 1.6rem; }
.ntr-team-card .nombre {
    font-family: 'Sora', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 0.25rem;
}
.ntr-team-card .cargo {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    border-radius: 20px;
    padding: 0.3em 1em;
}

/* ---- Banner CTA de contacto ---- */
.ntr-banner-cta {
    background: linear-gradient(120deg, var(--purple-deep) 0%, var(--purple-dark) 60%, #0B5A35 100%);
    border-radius: 26px;
    padding: clamp(2.2rem, 5vw, 3.5rem);
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.ntr-banner-cta::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191,220,168,0.18) 0%, transparent 70%);
}
.ntr-banner-cta::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    left: -60px;
    bottom: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191,220,168,0.12) 0%, transparent 70%);
}
.ntr-banner-cta h2 {
    color: var(--white);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.ntr-banner-cta p { color: rgba(255,255,255,0.78); margin: 0; }
.ntr-banner-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--white);
    color: var(--purple-dark);
    font-family: 'Sora', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 800;
    padding: 0.85rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
}
.ntr-banner-phone:hover { transform: translateY(-2px); color: var(--gold); box-shadow: 0 14px 36px rgba(0,0,0,0.3); }
.ntr-banner-phone i { color: var(--gold-bright); font-size: 1.3em; }

/* ---- Ilustración Sobre Nosotros ---- */
.ntr-illustration {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ---- Nutri Blog ---- */
.ntr-cat-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.ntr-cat-pill {
    display: inline-block;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45em 1.2em;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.ntr-cat-pill:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-pale); }
.ntr-cat-pill.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

.ntr-blog-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ntr-blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.ntr-blog-card .portada-wrap { position: relative; overflow: hidden; }
.ntr-blog-card .portada {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.ntr-blog-card:hover .portada { transform: scale(1.05); }
.ntr-blog-card .cat-chip {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(2, 79, 69, 0.88);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35em 1em;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.ntr-blog-card .cuerpo { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.ntr-blog-card .fecha { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 0.45rem; }
.ntr-blog-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--purple-dark);
    line-height: 1.35;
    margin-bottom: 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ntr-blog-card .extracto {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ntr-blog-card .leer-mas {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--gold);
    transition: gap 0.25s ease;
}
.ntr-blog-card:hover .leer-mas { gap: 0.75rem; }

/* Detalle del blog */
.ntr-blog-hero-img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}
.ntr-blog-contenido {
    color: var(--text-dark);
    font-size: 1.02rem;
    line-height: 1.95;
}
.ntr-blog-contenido h2, .ntr-blog-contenido h3 {
    color: var(--purple-dark);
    margin: 1.8rem 0 0.8rem;
    font-weight: 700;
}
.ntr-blog-contenido blockquote {
    border-left: 4px solid var(--gold);
    background: var(--gold-pale);
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.4rem;
    margin: 1.5rem 0;
    color: var(--text-mid);
}
.ntr-blog-contenido img { max-width: 100%; border-radius: 14px; }
.ntr-blog-contenido a { color: var(--gold-dark); }

/* ---- Nutri Alianzas ---- */
.ntr-alianza-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ntr-alianza-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ntr-alianza-card .portada-wrap { overflow: hidden; }
.ntr-alianza-card .portada {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.ntr-alianza-card:hover .portada { transform: scale(1.04); }
.ntr-alianza-card .cuerpo { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.ntr-alianza-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 0.9rem;
}
.ntr-alianza-card .dato {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.55rem;
}
.ntr-alianza-card .dato i { color: var(--gold); margin-top: 0.1rem; flex-shrink: 0; }
.ntr-alianza-card .mapa-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin: 0.9rem 0 1rem;
}
.ntr-alianza-card .mapa-wrap iframe {
    width: 100%;
    height: 230px;
    border: 0;
    display: block;
}
.ntr-alianza-card .btn-llegar { align-self: flex-start; margin-top: auto; font-size: 0.84rem; padding: 0.6rem 1.4rem; }

/* ---- Animaciones de entrada ---- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

.ntr-hero-enter { animation: ntrHeroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both; }
.ntr-hero-enter.delay-1 { animation-delay: 0.12s; }
.ntr-hero-enter.delay-2 { animation-delay: 0.24s; }
.ntr-hero-enter.delay-3 { animation-delay: 0.36s; }
@keyframes ntrHeroIn {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .ntr-hero-enter { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
    .ntr-hero-blob, .ntr-float-chip { animation: none !important; }
    html { scroll-behavior: auto; }
}

/* ---- Responsive home ---- */
@media (max-width: 991.98px) {
    .ntr-hero-visual { min-height: 380px; margin-top: 1.5rem; }
}
@media (max-width: 575.98px) {
    .ntr-hero-ctas .btn-nutrire,
    .ntr-hero-ctas .btn-nutrire-outline { width: 100%; justify-content: center; }
    .ntr-float-chip { font-size: 0.72rem; padding: 0.5rem 0.75rem; }
    .ntr-photo img { border-radius: 22px 56px 22px 56px; }
    .ntr-photo.flip img { border-radius: 56px 22px 56px 22px; }
    .ntr-photo-badge { left: 12px; padding: 0.7rem 1rem; }
}
