/* ============================================================
   VAS CON VOZ 2026 — styles.css
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root {
    --verde:     #005762;
    --verde-lima: #e8f066;
    --rosa:      #f437a7;
    --card-bg:   #B4C8C4;
    --blanco:    #ffffff;
    --negro:     #1a1a1a;
    --gris-claro: #f5f5f5;

    --font-titulo: 'Agrandir', sans-serif;
    --font-cuerpo: 'Roboto', sans-serif;

    --radius: 16px;
    --transicion: 0.35s ease;
}

/* ============================================================
   ANIMACIONES
   ============================================================ */

/* Hero — entran al cargar la página */
@keyframes barrido-derecha {
    from { opacity: 0; transform: translateX(-80px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes barrido-izquierda {
    from { opacity: 0; transform: translateX(80px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-vcv__linea-superior {
    animation: barrido-derecha 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero-vcv__nombre {
    animation: barrido-izquierda 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.55s both;
}

/* Sistema de animaciones por scroll */
.anim {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim--izquierda { transform: translateX(-60px); }
.anim--derecha   { transform: translateX(60px); }
.anim--arriba    { transform: translateY(50px); }
.anim--fade      { transform: none; }

.anim.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Retrasos escalonados para grids */
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.25s; }
.anim-delay-3 { transition-delay: 0.4s; }

/* ---------- RESET ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-cuerpo);
    font-weight: 400;
    color: var(--negro);
    background: var(--blanco);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ---------- BOTÓN ---------- */
.btn-vcv {
    display: inline-block;
    background: var(--rosa);
    color: var(--blanco);
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: background var(--transicion), transform var(--transicion);
    cursor: pointer;
}

.btn-vcv:hover {
    background: #d4289a;
    transform: translateY(-2px);
}

.btn-vcv--sm {
    font-size: 0.85rem;
    padding: 0.5rem 1.4rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-vcv {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--verde);
    padding: 0.75rem 2rem;
}

.navbar-vcv__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-vcv__logo img {
    height: 72px;
    width: auto;
}

.navbar-vcv__nav {
    display: flex;
}

.navbar-vcv__list {
    display: flex;
    align-items: center;
    gap: 2.75rem;
}

.navbar-vcv__link {
    font-family: var(--font-cuerpo);
    font-size: 1.05rem;
    color: var(--blanco);
    transition: color var(--transicion);
    white-space: nowrap;
}

.navbar-vcv__link:hover {
    color: var(--verde-lima);
}

.navbar-vcv__link--activo {
    color: var(--verde-lima);
    font-weight: 700;
}

/* Hamburger */
.navbar-vcv__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar-vcv__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--verde-lima);
    border-radius: 2px;
    transition: var(--transicion);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-vcv {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 480px;
    background-image: url('../img/home/hero-vas-con-voz.webp');
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-vcv__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.10) 100%
    );
}

.hero-vcv__textos {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 5vw;
}

.hero-vcv__linea-superior {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-vcv__frase {
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: clamp(1.2rem, 2.2vw, 2.2rem);
    color: var(--verde-lima);
    white-space: nowrap;
}

.hero-vcv__flecha {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.hero-vcv__flecha svg {
    width: 100%;
    height: 24px;
}

.hero-vcv__nombre {
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 4rem);
    color: var(--rosa);
    line-height: 1;
    margin-top: 0.25rem;
    text-align: center;
}

/* ============================================================
   SUBHERO
   ============================================================ */
.subhero-vcv {
    background: var(--blanco);
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem 5vw;
}

.subhero-vcv__texto-col {
    flex: 1;
    max-width: 520px;
}

.subhero-vcv__texto {
    font-size: 1.4rem;
    color: var(--negro);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-vcv--verde {
    background: var(--verde);
}

.btn-vcv--verde:hover {
    background: #003d47;
}

.subhero-vcv__bullets {
    margin-top: 1.75rem;
    list-style: none;
}

.subhero-vcv__bullets li {
    padding-left: 1.25rem;
    position: relative;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.35rem;
}

.subhero-vcv__bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--negro);
}

.subhero-vcv__imagen-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.subhero-vcv__imagen-col img {
    width: 100%;
    max-width: 560px;
    object-fit: contain;
}

/* ============================================================
   FRANJA VERDE LIMA
   ============================================================ */
.franja-verde {
    background: var(--verde-lima);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    overflow: hidden;
}

.franja-verde img {
    width: 100%;
    max-height: 80px;
    object-fit: cover;
}

/* ============================================================
   OBJETIVO / TÚ SABES QUÉ DECIR
   ============================================================ */
.objetivo-vcv {
    background: var(--verde);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 5vw;
}

.objetivo-vcv__col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.objetivo-vcv__img {
    width: 85%;
    border-radius: var(--radius);
    object-fit: cover;
}

.objetivo-vcv__textos {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.objetivo-vcv__textos p {
    font-size: 1.15rem;
    color: var(--blanco);
    line-height: 1.65;
}

.objetivo-vcv__frase-clave {
    font-size: 1.25rem !important;
    font-weight: 400;
}

.objetivo-vcv__frase-clave em {
    font-style: italic;
}

.objetivo-vcv__marca {
    font-weight: 700;
}

.objetivo-vcv__destacado {
    color: var(--verde-lima) !important;
    font-weight: 700;
}

/* ============================================================
   ¿DE QUÉ SE TRATA?
   ============================================================ */
.de-que-trata-vcv {
    background: var(--blanco);
    padding: 5rem 5vw;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.de-que-trata-vcv__imagen {
    flex-basis: 100%;
}

.de-que-trata-vcv__imagen img {
    max-width: 820px;
    width: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    display: block;
    margin: 0 auto;
}

.de-que-trata-vcv__titulo-col {
    flex: 0 0 280px;
}

.de-que-trata-vcv__titulo {
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: 2.6rem;
    color: var(--verde);
    line-height: 1.1;
}

.de-que-trata-vcv__cards-col {
    flex: 1;
}

.de-que-trata-vcv__texto {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.de-que-trata-vcv__texto p {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.75;
}

.de-que-trata-vcv__resaltado {
    font-weight: 700;
    color: var(--verde) !important;
}

/* ============================================================
   TALLERES
   ============================================================ */
.talleres-vcv {
    background: var(--verde);
    padding: 5rem 2rem;
    text-align: center;
}

.talleres-vcv__titulo {
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--verde-lima);
    margin-bottom: 1.5rem;
}

.talleres-vcv__intro {
    color: var(--blanco);
    max-width: 1100px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    text-align: justify;
    text-align-last: center;
    line-height: 1.7;
}

.talleres-vcv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.taller-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.taller-card__img-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.taller-card:hover .taller-card__img-wrap {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.taller-card__img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.taller-card__titulo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--verde-lima);
    line-height: 1.2;
}

/* ============================================================
   ÚNETE
   ============================================================ */
.unete-vcv {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unete-vcv img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.unete-vcv .btn-vcv {
    position: absolute;
    font-size: 1.1rem;
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonios-vcv {
    padding: 5rem 3vw;
}

.testimonios-vcv__titulo {
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--verde);
    text-align: center;
    margin-bottom: 3rem;
}

.testimonios-vcv__carousel-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.testimonios-vcv__overflow {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.testimonios-vcv__track {
    display: flex;
    gap: 2rem;
    transition: transform 0.45s ease;
    will-change: transform;
}

.testimonios-vcv__btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rosa);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanco);
    transition: background var(--transicion), transform var(--transicion), opacity var(--transicion);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.testimonios-vcv__btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.testimonios-vcv__btn:not(:disabled):hover {
    background: var(--verde);
    transform: scale(1.08);
}

.testimonios-vcv__btn svg {
    width: 22px;
    height: 22px;
}

.testimonio-card {
    background: var(--verde-lima);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
    will-change: transform;
}

.testimonio-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonio-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.testimonio-card__header img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonio-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonio-card__nombre {
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: 1rem;
    color: var(--verde);
}

.testimonio-card__cargo {
    font-family: var(--font-cuerpo);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--rosa);
    line-height: 1.3;
}


.testimonio-card__texto {
    font-size: 0.95rem;
    font-style: italic;
    color: #444;
    line-height: 1.7;
}

/* ============================================================
   CONÓCEME
   ============================================================ */
.conoceme-titulo {
    background: var(--blanco);
    text-align: center;
    padding: 3.5rem 5vw 2rem;
}

.conoceme-titulo__texto {
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--verde);
}

.conoceme-hero {
    padding: 0 5vw;
}

.conoceme-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.conoceme-bio {
    background: var(--blanco);
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    padding: 4.5rem 5vw;
    align-items: start;
}

.conoceme-bio__nombre {
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    color: var(--rosa);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.conoceme-bio__cargo {
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--rosa);
    line-height: 1.35;
}

.conoceme-bio__texto-col {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.conoceme-bio__texto-col p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.75;
}

.conoceme-bio__texto-col strong {
    color: var(--verde);
}

.conoceme-bio__texto-col a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--verde);
    transition: color var(--transicion);
}

.conoceme-bio__texto-col a:hover,
.conoceme-bio__texto-col a:hover strong {
    color: var(--rosa);
}

.conoceme-bio-extendida a {
    color: var(--blanco);
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.5);
    transition: color var(--transicion);
}

.conoceme-bio-extendida a:hover {
    color: var(--verde-lima);
}

.conoceme-bio-extendida {
    background: var(--verde);
    padding: 4rem 5vw;
}

.conoceme-bio-extendida__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.conoceme-bio-extendida p {
    font-size: 1.25rem;
    color: var(--blanco);
    line-height: 1.8;
    text-align: justify;
}

.conoceme-portafolio {
    max-width: 1100px;
    margin: 3.5rem auto 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 3rem;
}

.conoceme-portafolio__titulo {
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--blanco);
    margin-bottom: 2.5rem;
}

.conoceme-portafolio__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
}

.conoceme-portafolio__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.conoceme-portafolio__col img {
    width: 80px;
    height: auto;
}

.conoceme-portafolio__subtitulo {
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: 1rem;
    color: var(--blanco);
}

.conoceme-portafolio__col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.conoceme-portafolio__col ul li a {
    font-size: 0.95rem;
    color: var(--verde-lima);
    text-decoration: underline;
    transition: color var(--transicion);
}

.conoceme-portafolio__col ul li a:hover {
    color: var(--rosa);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-vcv {
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    padding: 2.5rem 5vw 1.5rem;
    gap: 1.5rem;
}

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

.footer-vcv__contacto {
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: 2rem;
    color: var(--verde);
}

.footer-vcv__logo img {
    height: 90px;
    width: auto;
}

.footer-vcv__redes {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.footer-vcv__redes a img {
    height: 36px;
    width: auto;
    transition: transform var(--transicion);
}

.footer-vcv__redes a:hover img {
    transform: scale(1.12);
}

.footer-vcv__copy {
    border-top: 1px solid rgba(22, 87, 97, 0.25);
    padding-top: 1rem;
    text-align: center;
}

.footer-vcv__copy p {
    font-size: 0.85rem;
    color: var(--verde);
}

.footer-vcv__copy a {
    color: var(--verde);
    font-weight: 700;
    text-decoration: underline;
}

.footer-vcv__copy a:hover {
    color: var(--rosa);
}

/* ============================================================
   BOTÓN VOLVER ARRIBA
   ============================================================ */
.btn-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rosa);
    color: var(--blanco);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.btn-top svg {
    width: 22px;
    height: 22px;
}

.btn-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-top:hover {
    background: #d4289a;
    transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .talleres-vcv__grid {
        grid-template-columns: 1fr 1fr;
    }


    .objetivo-vcv {
        grid-template-columns: 1fr;
    }

    .de-que-trata-vcv {
        flex-direction: column;
    }

    .de-que-trata-vcv__titulo-col {
        flex: none;
    }

    .subhero-vcv {
        flex-direction: column;
    }

    .subhero-vcv__imagen-col img {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    /* Navbar responsive */
    .navbar-vcv__toggle {
        display: flex;
    }

    .navbar-vcv__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--verde);
        padding: 1.5rem 2rem;
        z-index: 99;
    }

    .navbar-vcv__nav.abierto {
        display: flex;
    }

    .navbar-vcv {
        position: sticky;
        top: 0;
    }

    .navbar-vcv__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        width: 100%;
    }

    /* Hero */
    .hero-vcv {
        height: 60vh;
        min-height: 380px;
    }

    .hero-vcv__linea-superior {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-vcv__frase {
        white-space: normal;
    }

    .hero-vcv__flecha {
        width: 40px;
        height: 60px;
        transform: rotate(90deg);
    }

    /* Grids */
    .talleres-vcv__grid {
        grid-template-columns: 1fr;
    }

}

/* ============================================================
   TALLER DETALLE (asesorías, conoce tu voz, desenvuélvete)
   ============================================================ */
.taller-detalle__header {
    background: var(--blanco);
    text-align: center;
    padding: 3.5rem 5vw 2.5rem;
}

.taller-detalle__titulo {
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--verde);
    margin-bottom: 0.75rem;
}

.taller-detalle__subtitulo {
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: clamp(1.1rem, 2.2vw, 1.8rem);
    color: var(--rosa);
}

.taller-detalle__contenido {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5rem;
    padding: 3rem 5vw 4rem;
    align-items: center;
}

.taller-detalle__img-col {
    padding: 1rem;
}

.taller-detalle__img {
    width: 90%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    display: block;
}

.taller-detalle__texto {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.taller-detalle__texto p {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.75;
}

.taller-detalle__texto-titulo {
    font-weight: 700;
    color: var(--verde);
}

.taller-detalle__bullets {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    list-style: none;
}

.taller-detalle__bullets li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.65;
}

.taller-detalle__bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--verde);
    font-weight: 700;
}

.taller-detalle__texto .taller-detalle__importante {
    font-size: 1.05rem;
    color: var(--rosa);
    font-weight: 700;
    line-height: 1.6;
}

.taller-detalle__info-wrap {
    background: var(--blanco);
    padding: 1rem 5vw 2.5rem;
}

.taller-detalle__info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.5rem;
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.taller-detalle__info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.taller-detalle__info-item img {
    width: 110px;
    height: auto;
}

.taller-detalle__info-titulo {
    font-family: var(--font-cuerpo);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--negro);
}

.taller-detalle__info-texto {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.55;
}

.taller-detalle__video-wrap {
    padding: 2rem 5vw 0;
    max-width: 860px;
    margin: 0 auto;
}

.taller-detalle__video {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    display: block;
}

.taller-detalle__cta {
    text-align: center;
    padding: 2rem 5vw 4rem;
}

.taller-detalle__cta .btn-vcv {
    font-size: 1.1rem;
    padding: 0.85rem 2.5rem;
}

.taller-detalle__relacionados {
    padding: 0 5vw 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.taller-detalle__relacionados-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    max-width: 980px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .taller-detalle__header {
        padding-bottom: 1rem;
    }

    .taller-detalle__contenido {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .taller-detalle__img-col {
        padding: 0;
    }

    .taller-detalle__img {
        width: 100%;
        margin: 0 auto;
    }

    .taller-detalle__info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .taller-detalle__relacionados-grid {
        grid-template-columns: 1fr;
    }

    /* Carrusel testimonios mobile */
    .testimonios-vcv {
        padding: 4rem 1.25rem;
    }

    .testimonios-vcv__carousel-wrap {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0.5rem;
    }

    #testimoniosAnterior {
        order: 0;
    }

    #testimoniosSiguiente {
        order: 1;
    }

    .testimonios-vcv__overflow {
        order: 2;
        flex: none;
        width: 100%;
    }

    .testimonios-vcv__btn {
        width: 36px;
        height: 36px;
    }

    .testimonios-vcv__btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================================
   GALERÍA
   ============================================================ */
.galeria-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 4vw 4rem;
}

.galeria-slider__btn {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--rosa);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanco);
    transition: background var(--transicion), transform var(--transicion);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.galeria-slider__btn svg {
    width: 22px;
    height: 22px;
}

.galeria-slider__btn:hover {
    background: #d4289a;
    transform: scale(1.08);
}

.galeria-slider__marco {
    position: relative;
    flex: 1;
    max-width: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.galeria-slider__img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--radius);
    display: block;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}

.galeria-slider__img.saliendo {
    opacity: 0;
}

.galeria-slider__video {
    display: none;
    width: 100%;
    max-height: 78vh;
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.galeria-slider__contador {
    position: absolute;
    bottom: 0.75rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: var(--blanco);
    font-size: 0.85rem;
    font-family: var(--font-cuerpo);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

/* Conóceme responsive */
@media (max-width: 768px) {
    /* Elimina translateX en mobile para evitar scroll horizontal */
    .anim--izquierda,
    .anim--derecha {
        transform: translateY(30px);
    }

    .conoceme-bio {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .conoceme-portafolio__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .conoceme-portafolio {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }

    /* Galería responsive */
    .galeria-slider {
        position: relative;
        gap: 0;
        padding: 2rem 0 3rem;
    }

    .galeria-slider__marco {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    .galeria-slider__btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 38px;
        height: 38px;
    }

    #galeriaAnterior {
        left: 0.4rem;
    }

    #galeriaSiguiente {
        right: 0.4rem;
    }

    .galeria-slider__btn svg {
        width: 18px;
        height: 18px;
    }

    /* Footer responsive */
    .footer-vcv__principal {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-vcv__redes {
        justify-content: center;
    }
}
