/* ============================================ */
/* layout.css — Nav, Footer, Grid, Secciones    */
/* ============================================ */

/* ============================================ */
/* NAV — Cápsula flotante                       */
/* ============================================ */
.nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-nav);
    width: calc(100% - 48px);
    max-width: 1100px;
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 28px;
    background: oklch(from #FFFFFF l c h / 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-glass);
    transition: all var(--transition-smooth);
}

.nav.scrolled .nav__container {
    background: oklch(from #FFFFFF l c h / 0.70);
    box-shadow: var(--shadow-hover);
}

.nav__logo-img {
    height: 55px; /* Aumentamos el tamaño de la imagen */
    width: auto;
    display: block;
    object-fit: contain;
    transform: scale(1.3); /* Lo ampliamos un poco más para compensar si la imagen tiene márgenes internos */
    transform-origin: left center;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-soft);
    transition: all var(--transition-smooth);
    position: relative;
}

.nav__link:hover {
    color: var(--color-purpura);
    background: transparent;
}

.nav__link--active {
    color: var(--color-purpura);
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

.nav__cta {
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 10px 22px;
}

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    z-index: calc(var(--z-nav) + 10);
}

.nav__hamburger-line {
    width: 26px;
    height: 2.5px;
    background: var(--color-purpura);
    border-radius: 4px;
    transition: all var(--transition-smooth);
}

.nav__hamburger.active .nav__hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active .nav__hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.active .nav__hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav__mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: oklch(from #3D2B4A l c h / 0.50);
    z-index: var(--z-overlay);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav__mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.nav__mobile-menu {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: calc(var(--z-overlay) + 10);
    background: var(--color-crema);
    border-radius: 28px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-hover);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    width: calc(100% - 64px);
    max-width: 380px;
}

.nav__mobile-menu.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.nav__mobile-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.nav__mobile-link {
    display: block;
    padding: 14px 20px;
    border-radius: var(--radius-pill);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition-smooth);
}

.nav__mobile-link:hover {
    background: oklch(from #E8C4C4 l c h / 0.30);
    color: var(--color-purpura);
}

.nav__mobile-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* ============================================ */
/* HERO                                         */
/* ============================================ */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 380px; /* Espacio extra abajo para que el slider pise sin comerse el texto */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fdfdfd;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: var(--z-hero);
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: oklch(from #000000 l c h / 0.20);
    z-index: 2;
}

.hero__grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    pointer-events: none;
}

.hero__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 5;
    line-height: 0;
}

.hero__wave svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero__content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 0 24px;
    max-width: 1200px;
}

.hero__headline {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-family: var(--font-ui);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 36px;
    line-height: 1.5;
}

.hero__cta {
    display: inline-block;
    margin-bottom: 32px;
}

.hero__valores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: oklch(from #FFFFFF l c h / 0.70);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero__valores-dot {
    color: oklch(from #E8C4C4 l c h / 0.60);
    font-size: 1.2rem;
}

/* ============================================ */
/* TALLER ALE OLIVER                            */
/* ============================================ */
.taller-ale {
    position: relative;
    z-index: 5;
    background: var(--color-purpura);
    padding: 120px 0 160px; /* Extra padding bottom for the wave */
}

.taller-ale__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.taller-ale__tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--color-rosa);
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}

.taller-ale__title {
    color: var(--color-marfil);
    margin-bottom: 12px;
    font-size: 2.8rem;
}

.taller-ale__subtitle {
    color: var(--color-marfil);
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.taller-ale__text {
    margin-bottom: 16px;
    color: oklch(from var(--color-marfil) l c h / 0.8);
    line-height: 1.6;
}

.taller-ale__text--highlight {
    font-weight: 600;
    color: var(--color-marfil);
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 24px;
}

.taller-ale__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.taller-ale__benefits li {
    margin-bottom: 12px;
    color: var(--color-marfil);
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.taller-ale__lista-icon {
    color: var(--color-rosa);
    flex-shrink: 0;
}

.taller-ale__btn {
    display: inline-flex;
    margin-bottom: 16px;
    background-color: var(--color-rosa);
    color: var(--color-purpura);
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.taller-ale__btn:hover {
    background-color: var(--color-marfil);
    color: var(--color-purpura);
}

.taller-ale__note {
    font-size: 0.85rem;
    color: oklch(from var(--color-marfil) l c h / 0.6);
    margin-bottom: 0;
}

.taller-ale__media {
    position: relative;
    padding: 20px;
}

.taller-ale__photo {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.taller-ale__logo {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 180px;
    background: #F5EDE3;
    border-radius: 50%;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.taller-ale__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
}

.taller-ale__wave svg {
    width: 100%;
    height: 100px;
    display: block;
}

/* ============================================ */
/* PILARES                                      */
/* ============================================ */
.pilares {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(
        rgba(61, 43, 74, 0.65),
        rgba(61, 43, 74, 0.65)
    ), url('../img/fondo1.webp') center/cover no-repeat;
}

.pilares__titulo {
    margin-bottom: 36px;
    color: var(--color-white);
}

.pilares__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 0;
}

.pilares__ubicacion {
    text-align: center;
}

.pilares__ubicacion-pill {
    display: inline-block;
    padding: 14px 28px;
    background: var(--color-white);
    border: 1px solid oklch(from var(--color-purpura) l c h / 0.12);
    box-shadow: 0 4px 16px oklch(from var(--color-purpura) l c h / 0.06);
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 500;
}

/* ============================================ */
/* ESPACIO GALERÍA                              */
/* ============================================ */
.espacio-galeria {
    position: relative;
    padding: 100px 0;
    background: #fffcf9;
    text-align: center;
}

.espacio-galeria__titulo {
    margin-bottom: 12px;
    color: var(--color-purpura);
}

.espacio-galeria__subtitulo {
    font-size: 1.1rem;
    color: var(--color-text-soft);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.espacio-galeria__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    grid-auto-rows: 290px;
    gap: 12px; /* Más juntitas, menos espacio */
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.espacio-galeria__item {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.espacio-galeria__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
}

.espacio-galeria__item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.espacio-galeria__item:hover img {
    transform: scale(1.05);
}

/* Posicionamiento en el grid */
.espacio-galeria__grid .item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    border-radius: 60px 0 0 0; /* Outer top-left corner rounded */
}

.espacio-galeria__grid .item-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    border-radius: 0; /* Outer bottom-left corner is now square */
}

.espacio-galeria__grid .item-3 {
    grid-column: 2 / 3;
    grid-row: 1 / 3; /* Spans 2 rows */
    border-radius: 0; /* Completely square center item */
}

.espacio-galeria__grid .item-4 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    border-radius: 0; /* Outer top-right corner is now square */
}

.espacio-galeria__grid .item-5 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    border-radius: 0 0 60px 0; /* Outer bottom-right corner rounded */
}

/* ============================================ */
/* SERVICIOS — Slider Flotante                  */
/* ============================================ */
.servicios {
    position: relative;
    z-index: 10;
    background: #fdfdfd;
    padding-top: 1px; /* Evita margin collapse */
    padding-bottom: 80px; /* Espacio inferior antes de la siguiente sección */
}

/* ---- Slider Contenedor ---- */
.servicios-slider-container {
    width: 100%;
    margin-bottom: 20px; /* Compensamos el padding agregado al track para no empujar lo de abajo */
    margin-top: -340px; /* Subimos un poco más para compensar el padding superior del track */
    position: relative;
    overflow: hidden; /* Evitar scroll horizontal extra del body */
}

.servicios-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 60px calc(50vw - 150px); /* Aumentamos el padding vertical a 60px para que no se corte la sombra */
    box-sizing: content-box;
    align-items: center;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.servicios-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.servicio-slide {
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    scroll-snap-align: center;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    transform: scale(0.85); /* Más chico si no está activo */
    opacity: 0.6;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.servicio-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Estado Activo del Slide */
.servicio-slide.active-slide {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 20px 40px rgba(61, 43, 74, 0.2);
}

/* ---- Info Contenedor (Abajo) ---- */
.servicios-info-container {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 20px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    align-items: flex-start; /* Cambio a start para que no salte de altura */
    box-shadow: none;
    position: relative;
    z-index: 2;
}

.servicios-info-left {
    padding-right: 20px;
    text-align: right;
    border-right: 1px solid oklch(from var(--color-purpura) l c h / 0.1); /* Linea divisoria fina sutil */
}

.servicios-info__title {
    font-size: 2rem;
    color: var(--color-purpura);
    margin-bottom: 20px;
}

.servicios-info__cta {
    display: inline-block;
    background: var(--color-purpura);
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.servicios-info__cta:hover {
    background: #C9B4D4; /* Color pedido por usuario */
    color: var(--color-purpura);
}

.servicios-info-right {
    padding-left: 20px;
    min-height: 380px;
}

.servicios-info__service-name {
    font-size: 1.8rem;
    color: var(--color-purpura);
    margin-bottom: 10px;
}

.servicios-info__service-desc {
    font-size: 1rem;
    color: oklch(from var(--color-purpura) l c h / 0.7);
    margin-bottom: 20px;
}

.servicios-info__prices p {
    font-size: 1.1rem;
    color: var(--color-purpura);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed oklch(from var(--color-purpura) l c h / 0.2);
    padding-bottom: 6px;
}

.servicios-info__prices p:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.servicios-info__prices strong {
    font-weight: 600;
}

.servicios__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.servicios__wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================ */
/* ESPACIO                                      */
/* ============================================ */
.espacio {
    position: relative;
    padding: 120px 0 140px 0;
    background: #fffcf9;
}

.espacio__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.espacio__titulo {
    text-align: left;
    margin-bottom: 20px;
}

.espacio__descripcion {
    font-size: 1.05rem;
    color: var(--color-purpura);
    margin-bottom: 24px;
    line-height: 1.8;
}

.espacio__lista {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.espacio__lista li {
    font-size: 1.05rem;
    color: var(--color-text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.espacio__lista-icon {
    color: var(--color-tierra);
    flex-shrink: 0;
}

.espacio__foto {
    width: 100%;
    height: auto !important;
    aspect-ratio: 1784 / 1050;
    object-fit: cover;
}

.espacio__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.espacio__wave svg {
    width: 100%;
    height: auto;
    display: block;
}

.espacio__wave svg path {
    fill: var(--color-crema);
}

/* ============================================ */
/* NOSOTROS                                     */
/* ============================================ */
.nosotros {
    position: relative;
    padding: var(--section-padding);
    background: var(--color-crema);
}

.nosotros__yamila {
    margin-bottom: 80px;
}

.nosotros__yamila-grid {
    display: grid;
    grid-template-columns: 380px 1.3fr;
    max-width: 950px;
    margin: 0 auto;
    gap: 0;
    align-items: stretch;
    background: var(--color-purpura);
    border-radius: 120px 0 120px 0;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.nosotros__yamila-grid:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.nosotros__yamila-img {
    width: 100%;
    position: relative;
}

.nosotros__yamila-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nosotros__yamila-texto {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nosotros__label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-rosa);
    margin-bottom: 8px;
    font-family: var(--font-ui);
    font-weight: 600;
}

.nosotros__yamila-nombre {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--color-white);
    font-weight: 400;
}

.nosotros__yamila-bio {
    font-size: 1.05rem;
    color: oklch(from var(--color-marfil) l c h / 0.85);
    line-height: 1.8;
    margin-bottom: 24px;
}

.nosotros__yamila-titulos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.nosotros__frase {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: normal;
    font-size: 1.8rem;
    color: var(--color-white);
    border-left: 4px solid var(--color-rosa);
    padding-left: 20px;
    line-height: 1.3;
}

.nosotros__equipo {
    text-align: center;
}

.nosotros__equipo-titulo {
    margin-bottom: 12px;
}

.nosotros__equipo-subtitulo {
    color: var(--color-text-soft);
    margin-bottom: 48px;
    font-size: 1.05rem;
}

.nosotros__equipo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.nosotros__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.nosotros__wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================ */
/* TESTIMONIOS                                  */
/* ============================================ */
.testimonios {
    padding: var(--section-padding);
    background: #fffcf9;
}

.testimonios__titulo {
    margin-bottom: 48px;
}

.testimonios__slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0 30px;
}

.testimonios__track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marquee 105s linear infinite;
}

.testimonios__track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonios__instagram {
    text-align: center;
}

.testimonios__instagram-titulo {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--color-purpura);
}

.testimonios__instagram-usuario {
    margin-bottom: 28px;
}

.testimonios__instagram-usuario a {
    font-size: 1.1rem;
    color: var(--color-tierra);
    font-weight: 500;
    transition: color var(--transition-smooth);
}

.testimonios__instagram-usuario a:hover {
    color: var(--color-purpura);
}

.testimonios__instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.testimonios__instagram-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-smooth);
}

.testimonios__instagram-img:hover {
    transform: scale(1.03);
}

/* ============================================ */
/* CONTACTO                                     */
/* ============================================ */
.contacto {
    padding: var(--section-padding);
    background: var(--color-purpura);
    color: var(--color-marfil);
}

.contacto__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.contacto__col-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.contacto__titulo {
    color: var(--color-marfil);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contacto__subtitulo {
    font-size: 1.15rem;
    color: oklch(from #F5EDE3 l c h / 0.75);
    margin-bottom: 32px;
    font-weight: 300;
}

.contacto__acciones {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
    align-items: center;
}

.contacto .btn--whatsapp {
    font-size: 1.25rem;
    padding: 20px 48px;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 30px oklch(from #25D366 l c h / 0.4);
    transform: scale(1.05);
    transition: transform var(--transition-bounce), box-shadow var(--transition-bounce), background-color var(--transition-smooth);
}

.contacto .btn--whatsapp:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 14px 36px oklch(from #25D366 l c h / 0.55);
}

.contacto__mapa {
    width: 100%;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    line-height: 0;
}

.contacto__mapa iframe {
    display: block;
    filter: saturate(0.7);
    transition: filter var(--transition-smooth);
}

.contacto__mapa iframe:hover {
    filter: saturate(0.95);
}

.contacto__info {
    font-size: 0.95rem;
    color: oklch(from #F5EDE3 l c h / 0.65);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacto__direccion,
.contacto__horarios {
    margin: 0;
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.footer {
    background: var(--color-purpura);
    color: var(--color-marfil);
    padding: 48px 0 24px;
    border-top: 1px solid oklch(from #F5EDE3 l c h / 0.08);
}

.footer__grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 32px;
}

.footer__logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer__logo {
    font-size: 1.8rem;
    margin-bottom: 0;
    letter-spacing: 0.03em;
}



.footer__social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer__social a {
    color: oklch(from #F5EDE3 l c h / 0.65);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-smooth), transform var(--transition-smooth);
}

.footer__social a:hover {
    color: var(--color-rosa);
    transform: scale(1.15);
}

.footer__social-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.footer__bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid oklch(from #F5EDE3 l c h / 0.08);
}

.footer__bottom p {
    font-size: 0.8rem;
    color: oklch(from #F5EDE3 l c h / 0.40);
}

.footer__bottom p a {
    color: oklch(from #F5EDE3 l c h / 0.55);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-smooth);
}

.footer__bottom p a:hover {
    color: var(--color-rosa);
}

/* ============================================ */
/* DECORACIONES DE FOTO ESTILO OFFSET BLOCK     */
/* ============================================ */
.photo-deco-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: block;
    transition: transform var(--transition-bounce);
}

.photo-deco-container::before {
    display: none;
}

.photo-deco-frame {
    position: relative;
    z-index: 2;
    border-radius: 120px 0 120px 0;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    line-height: 0;
    transition: box-shadow var(--transition-bounce);
}

.photo-deco-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 120px 0 120px 0;
    transition: transform var(--transition-bounce);
}

.photo-deco-container:hover .photo-deco-frame img {
    transform: scale(1.03);
}

.photo-deco-container:hover .photo-deco-frame {
    box-shadow: var(--shadow-hover);
}

.photo-deco-container:hover {
    transform: translateY(-6px);
}

/* ============================================ */
/* PROFES CAROUSEL                              */
/* ============================================ */
.profes-carousel {
    margin-top: 50px;
    padding-top: 30px;
}
.profes-carousel__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.profes-carousel__arrow {
    background: none;
    border: none;
    color: var(--color-tierra);
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    transition: transform var(--transition-smooth);
}
.profes-carousel__arrow:hover {
    transform: scale(1.2);
}
.profes-carousel__text-container {
    flex-grow: 1;
    text-align: center;
    position: relative;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profes-slide {
    display: none;
    color: var(--color-tierra);
    animation: fadeInSlide 0.5s ease;
    width: 100%;
}
.profes-slide.active {
    display: block;
}
.profes-slide__texto {
    font-family: 'The Seasons', serif;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: normal;
    color: var(--color-tierra);
}
.profes-slide__quote-icon {
    display: block;
    margin: 0 auto 20px auto;
    opacity: 0.25;
}
.profes-slide__nombre {
    font-size: 0.95rem;
    font-weight: 500;
}
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
