/* ══════════════════════════════════════════
   VARIABLES & RESET
══════════════════════════════════════════ */
:root {
    --rose:        #800F2F;
    --rose-deep:   #650B25;
    --rose-text:   #800F2F;
    --rose-light:  #A62B4E;
    --rose-pale:   #F8E9EE;
    --sage:        #70974A;
    --sage-dark:   #587A39;
    --sage-strong: #47652C;
    --white:       #FFFFFF;
    --off-white:   #F9F7F5;
    --text-dark:   #1E1E1E;
    --text-mid:    #454545;
    --text-light:  #999999;
    --border:      #E5E0E2;
    --font-slab:   'Cormorant Garamond', Georgia, serif;
    --font-script: 'Cormorant Garamond', Georgia, serif;
    --font-body:   'Montserrat', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: hidden; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

/* ══════════════════════════════════════════
   HELPERS
══════════════════════════════════════════ */
.section-title {
    font-family: var(--font-slab);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

/* Línea decorativa rosa debajo del título */
.title-deco {
    display: inline-block;
    width: 38px;
    height: 2px;
    background: var(--rose);
    border-radius: 2px;
    position: relative;
    margin-top: 0.5rem;
}
.title-deco::after {
    content: '';
    position: absolute;
    right: -12px; top: 0;
    width: 7px; height: 2px;
    background: var(--rose);
    opacity: 0.45;
    border-radius: 2px;
}

.section-header.centered           { text-align: center; margin-bottom: 1.8rem; }
.section-header.centered .title-deco { margin: 0.5rem auto 0; display: block; }
.title-deco.left                   { display: block; margin-left: 0; }

.script-rose {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--rose);
    font-weight: 700;
    font-size: 2.5rem !important;
}

.divider {
    display: block;
    width: 145px;
    height: auto;
    filter: sepia(1) saturate(3.8) hue-rotate(315deg) brightness(0.72) contrast(1.28);
    opacity: 0.96;
    transform: scaleY(1.08);
}

.divider-centered {
    margin: 0.6rem auto 0;
}

.divider-left {
    margin: 0.55rem 0 0.8rem;
}

.divider-hero {
    margin: 0.4rem auto 1.2rem;
    width: 200px;
    max-width: 80%;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-rose {
    display: inline-block;
    background: var(--rose);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.75rem 1.8rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.1px;
}
.btn-rose:hover {
    background: var(--rose-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128,15,47,0.3);
}
.btn-rose.full { width: 100%; text-align: center; display: block; }

.btn-rose-outline {
    background: transparent;
    color: var(--rose);
    border: 2px solid var(--rose);
}
.btn-rose-outline:hover {
    background: var(--rose);
    color: var(--white);
}

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--rose);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}
.btn-white:hover { opacity: 0.92; transform: translateY(-2px); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid #f0ebed;
    padding: 0.4rem 0;
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 18px rgba(0,0,0,0.07); }

.navbar .container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-logo {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.nav-logo img {
    height: 50px;
    border-radius: 50%;
    width: auto;
    object-fit: contain;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.nav-brand-name {
    font-family: var(--font-slab);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 600;
    color: black;
}

.nav-brand-role {
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    font-weight: 600;
    color: var(--rose);
    text-transform: uppercase;
    margin-top: 0.15rem;
}

.nav-menu {
    display: flex;
    gap: 1.8rem;
    margin-left: auto;
    margin-right: 1rem;
}
.nav-link {
    font-size: 0.88rem;
    color: var(--text-mid);
    font-weight: 400;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--rose);
    transition: width 0.25s;
}
.nav-link:hover { color: var(--rose); }
.nav-link:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* ══════════════════════════════════════════
   HERO  — grid full width, imagen llena el alto
══════════════════════════════════════════ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    background: #F7F3EF;
    overflow: hidden;
}

/* Columna izquierda */
.hero-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.hero-botanical--left {
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 120px;
    pointer-events: none;
    z-index: 0;
}
.hero-botanical--left svg {
    width: 100%;
    height: 100%;
}

.hero-asset-left {
    position: absolute;
    left: -62px;
    bottom: -12px;
    height: 300px;
    width: auto;
    z-index: 0;
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 1;
    padding: 2rem 3rem;
    max-width: 740px;
    text-align: left;
}

.hero-title {
    font-family: var(--font-slab);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-dark);
    margin-bottom: 1.3rem;
}
.hero-title em {
    font-family: var(--font-slab);
    font-style: normal;
    font-size: 2.1rem;
    color: var(--rose-deep);
    font-weight: 700;
    line-height: 1;
}
.hero-title-secondary {
    display: inline-block;
    font-size: 0.86em;
}

.hero-subtitle {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.78;
    margin-bottom: 2rem;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

/* Columna derecha — imagen full height con recorte blob orgánico */
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-right {
    position: relative;
    overflow: hidden;
}
.hero-right::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 8px;
    background: var(--rose);
    z-index: 2;
    pointer-events: none;
}
.hero-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
    clip-path: url(#wavyLeft);
}

/* ══════════════════════════════════════════
   ESPECIALIDADES
══════════════════════════════════════════ */
.especialidades {
    padding: 2rem 0;
    background: var(--white);
    max-width: 1600px;
}

.cards-grid        { display: grid; gap: 1.4rem; }
.cards-grid.four   { grid-template-columns: repeat(4, 1fr); }
.cards-grid.five   { grid-template-columns: repeat(5, 1fr); }
.cards-grid.three  { grid-template-columns: repeat(3, 1fr); }

.cards-grid.four { margin-top: 2rem; }
.cards-grid.five { margin-top: 2rem;     display: flex;
    justify-content: center;
    align-items: center; }
.cards-grid.three { margin-top: 2rem; }
.cards-grid.five .spec-card{
    min-width: 250px;
    min-height: 360px;
}

.spec-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem 1.4rem 1.8rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}
.spec-card:hover {
    box-shadow: 0 8px 28px rgba(128,15,47,0.1);
    transform: translateY(-4px);
}

.spec-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    overflow: hidden;
}
.spec-icon img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.spec-card h3 {
    font-family: var(--font-slab);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1;
    color: var(--text-dark);
}
.spec-card p {
    font-size: 0.92rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.65;
}

/* ══════════════════════════════════════════
   SOBRE MÍ
══════════════════════════════════════════ */
.sobre-mi {
    padding:  0;
    background: #F7F3EF;
    overflow: hidden;
}

/* Grid full-width: imagen flush izquierda, texto con max-width centrado */
.sobre-mi-container {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
}

/* Col izquierda: imagen + quote debajo */
.sobre-mi-left-col {
    display: flex;
    flex-direction: column;
}

/* Imagen: flush al borde izquierdo, cuadrada */
.sobre-mi-image {
    padding: 0;
    margin: 0;
    overflow: hidden;
    flex-shrink: 0;
}
.sobre-mi-image img {
    width: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    display: block;
    height: 600px;
}

/* Texto: centrado dentro de su columna con padding */
.sobre-mi-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 4rem;
    max-width: 720px;
}

.label-small {
    font-family: var(--font-slab);
    font-size: 2.15rem;
    font-weight: 700;
    color: var(--rose);
    margin-bottom: 0.2rem;
}

.sobre-mi-name {
    display: block;
    font-size: 2.1rem;
    line-height: 1.2;
    margin-top: 0.7rem;
    margin-bottom: 0.4rem;
}

.sobre-mi-role {
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--rose);
    margin-bottom: 1.5rem;
}

.sobre-mi-desc {
    font-size: 0.96rem;
    color: #252525;
    font-weight: 600;
    line-height: 1.75;
    margin-bottom: 0.8rem;
}

.sobre-mi-more-btn {
    margin-top: 0.45rem;
    font-size: 0.88rem;
    font-weight: 800;
}

.sobre-mi-extra {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.sobre-mi-extra[hidden] {
    display: none !important;
}

.sobre-mi-extra .sobre-mi-desc:last-child {
    margin-bottom: 0;
}

.signature {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--text-dark);
    margin-top: 1.8rem;
    font-weight: 600;
    display: block;
}

/* ══════════════════════════════════════════
   QUOTE (dentro de sobre-mi)
══════════════════════════════════════════ */
.sobre-mi-quote {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.8rem;
    padding: 1.2rem 1.4rem;
    background: var(--rose-pale);
    border-left: 3px solid var(--rose);
    border-radius: 6px;
}

.quote-ornament {
    font-family: var(--font-slab);
    font-size: 4rem;
    line-height: 1;
    color: var(--rose);
    opacity: 0.4;
    flex-shrink: 0;
    user-select: none;
    align-self: flex-start;
    margin-top: -0.2rem;
}

.quote-text {
    font-family: var(--font-slab);
    font-size: 1.72rem;
    font-weight: 700;
    color: var(--sage);
    line-height: 1.55;
    border: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 600px) {
    .quote-text { font-size: 1.05rem; }
    .quote-ornament { font-size: 2.8rem; }
}

/* Quote debajo de la foto */
.sobre-mi-quote--foto {
    margin-top: 0;
    border-radius: 0;
    padding: 1rem 1.4rem;
}
.sobre-mi-quote--foto .quote-text {
    font-size: 1.36rem;
    line-height: 1.5;
    color: var(--rose);
    font-weight: 800;
}
.sobre-mi-quote--foto .quote-ornament {
    font-size: 2.5rem;
}

/* Misión highlight */
.mision-highlight {
    color: var(--rose);
    font-weight: 800;
}

/* Formulario contacto - botones */
.contacto-form-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-wsp-contacto {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.72rem 1.4rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.btn-wsp-contacto:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
}

/* Imágenes de servicio - evitar oscurecimiento */
.service-img img {
    filter: brightness(1) !important;
}

/* ══════════════════════════════════════════
   SERVICIOS
══════════════════════════════════════════ */
.servicios {
    padding: 2rem 0;
    background: var(--white);
    border-top: 1px solid #f3eeef;
}

.servicios .cards-grid.three {
    width: min(100%, 1000px);
    margin: 2rem auto 0;
    align-items: stretch;
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--rose);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    background: #F7F3EF;
}
.service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    transform: translateY(-4px);
}
.service-card.clickable {
    cursor: pointer;
}

.service-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 24%;
    display: block;
}

.service-body {
    flex: 1;
    padding: 1.1rem 1.3rem 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.service-info { flex: 1; }
.service-info h3 {
    font-family: var(--font-slab);
    font-size: 1.32rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--rose);
    line-height: 1;
}
.service-info p {
    font-size: 0.88rem;
    color: #2f2f2f;
    font-weight: 700;
    line-height: 1.35;
}

.service-card[data-popup="coaching-personal"] .service-img,
.service-card[data-popup="mentoria"] .service-img,
.service-card[data-popup="entrevista"] .service-img {
    padding: 0;
    background: transparent;
}

.service-card[data-popup="coaching-personal"] .service-img img,
.service-card[data-popup="mentoria"] .service-img img,
.service-card[data-popup="entrevista"] .service-img img {
    border-radius: 0;
    object-position: center 24%;
}

.service-icon {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.service-icon.rose { background: rgba(128,15,47,0.08); }
.service-icon.sage { background: rgba(112,151,74,0.12); }
.service-icon img  { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }

/* ══════════════════════════════════════════
   TESTIMONIOS
══════════════════════════════════════════ */
.testimonios {
    padding: 2rem 0;
    background: var(--off-white);
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.8rem 1.6rem;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 4.5rem;
    color: var(--rose);
    line-height: 0.9;
    display: block;
    margin-bottom: 0.8rem;
    opacity: 0.45;
}

.testi-card p {
    font-size: 0.94rem;
    color: #303030;
    line-height: 1.72;
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 600;
}

.testi-card strong {
    font-size: 0.92rem;
    color: var(--text-dark);
    font-weight: 700;
}

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
/* Fondo ÚNICO compartido por "El puente al cambio" + "Hablemos" (una sola imagen) */
.fondo-wrap {
    position: relative;
    background-image: url('images/fondo.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--white);
    overflow: hidden;
}
.fondo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.62);
    pointer-events: none;
    z-index: 0;
}

/* El puente al cambio: tarjeta blanca flotando sobre el fondo unificado */
.cta-wrap {
    position: relative;
    z-index: 1;
    padding: 3.5rem 1.5rem;
}

.cta-banner {
    background: white;
    border: 1px solid rgba(128, 15, 47, 0.45);
    border-radius: 16px;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
    overflow: visible;
    max-width: 900px;
    margin: 0 auto;
}

.cta-botanical {
    position: absolute;
    top: 0;
    width: 160px;
    height: 100%;
    pointer-events: none;
    opacity: 0.9;
}
.cta-botanical--left  { left: 0; }
.cta-botanical--right { right: 0; }

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Empuja el wrap del botón hacia el centro-izquierda en desktop */
@media (min-width: 769px) {
    .cta-cta-wrap {
        margin-right: 8rem;
    }
}

.cta-text h2 {
    font-family: var(--font-slab);
    font-size: 1.9rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.cta-text p {
    color: var(--rose);
    font-size: 1.08rem;
    font-weight: 800;
}

.cta-cta-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cta-maceta {
    position: absolute;
    right: -262px;
    bottom: -50px;
    height: 205px;
    width: auto;
    pointer-events: none;
    z-index: 10;
}

/* ══════════════════════════════════════════
   CONTACTO — HABLEMOS
══════════════════════════════════════════ */
.contacto {
    padding: 2rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contacto-maceta-deco {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    pointer-events: none;
    z-index: 0;
}

.contacto > .container:first-child {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.contacto-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.contacto-desc {
    font-size: 0.92rem;
    color: black;
    font-weight: 500;
    line-height: 1.78;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

.contacto-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    color: black;
}
.contacto-list svg {
    width: 17px; height: 17px;
    color: var(--rose);
    flex-shrink: 0;
    stroke-width: 2;
}

/* FORM */
.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.form-row { display: grid; gap: 0.9rem; }
.form-row.two { grid-template-columns: 1fr 1fr; }

.contacto-form input,
.contacto-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--rose);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--rose-deep);
    background: rgba(255,255,255,0.96);
    outline: none;
    transition: border-color 0.2s;
    resize: none;
}
.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
    color: var(--rose-deep);
    opacity: 0.72;
    font-weight: 500;
}
.contacto-form input:focus,
.contacto-form textarea:focus {
    border-color: var(--rose-deep);
    box-shadow: 0 0 0 3px rgba(128,15,47,0.12);
}

.contacto-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--rose);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--rose-deep);
    background: rgba(255,255,255,0.96);
    outline: none;
    transition: border-color 0.2s;
    cursor: pointer;
}

.contacto-form select:focus {
    border-color: var(--rose);
}

.form-experiencia {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.payment-method-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.checkbox-group {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.checkbox-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--rose);
}

.checkbox-label span {
    user-select: none;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
    background: var(--sage-strong);
    padding: 3.5rem 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 50%;
}

.footer-brand p {
    font-size: 0.83rem;
    line-height: 1.72;
    max-width: 280px;
    color: rgba(255,255,255,0.86);
    font-weight: 500;
}

.footer-social-title {
    font-family: var(--font-slab);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.7rem;
}
.social-icons a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    transition: background 0.2s, border-color 0.2s;
}
.social-icons a:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.45);
    color: var(--white);
}
.social-icons svg { width: 17px; height: 17px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.1rem 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
    font-weight: 500;
}

/* ══════════════════════════════════════════
   MODALES / POP-UPS
══════════════════════════════════════════ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    padding:  2rem;
    max-width: 620px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
    animation: modalFadeIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.modal-content.modal-wide {
    max-width: 820px;
    max-height: 95vh;
}

#modal-programa .modal-content {
    max-width: 1050px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-mid);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
    background: var(--rose-pale);
    color: var(--rose);
}

.modal-content h3 {
    font-family: var(--font-slab);
    font-size: 1.72rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    text-align: center;
}

.modal-content h4 {
    font-family: var(--font-slab);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rose);
    margin-bottom: 0.8rem;
}

.modal-content .divider {
    margin: 0.5rem auto 1.5rem;
}

.modal-text {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.75;
    text-align: center;
}

.modal-desc {
    font-family: var(--font-slab);
    font-size: 1.32rem;
    font-style: italic;
    color: var(--sage);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.modal-quote {
    font-family: var(--font-slab);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--rose-text);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
    padding: 0.7rem 0.7rem;
    background: var(--rose-pale);
    border-left: 3px solid var(--rose-text);
    border-radius: 6px;
    font-weight: 700;
}

.modal-two-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: .5rem;
}

.modal-block {
    padding: 1rem;
    background: var(--off-white);
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-section {
    margin-top: 1rem;
}

.modal-section p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.modal-pricing {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(128,15,47,0.05);
    border-radius: 6px;
}

.modal-pricing p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.modal-pricing p:last-child {
    margin-bottom: 0;
}

.modal-pricing em {
    font-size: 0.8rem;
    color: var(--text-mid);
    display: block;
    margin-top: 0.3rem;
}

.modal-block .btn-rose {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .modal-content h3 {
        font-size: 1.5rem;
    }

    .modal-quote {
        font-size: 1rem;
        padding: 0.9rem 1rem;
    }

    .modal-two-blocks {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════
   MODALES DE PAGO
══════════════════════════════════════════ */
.pago-content {
    max-width: 520px;
    text-align: center;
}

.pago-check {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.pago-check svg {
    width: 52px;
    height: 52px;
}

.pago-titulo {
    font-family: var(--font-slab);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.pago-subtitulo {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pago-opciones {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.pago-opcion {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1.2rem;
    background: var(--off-white);
}

.pago-separador {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    flex-shrink: 0;
    background: var(--white);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}
.pago-separador span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

.pago-region {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.1rem;
}

.pago-monto {
    font-family: var(--font-slab);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rose);
    margin-bottom: 0.8rem;
}

/* Botón Mercado Pago */
.btn-mp {
    display: inline-block;
    background: #009EE3;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.65rem 1.1rem;
    border-radius: 6px;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
    width: 100%;
}
.btn-mp:hover {
    background: #0080c0;
    transform: translateY(-1px);
}

/* Botón PayPal */
.btn-paypal {
    display: inline-block;
    background: #003087;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.65rem 1.1rem;
    border-radius: 6px;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
    width: 100%;
}
.btn-paypal:hover {
    background: #00205b;
    transform: translateY(-1px);
}

/* WhatsApp (modal consultar) */
.pago-wsp {
    margin-top: 0.5rem;
    padding: 0.85rem 2rem;
}

@media (max-width: 600px) {
    .pago-opciones {
        flex-direction: column;
    }
    .pago-separador {
        width: 100%;
        height: 32px;
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-text { padding: 4rem 2rem; }
    .hero-title { font-size: 2rem; }
    .hero-title em { font-size: 2.2rem; }
}

@media (max-width: 900px) {
    .cards-grid.four  { grid-template-columns: repeat(2, 1fr); }
    .cards-grid.five  { grid-template-columns: repeat(2, 1fr); }
    .sobre-mi-container { grid-template-columns: 1fr; }
    .sobre-mi-image img {
        height: min(460px, 92vw);
        min-height: 320px;
        aspect-ratio: 1 / 1;
        object-position: center top;
    }
    .sobre-mi-text { padding: 2.5rem 2rem; max-width: 100%; }
    .contacto-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .contacto-maceta-deco { display: none; }
    .cta-container { flex-direction: column; text-align: center; }
    .cta-wrap { padding: 2.5rem 1rem; }
    .cta-maceta {
        height: 130px;
        right: -86px;
        bottom: -46px;
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-brand-name { font-size: 1rem; }
    .nav-brand-role { font-size: 0.56rem; letter-spacing: 0.07em; }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: white;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 9999;
        margin: 0;
    }
    .nav-menu.open .nav-link { font-size: 1.3rem; color: var(--text-dark); }

    /* Hero mobile: imagen arriba, texto abajo */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
.hero-right {
        order: -1;
        height: 320px;
        position: relative;
    }
    .hero-right img {
        -webkit-clip-path: none;
        clip-path: none;
    }
    .hero-text {
        padding: 3.5rem 1.8rem 3rem;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .hero-botanical--left { display: none; }
    .hero-asset-left {
        height: 140px;
        left: -45px;
        bottom: -8px;
    }
    .hero-title { font-size: 2.25rem; }
    .hero-title em { font-size: 2.35rem; }
    .hero-eyebrow { font-size: 1.15rem; }
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .cta-cta-wrap {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-right: 0;
    }
    .cta-maceta {        
        height: 180px;
        right: -118px;
        bottom: -80px;
    }

    .cards-grid.three { grid-template-columns: 1fr; }
    .cards-grid.four  { grid-template-columns: 1fr; }
    .cards-grid.five  { grid-template-columns: 1fr; }
    .especialidades .cards-grid.four { padding: 0 0.8rem; }
    .especialidades .cards-grid.five { padding: 0 0.8rem; flex-direction: column; }
    .form-row.two     { grid-template-columns: 1fr; }
    .divider          { width: 105px; }
    .divider-hero     { width: 170px; margin-left: auto; margin-right: auto; }
    .section-title    { font-size: 1.55rem; }
    .footer-container { flex-direction: column; gap: 2rem; }
    .cta-text h2      { font-size: 1.5rem; }
}

/* ══════════════════════════════════════════
   ANIMACIONES DE ENTRADA
══════════════════════════════════════════ */
@keyframes anim-fade-up {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes anim-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes anim-slide-down {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Navbar */
.navbar { animation: anim-slide-down 0.5s cubic-bezier(0.22,1,0.36,1) both; }

/* Hero — secuencia de carga */
.hero-title                { animation: anim-fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 0.15s both; }
.divider-hero              { animation: anim-fade-in 0.6s ease 0.4s both; }
.hero-subtitle             { animation: anim-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.5s both; }
.hero-text .btn-rose       { animation: anim-fade-up 0.65s cubic-bezier(0.22,1,0.36,1) 0.65s both; }
.hero-right                { animation: anim-fade-in 1s ease 0.1s both; }
.hero-asset-left           { animation: anim-fade-up 0.9s ease 0.45s both; }

/* ── Scroll reveal — estado inicial ── */
.reveal {
    opacity: 0;
    transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
                transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal[data-anim="up"]    { transform: translateY(32px); }
.reveal[data-anim="left"]  { transform: translateX(-36px); }
.reveal[data-anim="right"] { transform: translateX(36px); }
.reveal[data-anim="fade"]  { transform: none; }
.reveal[data-anim="scale"] { transform: scale(0.93); }

/* Estado final — activado por JS */
.reveal.visible {
    opacity: 1;
    transform: none !important;
}

/* ══════════════════════════════════════════
   TALLERES VIVENCIALES (sección)
══════════════════════════════════════════ */
.talleres-section {
    padding: 2rem 0;
    background: #F7F3EF;
    border-top: 1px solid #ede8e5;
}

.section-subtitle {
    font-family: var(--font-slab);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--sage-strong);
    font-weight: 800;
    margin-top: 0.2rem;
    margin-bottom: 0.3rem;
}

.cards-grid.two {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
}

.taller-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    border-left: 4px solid var(--rose);
}
.taller-card:hover {
    box-shadow: 0 10px 36px rgba(128,15,47,0.1);
    transform: translateY(-4px);
}

.taller-num {
    font-family: var(--font-slab);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--rose);
    opacity: 0.13;
    line-height: 1;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    pointer-events: none;
    user-select: none;
}

.taller-card h3 {
    font-family: var(--font-slab);
    font-size: 1.78rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

.taller-tagline {
    font-family: var(--font-slab);
    font-size: 1.18rem;
    font-style: italic;
    color: var(--rose-text);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0.2rem;
}

.taller-card p:not(.taller-tagline) {
    font-size: 0.97rem;
    color: #303030;
    font-weight: 600;
    line-height: 1.72;
    flex: 1;
}

.taller-card .btn-rose {
    align-self: flex-start;
    margin-top: 0.4rem;
}

/* ══════════════════════════════════════════
   MODALES — VISTAS Y ELEMENTOS NUEVOS
══════════════════════════════════════════ */

/* Ocultar vista de modal */
.modal-view.hidden {
    display: none !important;
}

/* Subtítulo del modal (debajo del h3) */
.modal-subtitle {
    font-family: var(--font-slab);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--rose-text);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.3rem;
}

/* Intro de modal (texto introductorio antes de los bloques) */
.modal-intro {
    font-size: 0.92rem;
    color: #303030;
    font-weight: 500;
    line-height: 1.72;
    text-align: center;
    margin-bottom: 0.6rem;
}

/* Bloque solo (sin dos columnas) */
.modal-block.modal-block-solo {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
}

/* Badges de servicio */
.servicio-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
}
.badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    line-height: 1.4;
}
.badge-rose    { background: rgba(128,15,47,0.12); color: var(--rose); }
.badge-sage    { background: rgba(112,151,74,0.14); color: var(--sage-dark); }
.badge-neutral { background: rgba(0,0,0,0.06); color: var(--text-mid); }

/* Texto "qué te llevás" */
.modal-qte {
    font-size: 0.88rem;
    color: #303030;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 0.7rem;
    padding: 0.65rem 0.9rem;
    background: rgba(112,151,74,0.09);
    border-radius: 6px;
}

/* Bonus bonificación */
.modal-bonus {
    font-size: 0.82rem;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Precio en modal de programa */
.modal-precio {
    font-family: var(--font-slab);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--rose);
    margin: 0.6rem 0 0.5rem;
}
.precio-nota {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-mid);
    margin-left: 0.3rem;
}

/* Precio dual: Valor Argentina (ARS) / Valor exterior (USD) */
.precio-dual {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 1rem;
    align-items: baseline;
}
.precio-dual .precio-item {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
}
.precio-dual .precio-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-mid);
    opacity: 0.8;
}

/* Variante para usar dentro de .modal-precio (precios grandes) */
.modal-precio.precio-dual {
    flex-direction: column;
    gap: 0.2rem;
}
.modal-precio.precio-dual .precio-item:first-child { font-size: 1.6rem; }
.modal-precio.precio-dual .precio-item:last-child {
    font-size: 1rem;
    color: var(--text-mid);
    font-weight: 600;
}

/* Variante para usar dentro de un badge (precio chico en pill) */
.badge.precio-dual {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    line-height: 1.3;
}
.badge.precio-dual .precio-item:last-child { font-size: 0.7rem; opacity: 0.85; }

/* Botón de Calendly post-pago */
.pago-calendly {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    padding: 0.9rem 1.8rem;
}

/* Nota pequeña bajo el botón de pago */
.pago-nota {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}
.pago-nota a {
    color: var(--rose);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ══════════════════════════════════════════
   PÁGINAS DE RESULTADO DE PAGO (/exito /fallo /pendiente)
══════════════════════════════════════════ */
.result-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: var(--rose-pale);
}
.result-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem;
    max-width: 460px;
    width: 100%;
    text-align: center;
}
.result-card .pago-check svg { width: 60px; height: 60px; }
.result-card .pago-check.fallo svg { stroke: var(--rose); }
.result-card .result-orden {
    font-family: var(--font-slab);
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 1.2rem;
}
.result-card .result-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.2rem;
}
.result-card .btn-outline {
    display: block;
    border: 1px solid var(--border);
    color: var(--text-dark);
    padding: 0.75rem 1.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: border-color 0.2s ease;
}
.result-card .btn-outline:hover { border-color: var(--rose); }

/* Responsive talleres */
@media (max-width: 768px) {
    .cards-grid.two { grid-template-columns: 1fr; }
    .taller-card { border-left-width: 3px; }
}

/* ══════════════════════════════════════════
   HERO — EYEBROW + CREDENTIALS
══════════════════════════════════════════ */
.hero-eyebrow {
    font-family: var(--font-slab);
    font-size: 1.42rem;
    font-style: italic;
    color: var(--rose-deep);
    margin-bottom: 0.85rem;
    line-height: 1.42;
    font-weight: 700;
}

.hero-credentials {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin: 0.8rem 0 1.4rem;
}

/* ══════════════════════════════════════════
   PROPUESTA DE VALOR
══════════════════════════════════════════ */
.propuesta-valor {
    padding: 5rem 0;
    background: var(--off-white);
    border-top: 1px solid var(--border);
}

.pv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 2.2rem;
}

.pv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: box-shadow 0.3s, transform 0.3s;
}
.pv-card:hover {
    box-shadow: 0 8px 32px rgba(128,15,47,0.09);
    transform: translateY(-4px);
}

.pv-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pv-icon.rose { background: rgba(128,15,47,0.08); }
.pv-icon.sage { background: rgba(112,151,74,0.12); }
.pv-icon img  { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }

.pv-card h3 {
    font-family: var(--font-slab);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.pv-card p {
    font-size: 0.94rem;
    color: #252525;
    font-weight: 600;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .pv-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .pv-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   TRAYECTORIA / LOGOS
══════════════════════════════════════════ */
.trayectoria {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tray-label {
    text-align: center;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 2rem;
}

.tray-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 3rem;
}

.tray-logos img {
    height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: filter 0.3s;
}
.tray-logos img:hover {
    filter: grayscale(0) opacity(0.9);
}

@media (max-width: 600px) {
    .tray-logos { gap: 1.4rem 2rem; }
    .tray-logos img { height: 50px; max-width: 90px; }
}

/* ══════════════════════════════════════════
   BOTTOM ROW — Acortando Brechas + Health Coach
══════════════════════════════════════════ */
.bottom-row {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* ══════════════════════════════════════════
   PROGRAMA ACORTANDO BRECHAS — FEATURED
══════════════════════════════════════════ */
.programa-featured {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.programa-featured-img {
    display: block;
}

.programa-featured-text {
    padding: 3rem 2.5rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.programa-featured-text .label-small {
    font-size: 1.16rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose);
}

.programa-featured-text h3 {
    font-family: var(--font-slab);
    font-size: 2.28rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

.programa-tagline {
    font-family: var(--font-slab);
    font-size: 1.58rem;
    font-style: italic;
    color: var(--rose);
    font-weight: 700;
}

.programa-featured-text > p:not(.label-small):not(.programa-tagline) {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.75;
}

.programa-opciones {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 0.4rem 0;
}

.programa-opcion {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.75rem 1rem;
    background: var(--off-white);
    border-radius: 8px;
    border-left: 3px solid var(--rose);
}
.programa-opcion strong {
    font-size: 0.96rem;
    font-weight: 800;
    color: var(--text-dark);
}
.programa-opcion span {
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 600;
}

.programa-featured-img {
    overflow: hidden;
}
.programa-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ══════════════════════════════════════════
   HEALTH COACH CARD
══════════════════════════════════════════ */
.health-coach-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hc-title {
    font-family: var(--font-slab);
    font-size: 1.95rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}
.hc-lead {
    font-size: 0.98rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.75;
    margin: 0;
}
.hc-block {
    padding: 1rem 1.25rem;
    background: var(--off-white);
    border-radius: 8px;
    border-left: 3px solid var(--sage);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.hc-block-health {
    border-left-color: var(--rose);
}
.hc-block-label {
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--sage);
    margin: 0;
}
.hc-block-health .hc-block-label {
    color: var(--rose);
}
.hc-block p {
    font-size: 0.94rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .bottom-row {
        grid-template-columns: 1fr;
    }
    .programa-featured {
        grid-template-columns: 1fr;
    }
    .programa-featured-img {
        display: block;
        height: 220px;
        order: -1;
    }
}

/* ══════════════════════════════════════════
   TESTIMONIOS — ACCORDION
══════════════════════════════════════════ */
.testi-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 2rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.testi-accordion {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.2s;
}
.testi-accordion.open {
    box-shadow: 0 4px 20px rgba(128,15,47,0.08);
}

.testi-acc-head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: background 0.2s;
}
.testi-acc-head:hover {
    background: var(--off-white);
}

.testi-acc-name {
    font-family: var(--font-slab);
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--rose);
}

.testi-acc-org {
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--rose);
    background: rgba(128,15,47,0.08);
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
}

.testi-acc-arrow {
    margin-left: auto;
    flex-shrink: 0;
    color: var(--text-light);
    transition: transform 0.25s;
}
.testi-accordion.open .testi-acc-arrow {
    transform: rotate(180deg);
}

.testi-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.22,1,0.36,1);
}
.testi-accordion.open .testi-acc-body {
    max-height: 300px;
}

.testi-acc-body p {
    padding: 0.2rem 1.4rem 1.4rem;
    font-family: var(--font-slab);
    font-size: 1.16rem;
    font-style: italic;
    color: var(--sage);
    font-weight: 700;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .testi-acc-head { padding: 0.9rem 1rem; gap: 0.5rem; }
    .testi-acc-name { font-size: 1rem; }
    .testi-acc-body p { padding: 0.1rem 1rem 1.1rem; font-size: 0.95rem; }
}

/* ══════════════════════════════════════════
   REFERENCIAS — CARDS GRID
══════════════════════════════════════════ */
.ref-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.4rem;
    margin-top: 2rem;
}

.ref-card {
    background: var(--white);
    flex: 0 1 calc((100% - 2.8rem) / 3);
    border: 1px solid rgba(128, 15, 47, 0.45);
    border-radius: 12px;
    padding: 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    transition: box-shadow 0.3s, transform 0.3s;
}
.ref-card:hover {
    box-shadow: 0 8px 28px rgba(128,15,47,0.08);
    transform: translateY(-3px);
}

.ref-org {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rose-text);
    background: rgba(128,15,47,0.08);
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 0.1rem;
}

.ref-name {
    font-family: var(--font-slab);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--rose);
    line-height: 1.2;
}

.ref-cargo {
    font-size: 0.9rem;
    color: var(--rose-text);
    font-style: italic;
    font-weight: 800;
    margin-top: -0.2rem;
}

.ref-quote {
    font-family: var(--font-slab);
    font-size: 1.06rem;
    font-style: italic;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.65;
    flex: 1;
    margin-top: 0.3rem;
}

.ref-quote strong {
    font-weight: 700;
}

.ref-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    color: var(--rose);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
    align-self: flex-start;
    margin-top: 0.4rem;
}
.ref-more-btn:hover { opacity: 0.72; }
.ref-more-btn svg { transition: transform 0.25s; flex-shrink: 0; }
.ref-more-btn.open svg { transform: rotate(180deg); }

.ref-full {
    font-family: var(--font-slab);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.7;
    padding-top: 0.8rem;
    margin-top: 0.4rem;
    border-top: 1px solid var(--border);
}
.ref-full[hidden] { display: none !important; }

@media (max-width: 900px) { .ref-card { flex-basis: calc((100% - 1.4rem) / 2); } }
@media (max-width: 600px) { .ref-card { flex-basis: 100%; } }

/* ══════════════════════════════════════════
   CTA BANNER — PERSONA BLOCK
══════════════════════════════════════════ */
.cta-persona {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.cta-logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255,255,255,0.18);
    padding: 4px;
}

.cta-graciela-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 3px solid rgba(255,255,255,0.75);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-persona-name {
    font-family: var(--font-slab);
    font-size: 1.62rem;
    font-weight: 800;
    color: var(--rose);
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

.cta-persona-role {
    font-size: 1.08rem;
    color: var(--rose);
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.04em;
    margin: 0;
}

@media (max-width: 900px) {
    .cta-graciela-img { width: 200px; height: 200px; }
    .cta-logo-img { width: 38px; height: 38px; }
}
@media (max-width: 768px) {
    .cta-persona { margin-top: 1rem; }
}

/* ══════════════════════════════════════════
   IMÁGENES CIRCULARES DE SECCIÓN
══════════════════════════════════════════ */
.section-round-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 1rem;
    border: 2px solid var(--border);
}

.taller-card .section-round-img {
    width: 68px;
    height: 68px;
    margin: 0 0 0.7rem;
}

.hc-img-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.4rem;
}

.hc-img-row img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.hc-img-row-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contacto-img-round {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.2rem;
    border: 2px solid var(--border);
    display: block;
}

@media (max-width: 768px) {
    .contacto-img-round { width: 70px; height: 70px; margin-bottom: 0.8rem; }
    .hc-img-row img { width: 56px; height: 56px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn-rose { width: 100%; text-align: center; }
}

/* Reduced motion — desactiva todas las animaciones */
@media (prefers-reduced-motion: reduce) {
    .navbar,
    .hero-title, .divider-hero, .hero-subtitle,
    .hero-text .btn-rose, .hero-right, .hero-asset-left {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ── Mobile nav overlay ── */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background: var(--white);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
    position: absolute;
    top: 1.2rem; right: 1.4rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-mid);
    cursor: pointer;
    padding: 4px 8px;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}
.mobile-nav-links a {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--rose); }
.mobile-nav-cta { margin-top: 0.5rem; }

/* ── EYEBROW SECCIÓN TESTIMONIOS ── */
.seccion-eyebrow {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.5rem;
}

/* ── TÍTULOS ROJOS (El Arte de Expresar) ── */
.modalidad-titulo {
    color: var(--rose-text);
    font-weight: 800;
}

/* ── TALLER CARD — nuevos elementos ── */
.taller-modalidades-titulo {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rose-text);
    margin: 1.4rem 0 0.75rem;
}

.taller-card p.taller-modalidades-titulo {
    color: var(--rose-text);
    font-weight: 800;
}

.taller-modalidad {
    margin-bottom: 1.1rem;
}

.taller-subtag {
    font-style: italic;
    color: var(--rose-text);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.taller-card p.taller-subtag {
    color: var(--rose-text);
    font-weight: 800;
}

.taller-cierre {
    font-style: italic;
    font-size: 1.04rem;
    color: #303030;
    font-weight: 700;
    margin: 1.2rem 0 1.4rem;
    border-left: 3px solid var(--rose-text);
    padding-left: 0.9rem;
}

.taller-card p.taller-cierre {
    color: #303030;
    font-weight: 700;
}

.modal-success-msg {
    text-align: center;
    color: var(--rose);
    font-weight: 600;
    padding: 1rem 0 0.5rem;
    font-size: 1rem;
}

/* ── ACORDEÓN BENEFICIOS (El Trazo Emocional) ── */
.beneficios-title {
    margin: 1.25rem 0 0.45rem;
    font-family: var(--font-body);
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    color: var(--rose-text);
}

.beneficio-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 0.5rem 0 1rem;
}

.beneficio-accordion {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

.beneficio-acc-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: background 0.2s;
}
.beneficio-acc-head:hover { background: var(--rose-pale); }

.beneficio-acc-titulo {
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.45;
    color: var(--text-dark);
}

.beneficio-acc-titulo strong {
    color: var(--rose-text);
    font-weight: 800;
}

.beneficio-acc-arrow {
    flex-shrink: 0;
    color: var(--rose);
    transition: transform 0.25s;
}

.beneficio-accordion.open .beneficio-acc-arrow {
    transform: rotate(180deg);
}

.beneficio-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s cubic-bezier(0.22,1,0.36,1);
}
.beneficio-accordion.open .beneficio-acc-body {
    max-height: 200px;
}

.beneficio-acc-body p {
    padding: 0.1rem 1rem 0.9rem;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .beneficios-title { font-size: 1.04rem; }
    .beneficio-acc-head { padding: 0.8rem 0.85rem; }
    .beneficio-acc-titulo { font-size: 0.92rem; }
    .beneficio-acc-body p { padding: 0.05rem 0.85rem 0.8rem; }
}

/* Contenido ampliado de El Arte de Expresar */
.arte-more-btn {
    width: 100%;
    margin: 0.35rem 0 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
}

.arte-more-btn svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.arte-more-btn.open svg {
    transform: rotate(180deg);
}

.arte-expresar-extra {
    margin-bottom: 0.35rem;
}
