/* =========================================================
   VARIABLES GENERALES
========================================================= */

:root {
    --yoli-brown-950: #2b0904;
    --yoli-brown-900: #3d1009;
    --yoli-brown-800: #5c281b;
    --yoli-brown-700: #7b4431;
    --yoli-brown-600: #925a42;
    --yoli-cream-100: #fffaf4;
    --yoli-cream-200: #f8eee5;
    --yoli-border: #e7ddd5;
    --yoli-text: #1c1816;
    --yoli-muted: #6f6965;
    --yoli-white: #ffffff;
    --yoli-header-height: 96px;
    --yoli-transition: 280ms cubic-bezier(0.22, 1, 0.36, 1);
    --yoli-font-heading: "Oswald", "Arial Narrow", sans-serif;
    --yoli-font-body: "Poppins", Arial, sans-serif;
}

/* =========================================================
   AJUSTES GENERALES DE ASTRA
========================================================= */

#masthead,
.site-header {
    display: none !important;
}

body {
    overflow-x: hidden;
}

body.yoli-menu-open {
    overflow: hidden;
}

.yoli-container {
    width: min(100% - 48px, 1560px);
    margin-inline: auto;
}

.yoli-site-header,
.yoli-site-header * {
    box-sizing: border-box;
}

/* =========================================================
   TOP BAR
========================================================= */

.yoli-topbar {
    position: relative;
    z-index: 1002;
    background: var(--yoli-brown-950);
    color: var(--yoli-white);
    font-size: 13px;
}

.yoli-topbar-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.yoli-topbar-group {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.yoli-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    white-space: nowrap;
    transition:
        color var(--yoli-transition),
        opacity var(--yoli-transition);
}

a.yoli-topbar-item:hover {
    color: var(--yoli-white);
    opacity: 0.78;
}

.yoli-topbar-item svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoli-topbar-divider {
    width: 1px;
    height: 16px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.28);
}

.yoli-topbar-phone {
    font-weight: 700;
}

/* =========================================================
   HEADER PRINCIPAL
========================================================= */

.yoli-main-header {
    position: relative;
    z-index: 1001;
    background: var(--yoli-white);
    border-bottom: 1px solid rgba(43, 9, 4, 0.06);
    transition:
        box-shadow var(--yoli-transition),
        transform var(--yoli-transition),
        background-color var(--yoli-transition);
}

.yoli-site-header.is-sticky .yoli-main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 12px 40px rgba(43, 9, 4, 0.1);
    animation: yoliHeaderEnter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.admin-bar .yoli-site-header.is-sticky .yoli-main-header {
    top: 32px;
}

.yoli-main-header-inner {
    min-height: var(--yoli-header-height);
    display: grid;
    grid-template-columns: 240px 1fr auto;
    align-items: center;
    gap: 42px;
}

@keyframes yoliHeaderEnter {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =========================================================
   LOGO
========================================================= */

.yoli-logo {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    text-decoration: none;
}

.yoli-logo-image {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 76px;
    object-fit: contain;
    transition: transform var(--yoli-transition);
}

.yoli-logo:hover .yoli-logo-image {
    transform: scale(1.035);
}

.yoli-logo-fallback {
    color: var(--yoli-brown-900);
    font-size: 24px;
    font-weight: 800;
}

/* =========================================================
   NAVEGACIÓN
========================================================= */

.yoli-main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 3.5vw, 62px);
}

.yoli-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--yoli-text);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color var(--yoli-transition);
}

.yoli-nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 0;
    height: 2px;
    border-radius: 20px;
    background: var(--yoli-brown-700);
    transform: translateX(-50%);
    transition: width var(--yoli-transition);
}

.yoli-nav-link:hover,
.yoli-nav-link.is-active {
    color: var(--yoli-brown-700);
}

.yoli-nav-link:hover::after,
.yoli-nav-link.is-active::after {
    width: 100%;
}

/* =========================================================
   ACCIONES DEL HEADER
========================================================= */

.yoli-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.yoli-header-icon-button {
    position: relative;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--yoli-border);
    border-radius: 50%;
    background: var(--yoli-white);
    color: var(--yoli-text);
    text-decoration: none;
    cursor: pointer;
    transition:
        color var(--yoli-transition),
        border-color var(--yoli-transition),
        background-color var(--yoli-transition),
        transform var(--yoli-transition),
        box-shadow var(--yoli-transition);
}

.yoli-header-icon-button:hover {
    color: var(--yoli-white);
    border-color: var(--yoli-brown-700);
    background: var(--yoli-brown-700);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(92, 40, 27, 0.18);
}

.yoli-header-icon-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoli-cart-count {
    position: absolute;
    top: -5px;
    right: -3px;
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--yoli-white);
    border-radius: 99px;
    background: var(--yoli-brown-700);
    color: var(--yoli-white);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}

.yoli-header-order-button {
    min-height: 56px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--yoli-brown-700);
    color: var(--yoli-white);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(92, 40, 27, 0.16);
    transition:
        background-color var(--yoli-transition),
        transform var(--yoli-transition),
        box-shadow var(--yoli-transition);
}

.yoli-header-order-button:hover {
    background: var(--yoli-brown-900);
    color: var(--yoli-white);
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(43, 9, 4, 0.22);
}

.yoli-header-order-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--yoli-transition);
}

.yoli-header-order-button:hover svg {
    transform: translateX(5px);
}

/* =========================================================
   BUSCADOR DESPLEGABLE
========================================================= */

.yoli-search-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 22px 24px;
    background: var(--yoli-white);
    border-top: 1px solid var(--yoli-border);
    box-shadow: 0 18px 35px rgba(43, 9, 4, 0.1);
    transform-origin: top;
}

.yoli-search-panel:not([hidden]) {
    animation: yoliSearchOpen 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes yoliSearchOpen {
    from {
        opacity: 0;
        transform: translateY(-14px) scaleY(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

.yoli-search-form {
    width: min(100%, 900px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.yoli-search-form input[type="search"] {
    width: 100%;
    min-height: 56px;
    padding: 0 22px;
    border: 1px solid var(--yoli-border);
    border-radius: 999px;
    background: var(--yoli-cream-100);
    color: var(--yoli-text);
    font-size: 15px;
    outline: none;
    transition:
        border-color var(--yoli-transition),
        box-shadow var(--yoli-transition),
        background-color var(--yoli-transition);
}

.yoli-search-form input[type="search"]:focus {
    border-color: var(--yoli-brown-700);
    background: var(--yoli-white);
    box-shadow: 0 0 0 4px rgba(123, 68, 49, 0.12);
}

.yoli-search-form button {
    min-width: 140px;
    min-height: 56px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: var(--yoli-brown-700);
    color: var(--yoli-white);
    font-weight: 800;
    cursor: pointer;
    transition:
        background-color var(--yoli-transition),
        transform var(--yoli-transition);
}

.yoli-search-form button:hover {
    background: var(--yoli-brown-900);
    transform: translateY(-2px);
}

/* =========================================================
   BOTÓN MÓVIL
========================================================= */

.yoli-mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--yoli-border);
    border-radius: 50%;
    background: var(--yoli-white);
    cursor: pointer;
}

.yoli-mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 10px;
    background: var(--yoli-text);
    transition:
        transform var(--yoli-transition),
        opacity var(--yoli-transition);
}

.yoli-mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.yoli-mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.yoli-mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.yoli-mobile-overlay {
    position: fixed;
    z-index: 998;
    inset: 0;
    visibility: hidden;
    background: rgba(22, 8, 4, 0.55);
    opacity: 0;
    backdrop-filter: blur(4px);
    transition:
        opacity var(--yoli-transition),
        visibility var(--yoli-transition);
}

.yoli-mobile-overlay.is-active {
    visibility: visible;
    opacity: 1;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1180px) {

    .yoli-topbar-group .yoli-topbar-item:first-child,
    .yoli-topbar-group .yoli-topbar-divider:first-of-type {
        display: none;
    }

    .yoli-main-header-inner {
        grid-template-columns: 190px 1fr auto;
        gap: 24px;
    }

    .yoli-main-navigation {
        gap: 25px;
    }

    .yoli-header-order-button {
        padding-inline: 22px;
    }
}

/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 920px) {

    :root {
        --yoli-header-height: 78px;
    }

    .yoli-container {
        width: min(100% - 32px, 1560px);
    }

    .yoli-topbar {
        display: none;
    }

    .admin-bar .yoli-site-header.is-sticky .yoli-main-header {
        top: 46px;
    }

    .yoli-main-header-inner {
        position: relative;
        min-height: var(--yoli-header-height);
        grid-template-columns: auto 1fr auto;
        gap: 14px;
    }

    .yoli-logo-image {
        max-width: 125px;
        max-height: 62px;
    }

    .yoli-mobile-menu-toggle {
        display: inline-flex;
        grid-column: 3;
        grid-row: 1;
    }

    .yoli-main-navigation {
        position: fixed;
        z-index: 999;
        top: 0;
        right: 0;
        width: min(86vw, 390px);
        height: 100dvh;
        padding: 115px 34px 40px;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 6px;
        background: var(--yoli-white);
        box-shadow: -20px 0 50px rgba(43, 9, 4, 0.14);
        transform: translateX(105%);
        transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .yoli-main-navigation.is-active {
        transform: translateX(0);
    }

    .yoli-nav-link {
        min-height: 62px;
        padding: 0 4px;
        border-bottom: 1px solid var(--yoli-border);
        font-size: 16px;
    }

    .yoli-nav-link::after {
        left: 0;
        bottom: -1px;
        transform: none;
    }

    .yoli-nav-link:hover::after,
    .yoli-nav-link.is-active::after {
        width: 52px;
    }

    .yoli-header-actions {
        margin-left: auto;
        grid-column: 2;
        grid-row: 1;
    }

    .yoli-header-order-button {
        display: none;
    }

    .yoli-header-icon-button {
        width: 46px;
        height: 46px;
    }

    .yoli-search-panel {
        padding: 18px 16px;
    }

    .yoli-search-form {
        grid-template-columns: 1fr;
    }

    .yoli-search-form button {
        width: 100%;
    }
}

@media (max-width: 520px) {

    .yoli-container {
        width: min(100% - 24px, 1560px);
    }

    .yoli-logo-image {
        max-width: 105px;
    }

    .yoli-header-actions {
        gap: 8px;
    }

    .yoli-search-toggle {
        display: none;
    }

    .yoli-header-icon-button,
    .yoli-mobile-menu-toggle {
        width: 43px;
        height: 43px;
    }

    .yoli-main-navigation {
        width: min(90vw, 360px);
    }
}

/* =========================================================
   ACCESIBILIDAD
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* =========================================================
   LIMPIEZA DE LA PLANTILLA PREDETERMINADA DE ASTRA
========================================================= */

body.home #content > .ast-container {
    width: 100%;
    max-width: none;
    padding: 0;
    display: block;
}

body.home #primary {
    width: 100%;
    margin: 0;
    padding: 0;
}

body.home .entry-header,
body.home .entry-title {
    display: none;
}

/*
 * Ocultamos temporalmente el footer anterior.
 * Después construiremos el footer de Yoli Banquetes.
 */
.site-footer {
    display: none !important;
}

/* =========================================================
   HOME
========================================================= */

.yoli-home-main,
.yoli-home-main * {
    box-sizing: border-box;
}

.yoli-home-main {
    width: 100%;
    overflow: hidden;
}

/* =========================================================
   HERO PRINCIPAL
========================================================= */

.yoli-home-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(650px, 77vh, 850px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 20% 25%,
            rgba(255, 255, 255, 0.92),
            transparent 35%
        ),
        linear-gradient(
            115deg,
            #fffdf9 0%,
            #f9eee7 50%,
            #f2ded5 100%
        );
}

.yoli-home-hero-shape {
    position: absolute;
    z-index: -1;
    top: 0;
    right: -7%;
    width: 54%;
    height: 100%;
    background:
        linear-gradient(
            145deg,
            #65301f 0%,
            #7e4935 50%,
            #4a190f 100%
        );
    clip-path: polygon(
        25% 0,
        100% 0,
        100% 100%,
        0 100%,
        10% 74%,
        2% 48%
    );
}

.yoli-home-hero-shape::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 255, 255, 0.8) 0 1px,
            transparent 2px
        );
    background-size: 25px 25px;
}

/* =========================================================
   DECORACIONES DEL HERO
========================================================= */

.yoli-home-hero-decoration {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(123, 68, 49, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.yoli-home-hero-decoration-one {
    top: 65px;
    left: 34%;
    width: 210px;
    height: 210px;
    animation: yoliDecorationRotate 24s linear infinite;
}

.yoli-home-hero-decoration-two {
    bottom: -130px;
    left: -90px;
    width: 330px;
    height: 330px;
    animation: yoliDecorationRotate 34s linear infinite reverse;
}

.yoli-home-hero-decoration::before,
.yoli-home-hero-decoration::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(123, 68, 49, 0.12);
}

.yoli-home-hero-decoration::before {
    inset: 20px;
}

.yoli-home-hero-decoration::after {
    inset: 48px;
}

@keyframes yoliDecorationRotate {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   CONTENEDOR DEL HERO
========================================================= */

.yoli-home-hero-grid {
    position: relative;
    z-index: 2;
    min-height: inherit;
    padding-top: 76px;
    padding-bottom: 76px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    align-items: center;
    gap: clamp(30px, 5vw, 90px);
}

/* =========================================================
   TEXTO DEL HERO
========================================================= */

.yoli-home-hero-content {
    max-width: 690px;
    animation: yoliHeroContentEnter 900ms
        cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes yoliHeroContentEnter {
    from {
        opacity: 0;
        transform: translate3d(-50px, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.yoli-home-eyebrow {
    position: relative;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--yoli-brown-700);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.yoli-home-eyebrow::before {
    content: "";
    width: 44px;
    height: 3px;
    border-radius: 20px;
    background: var(--yoli-brown-700);
}

.yoli-home-hero-title {
    max-width: 760px;
    margin: 0;
    color: var(--yoli-brown-950);
    font-family: inherit;
    font-size: clamp(58px, 6.2vw, 108px);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.91;
    text-transform: uppercase;
}

.yoli-home-hero-title span {
    display: block;
    color: var(--yoli-brown-700);
}

.yoli-home-hero-description {
    max-width: 620px;
    margin: 31px 0 0;
    color: var(--yoli-muted);
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.8;
}

/* =========================================================
   BOTONES
========================================================= */

.yoli-home-hero-buttons {
    margin-top: 38px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.yoli-button {
    min-height: 60px;
    padding: 0 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color var(--yoli-transition),
        background-color var(--yoli-transition),
        border-color var(--yoli-transition),
        transform var(--yoli-transition),
        box-shadow var(--yoli-transition);
}

.yoli-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--yoli-transition);
}

.yoli-button:hover svg {
    transform: translateX(6px);
}

.yoli-button-primary {
    background: var(--yoli-brown-700);
    color: var(--yoli-white);
    box-shadow: 0 18px 35px rgba(92, 40, 27, 0.2);
}

.yoli-button-primary:hover {
    background: var(--yoli-brown-950);
    color: var(--yoli-white);
    transform: translateY(-4px);
    box-shadow: 0 24px 44px rgba(43, 9, 4, 0.26);
}

.yoli-button-secondary {
    border-color: rgba(92, 40, 27, 0.55);
    background: rgba(255, 255, 255, 0.45);
    color: var(--yoli-brown-900);
    backdrop-filter: blur(8px);
}

.yoli-button-secondary:hover {
    border-color: var(--yoli-brown-700);
    background: var(--yoli-white);
    color: var(--yoli-brown-700);
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(92, 40, 27, 0.12);
}

/* =========================================================
   CARACTERÍSTICAS
========================================================= */

.yoli-home-hero-features {
    margin-top: 38px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 29px;
}

.yoli-home-hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--yoli-brown-900);
    font-size: 14px;
    font-weight: 700;
}

.yoli-home-feature-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(123, 68, 49, 0.11);
    color: var(--yoli-brown-700);
}

.yoli-home-feature-icon svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   IMAGEN DEL HERO
========================================================= */

.yoli-home-hero-visual {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: yoliHeroVisualEnter 1100ms
        130ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes yoliHeroVisualEnter {
    from {
        opacity: 0;
        transform: translate3d(75px, 20px, 0) scale(0.88);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.yoli-home-hero-circle {
    position: absolute;
    width: min(530px, 82%);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(255, 255, 255, 0.96),
            rgba(255, 247, 239, 0.7) 38%,
            rgba(255, 255, 255, 0.13) 70%
        );
    box-shadow:
        0 45px 90px rgba(43, 9, 4, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.yoli-home-hero-circle::after {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px dashed rgba(123, 68, 49, 0.23);
    border-radius: 50%;
    animation: yoliDecorationRotate 30s linear infinite;
}

.yoli-home-hero-orbit {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
    pointer-events: none;
}

.yoli-home-hero-orbit-one {
    width: 620px;
    height: 270px;
    transform: rotate(-16deg);
}

.yoli-home-hero-orbit-two {
    width: 300px;
    height: 610px;
    transform: rotate(20deg);
}

.yoli-home-hero-image {
    position: relative;
    z-index: 2;
    width: min(680px, 110%);
    max-height: 650px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 35px 32px rgba(30, 5, 0, 0.3));
    animation: yoliHeroImageFloat 5.5s
        ease-in-out infinite;
}

@keyframes yoliHeroImageFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-1deg);
    }

    50% {
        transform: translate3d(0, -15px, 0) rotate(1deg);
    }
}

/* =========================================================
   PLACEHOLDER DE IMAGEN
========================================================= */

.yoli-home-hero-placeholder {
    position: relative;
    z-index: 2;
    width: min(480px, 85%);
    min-height: 330px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    border: 2px dashed rgba(255, 255, 255, 0.52);
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--yoli-white);
    text-align: center;
    backdrop-filter: blur(12px);
}

.yoli-home-hero-placeholder strong {
    font-size: 25px;
}

.yoli-home-hero-placeholder span {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* =========================================================
   TARJETA FLOTANTE
========================================================= */

.yoli-home-floating-card {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 80px;
    min-width: 190px;
    padding: 17px 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.89);
    box-shadow: 0 24px 50px rgba(43, 9, 4, 0.2);
    backdrop-filter: blur(14px);
    animation: yoliFloatingCard 4s ease-in-out infinite;
}

@keyframes yoliFloatingCard {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

.yoli-home-floating-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--yoli-brown-700);
    color: var(--yoli-white);
}

.yoli-home-floating-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
}

.yoli-home-floating-card div {
    display: flex;
    flex-direction: column;
}

.yoli-home-floating-card strong {
    color: var(--yoli-brown-950);
    font-size: 14px;
}

.yoli-home-floating-card div span {
    color: var(--yoli-muted);
    font-size: 12px;
}

/* =========================================================
   INDICADOR INFERIOR
========================================================= */

.yoli-home-scroll-indicator {
    position: absolute;
    z-index: 4;
    bottom: 21px;
    left: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    color: rgba(92, 40, 27, 0.65);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.yoli-home-scroll-indicator svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: yoliScrollArrow 1.6s ease-in-out infinite;
}

@keyframes yoliScrollArrow {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.55;
    }

    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1180px) {

    .yoli-home-hero-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
        gap: 20px;
    }

    .yoli-home-hero-title {
        font-size: clamp(53px, 6vw, 78px);
    }

    .yoli-home-hero-visual {
        min-height: 520px;
    }

    .yoli-home-floating-card {
        right: 8px;
    }
}

/* =========================================================
   MÓVIL Y TABLET VERTICAL
========================================================= */

@media (max-width: 920px) {

    .yoli-home-hero {
        min-height: auto;
        padding-bottom: 25px;
    }

    .yoli-home-hero-shape {
        top: auto;
        right: -18%;
        bottom: -9%;
        width: 135%;
        height: 53%;
        clip-path: polygon(
            0 18%,
            34% 0,
            100% 12%,
            100% 100%,
            0 100%
        );
    }

    .yoli-home-hero-grid {
        padding-top: 68px;
        padding-bottom: 55px;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .yoli-home-hero-content {
        max-width: 720px;
        text-align: center;
        margin-inline: auto;
    }

    .yoli-home-eyebrow {
        justify-content: center;
    }

    .yoli-home-hero-title {
        max-width: 760px;
        margin-inline: auto;
        font-size: clamp(52px, 11vw, 78px);
    }

    .yoli-home-hero-description {
        margin-inline: auto;
    }

    .yoli-home-hero-buttons,
    .yoli-home-hero-features {
        justify-content: center;
    }

    .yoli-home-hero-visual {
        min-height: 500px;
    }

    .yoli-home-hero-image {
        width: min(650px, 92vw);
        max-height: 530px;
    }

    .yoli-home-floating-card {
        right: 8%;
        bottom: 30px;
    }

    .yoli-home-scroll-indicator {
        display: none;
    }
}

/* =========================================================
   TELÉFONOS
========================================================= */

@media (max-width: 600px) {

    .yoli-home-hero-grid {
        padding-top: 48px;
        padding-bottom: 30px;
    }

    .yoli-home-eyebrow {
        margin-bottom: 19px;
        font-size: 12px;
        letter-spacing: 0.13em;
    }

    .yoli-home-eyebrow::before {
        width: 30px;
    }

    .yoli-home-hero-title {
        font-size: clamp(44px, 14vw, 62px);
        line-height: 0.94;
    }

    .yoli-home-hero-description {
        margin-top: 23px;
        font-size: 15px;
        line-height: 1.7;
    }

    .yoli-home-hero-buttons {
        width: 100%;
        margin-top: 29px;
        flex-direction: column;
    }

    .yoli-button {
        width: 100%;
        min-height: 57px;
    }

    .yoli-home-hero-features {
        margin-top: 28px;
        gap: 15px;
        flex-direction: column;
    }

    .yoli-home-hero-visual {
        min-height: 390px;
    }

    .yoli-home-hero-circle {
        width: 88%;
    }

    .yoli-home-hero-image {
        width: 106%;
        max-width: none;
        max-height: 405px;
    }

    .yoli-home-hero-orbit-one {
        width: 110%;
        height: 190px;
    }

    .yoli-home-hero-orbit-two {
        width: 220px;
        height: 430px;
    }

    .yoli-home-floating-card {
        right: 0;
        bottom: 3px;
        min-width: 165px;
        padding: 13px 15px;
    }

    .yoli-home-floating-icon {
        width: 36px;
        height: 36px;
    }
}
/* =========================================================
   LUPA DEL BUSCADOR
========================================================= */

.yoli-search-toggle {
    position: relative;
}

.yoli-search-toggle svg {
    display: none !important;
}

.yoli-search-toggle::before {
    content: "";
    width: 17px;
    height: 17px;
    display: block;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.yoli-search-toggle::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    border-radius: 10px;
    background: currentColor;
    transform: translate(6px, 6px) rotate(45deg);
    transform-origin: center;
}

/* =========================================================
   AJUSTE FINAL DEL LOGO
========================================================= */

.yoli-logo {
    position: relative;
    z-index: 5;
    min-width: 170px;
}

.yoli-logo-image {
    width: auto !important;
    height: auto !important;
    max-width: 175px !important;
    max-height: 78px !important;
    object-fit: contain;
}

@media (max-width: 920px) {

    .yoli-logo {
        min-width: 105px;
    }

    .yoli-logo-image {
        max-width: 120px !important;
        max-height: 60px !important;
    }
}
/* =========================================================
   ANIMACIONES GENERALES AL HACER SCROLL
========================================================= */

[data-yoli-animate] {
    opacity: 0;
    transition:
        opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-yoli-animate="visual"] {
    transform: translate3d(-65px, 25px, 0);
}

[data-yoli-animate="content"] {
    transform: translate3d(65px, 25px, 0);
}

[data-yoli-animate].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* =========================================================
   SECCIÓN ABOUT
========================================================= */

.yoli-about-section {
    position: relative;
    isolation: isolate;
    padding: clamp(100px, 10vw, 170px) 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 7% 20%,
            rgba(123, 68, 49, 0.07),
            transparent 27%
        ),
        radial-gradient(
            circle at 95% 75%,
            rgba(123, 68, 49, 0.06),
            transparent 24%
        ),
        #ffffff;
}

.yoli-about-section::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 37%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(248, 238, 229, 0.75),
        rgba(255, 255, 255, 0)
    );
    clip-path: polygon(0 0, 76% 0, 100% 50%, 72% 100%, 0 100%);
}

.yoli-about-background-word {
    position: absolute;
    z-index: -1;
    right: -35px;
    bottom: -55px;
    color: rgba(92, 40, 27, 0.035);
    font-size: clamp(150px, 23vw, 390px);
    font-weight: 900;
    letter-spacing: -0.09em;
    line-height: 0.75;
    pointer-events: none;
    user-select: none;
}

.yoli-about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(500px, 1.05fr) minmax(450px, 0.95fr);
    align-items: center;
    gap: clamp(60px, 7vw, 125px);
}

/* =========================================================
   GALERÍA DE IMÁGENES - CÍRCULOS SEPARADOS
========================================================= */

.yoli-about-gallery {
    position: relative;
    width: 100%;
    max-width: 700px;
    min-height: 740px;
    margin-inline: auto;
}

.yoli-about-photo {
    position: absolute;
    margin: 0;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 9px solid rgba(255, 255, 255, 0.96);
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 34% 25%,
            #fffdfb 0%,
            #f8eee6 58%,
            #ead7c8 100%
        );
    box-shadow:
        0 28px 65px rgba(43, 9, 4, 0.15),
        0 0 0 1px rgba(123, 68, 49, 0.08);
    transform: translateZ(0);
}

.yoli-about-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.24),
            transparent 38%,
            rgba(43, 9, 4, 0.04)
        );
    pointer-events: none;
}

.yoli-about-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition:
        transform 950ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 500ms ease;
}

.yoli-about-photo:hover img {
    transform: scale(1.055);
    filter: saturate(1.06) contrast(1.01);
}

.yoli-about-photo-primary {
    z-index: 2;
    left: 0;
    bottom: 28px;
    width: min(62%, 400px);
}

.yoli-about-photo-secondary {
    z-index: 3;
    top: 22px;
    right: 0;
    width: min(52%, 340px);
}

/* =========================================================
   DECORACIONES DE LA GALERÍA
========================================================= */

.yoli-about-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.yoli-about-decoration-one {
    top: 28px;
    left: 12px;
    width: 165px;
    height: 165px;
    border: 1px dashed rgba(123, 68, 49, 0.22);
    animation: yoliAboutDecorationRotate 25s linear infinite;
}

.yoli-about-decoration-one::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(123, 68, 49, 0.09);
    border-radius: 50%;
}

.yoli-about-decoration-two {
    right: 12px;
    bottom: 72px;
    width: 185px;
    height: 185px;
    border: 1px solid rgba(123, 68, 49, 0.11);
    animation: yoliAboutDecorationRotate 33s linear infinite reverse;
}

.yoli-about-decoration-two::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px dashed rgba(123, 68, 49, 0.17);
    border-radius: 50%;
}

@keyframes yoliAboutDecorationRotate {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   TARJETA FLOTANTE
========================================================= */

.yoli-about-floating-card {
    position: absolute;
    z-index: 7;
    left: 50%;
    bottom: 0;
    min-width: 230px;
    padding: 17px 21px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(123, 68, 49, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 48px rgba(43, 9, 4, 0.16);
    backdrop-filter: blur(15px);
    transform: translateX(-50%);
    animation: yoliAboutCardFloat 4.5s ease-in-out infinite;
}

@keyframes yoliAboutCardFloat {
    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

.yoli-about-floating-icon {
    width: 47px;
    height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--yoli-brown-700);
    color: var(--yoli-white);
}

.yoli-about-floating-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoli-about-floating-card > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.yoli-about-floating-card strong {
    color: var(--yoli-brown-950);
    font-size: 14px;
}

.yoli-about-floating-card span {
    color: var(--yoli-muted);
    font-size: 12px;
}

/* =========================================================
   SELLO DECORATIVO
========================================================= */

.yoli-about-stamp {
    position: absolute;
    z-index: 8;
    top: 320px;
    left: 50%;
    width: 88px;
    height: 88px;
    margin-left: -44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    background: var(--yoli-brown-700);
    color: var(--yoli-white);
    box-shadow: 0 17px 36px rgba(43, 9, 4, 0.2);
    animation: yoliAboutStampFloat 5s ease-in-out infinite;
}

.yoli-about-stamp::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px dashed rgba(255, 255, 255, 0.72);
    border-radius: 50%;
}

.yoli-about-stamp span,
.yoli-about-stamp strong {
    position: relative;
    z-index: 2;
}

.yoli-about-stamp span {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.yoli-about-stamp strong {
    margin: 2px 0;
    font-size: 27px;
    line-height: 1;
}

@keyframes yoliAboutStampFloat {
    0%,
    100% {
        transform: rotate(-6deg) translateY(0);
    }

    50% {
        transform: rotate(4deg) translateY(-8px);
    }
}

/* =========================================================
   CONTENIDO DE ABOUT
========================================================= */

.yoli-about-content {
    max-width: 680px;
}

.yoli-about-eyebrow {
    position: relative;
    margin-bottom: 21px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--yoli-brown-700);
    font-size: 13px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.yoli-about-eyebrow::before {
    content: "";
    width: 43px;
    height: 3px;
    border-radius: 20px;
    background: var(--yoli-brown-700);
}

.yoli-about-content h2 {
    margin: 0;
    color: var(--yoli-text);
    font-size: clamp(46px, 4.4vw, 76px);
    font-weight: 900;
    letter-spacing: -0.052em;
    line-height: 1;
    text-transform: uppercase;
}

.yoli-about-content h2 span {
    display: block;
    color: var(--yoli-brown-700);
}

.yoli-about-heading-line {
    width: min(300px, 70%);
    height: 22px;
    margin: 26px 0 25px;
    display: flex;
    align-items: center;
}

.yoli-about-heading-line span {
    position: relative;
    width: 50%;
    height: 1px;
    background: rgba(123, 68, 49, 0.45);
}

.yoli-about-heading-line span:first-child::before,
.yoli-about-heading-line span:last-child::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--yoli-brown-700);
    transform: translateY(-50%) rotate(45deg);
}

.yoli-about-heading-line span:first-child::before {
    left: 0;
}

.yoli-about-heading-line span:last-child::after {
    right: 0;
}

.yoli-about-heading-line i {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    border: 2px solid var(--yoli-brown-700);
    border-radius: 50%;
    background: var(--yoli-white);
}

.yoli-about-introduction,
.yoli-about-description {
    color: var(--yoli-muted);
    font-size: 16px;
    line-height: 1.8;
}

.yoli-about-introduction {
    margin: 0;
}

.yoli-about-description {
    margin: 15px 0 0;
}

/* =========================================================
   CARACTERÍSTICAS
========================================================= */

.yoli-about-features {
    margin-top: 35px;
    display: grid;
    gap: 17px;
}

.yoli-about-feature {
    padding: 18px 19px;
    display: grid;
    grid-template-columns: 49px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    border: 1px solid transparent;
    border-radius: 16px;
    transition:
        background-color var(--yoli-transition),
        border-color var(--yoli-transition),
        transform var(--yoli-transition),
        box-shadow var(--yoli-transition);
}

.yoli-about-content.is-visible .yoli-about-feature {
    animation: yoliAboutFeatureEnter 650ms
        cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(
        500ms + var(--yoli-feature-delay, 0ms)
    );
}

@keyframes yoliAboutFeatureEnter {
    from {
        opacity: 0;
        transform: translateX(25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.yoli-about-feature:hover {
    border-color: rgba(123, 68, 49, 0.12);
    background: var(--yoli-cream-100);
    transform: translateX(8px);
    box-shadow: 0 14px 30px rgba(43, 9, 4, 0.07);
}

.yoli-about-feature-icon {
    width: 49px;
    height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(123, 68, 49, 0.1);
    color: var(--yoli-brown-700);
    transition:
        color var(--yoli-transition),
        background-color var(--yoli-transition),
        transform var(--yoli-transition);
}

.yoli-about-feature:hover .yoli-about-feature-icon {
    background: var(--yoli-brown-700);
    color: var(--yoli-white);
    transform: rotate(-7deg) scale(1.07);
}

.yoli-about-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoli-about-feature h3 {
    margin: 0;
    color: var(--yoli-brown-950);
    font-size: 16px;
    font-weight: 900;
}

.yoli-about-feature p {
    margin: 4px 0 0;
    color: var(--yoli-muted);
    font-size: 13px;
    line-height: 1.55;
}

/* =========================================================
   BOTONES DE ABOUT
========================================================= */

.yoli-about-actions {
    margin-top: 37px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 27px;
}

.yoli-about-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--yoli-text);
    text-decoration: none;
}

.yoli-about-contact-circle {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(123, 68, 49, 0.25);
    border-radius: 50%;
    color: var(--yoli-brown-700);
    transition:
        color var(--yoli-transition),
        background-color var(--yoli-transition),
        transform var(--yoli-transition);
}

.yoli-about-contact-link:hover .yoli-about-contact-circle {
    background: var(--yoli-brown-700);
    color: var(--yoli-white);
    transform: rotate(-8deg);
}

.yoli-about-contact-circle svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoli-about-contact-link > span:last-child {
    display: flex;
    flex-direction: column;
}

.yoli-about-contact-link small {
    color: var(--yoli-muted);
    font-size: 11px;
}

.yoli-about-contact-link strong {
    color: var(--yoli-brown-950);
    font-size: 14px;
    transition: color var(--yoli-transition);
}

.yoli-about-contact-link:hover strong {
    color: var(--yoli-brown-700);
}

/* =========================================================
   ABOUT - TABLET
========================================================= */

@media (max-width: 1180px) {

    .yoli-about-grid {
        grid-template-columns: minmax(430px, 1fr) minmax(400px, 1fr);
        gap: 50px;
    }

    .yoli-about-gallery {
        max-width: 610px;
        min-height: 660px;
    }

    .yoli-about-photo-primary {
        bottom: 24px;
        width: min(61%, 350px);
    }

    .yoli-about-photo-secondary {
        top: 18px;
        width: min(50%, 295px);
    }

    .yoli-about-stamp {
        top: 282px;
        width: 82px;
        height: 82px;
        margin-left: -41px;
    }

    .yoli-about-floating-card {
        min-width: 215px;
        padding: 15px 18px;
    }
}

/* =========================================================
   ABOUT - TABLET VERTICAL
========================================================= */

@media (max-width: 920px) {

    .yoli-about-section {
        padding: 100px 0;
    }

    .yoli-about-grid {
        grid-template-columns: 1fr;
        gap: 72px;
    }

    .yoli-about-gallery {
        width: min(100%, 680px);
        max-width: 680px;
        min-height: 720px;
        margin-inline: auto;
    }

    .yoli-about-photo-primary {
        bottom: 30px;
        width: min(61%, 390px);
    }

    .yoli-about-photo-secondary {
        top: 20px;
        width: min(50%, 320px);
    }

    .yoli-about-stamp {
        top: 314px;
        width: 86px;
        height: 86px;
        margin-left: -43px;
    }

    .yoli-about-content {
        max-width: 760px;
        margin-inline: auto;
        text-align: center;
    }

    .yoli-about-eyebrow {
        justify-content: center;
    }

    .yoli-about-heading-line {
        margin-inline: auto;
    }

    .yoli-about-feature {
        text-align: left;
    }

    .yoli-about-actions {
        justify-content: center;
    }

    [data-yoli-animate="visual"],
    [data-yoli-animate="content"] {
        transform: translate3d(0, 50px, 0);
    }
}

/* =========================================================
   ABOUT - CELULARES
========================================================= */

@media (max-width: 600px) {

    .yoli-about-section {
        padding: 78px 0 85px;
    }

    .yoli-about-grid {
        gap: 58px;
    }

    .yoli-about-gallery {
        width: 100%;
        min-height: 470px;
    }

    .yoli-about-photo {
        border-width: 6px;
    }

    .yoli-about-photo-primary {
        left: 0;
        bottom: 22px;
        width: min(66%, 245px);
    }

    .yoli-about-photo-secondary {
        top: 12px;
        right: 0;
        width: min(53%, 195px);
    }

    .yoli-about-decoration-one {
        top: 16px;
        left: -18px;
        width: 105px;
        height: 105px;
    }

    .yoli-about-decoration-two {
        right: -18px;
        bottom: 48px;
        width: 120px;
        height: 120px;
    }

    .yoli-about-stamp {
        top: 188px;
        width: 68px;
        height: 68px;
        margin-left: -34px;
    }

    .yoli-about-stamp strong {
        font-size: 20px;
    }

    .yoli-about-stamp span {
        font-size: 6px;
    }

    .yoli-about-floating-card {
        bottom: 0;
        min-width: 184px;
        padding: 12px 14px;
        gap: 10px;
    }

    .yoli-about-floating-icon {
        width: 38px;
        height: 38px;
    }

    .yoli-about-floating-icon svg {
        width: 19px;
        height: 19px;
    }

    .yoli-about-content h2 {
        font-size: clamp(40px, 12vw, 56px);
    }

    .yoli-about-introduction,
    .yoli-about-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .yoli-about-feature {
        padding: 15px 5px;
        grid-template-columns: 45px minmax(0, 1fr);
    }

    .yoli-about-feature-icon {
        width: 45px;
        height: 45px;
    }

    .yoli-about-actions {
        flex-direction: column;
    }

    .yoli-about-actions .yoli-button {
        width: 100%;
    }
}

@media (max-width: 390px) {

    .yoli-about-gallery {
        min-height: 425px;
    }

    .yoli-about-photo-primary {
        width: 220px;
    }

    .yoli-about-photo-secondary {
        width: 170px;
    }

    .yoli-about-stamp {
        top: 166px;
        width: 62px;
        height: 62px;
        margin-left: -31px;
    }

    .yoli-about-floating-card {
        min-width: 176px;
    }
}

/* =========================================================
   SISTEMA TIPOGRÁFICO DE YOLI BANQUETES
========================================================= */

/* Texto general */

body,
button,
input,
select,
textarea,
.yoli-site-header,
.yoli-home-main {
    font-family: var(--yoli-font-body) !important;
}

/* Títulos principales */

.yoli-home-hero-title,
.yoli-about-content h2,
.yoli-about-feature h3,
.yoli-home-floating-card strong,
.yoli-about-floating-card strong {
    font-family: var(--yoli-font-heading) !important;
}
/* =========================================================
   CORRECCIÓN TIPOGRÁFICA DEL HERO
========================================================= */

.yoli-home-hero-title {
    max-width: 720px;
    font-family: var(--yoli-font-heading) !important;
    font-size: clamp(64px, 6.6vw, 112px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 0.92;
    text-transform: uppercase;
}

.yoli-home-hero-title span {
    font-family: inherit !important;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.yoli-home-eyebrow {
    font-family: var(--yoli-font-body) !important;
    font-weight: 600;
    letter-spacing: 0.17em;
}

.yoli-home-hero-description {
    font-family: var(--yoli-font-body) !important;
    font-weight: 400;
    letter-spacing: 0;
}
/* =========================================================
   CORRECCIÓN TIPOGRÁFICA DE ABOUT
========================================================= */

.yoli-about-content h2 {
    max-width: 640px;
    font-family: var(--yoli-font-heading) !important;
    font-size: clamp(50px, 4.5vw, 76px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.98;
    text-transform: uppercase;
}

.yoli-about-content h2 span {
    display: block;
    font-family: inherit !important;
    font-weight: 600;
    letter-spacing: inherit;
}

.yoli-about-eyebrow {
    font-family: var(--yoli-font-body) !important;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.13em;
}

.yoli-about-introduction,
.yoli-about-description {
    font-family: var(--yoli-font-body) !important;
    font-weight: 400;
    letter-spacing: 0;
}

.yoli-about-feature h3 {
    font-family: var(--yoli-font-heading) !important;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.yoli-about-feature p {
    font-family: var(--yoli-font-body) !important;
    font-weight: 400;
}
/* =========================================================
   MENÚ Y BOTONES
========================================================= */

.yoli-nav-link,
.yoli-header-order-button,
.yoli-button,
.yoli-category-link {
    font-family: var(--yoli-font-body) !important;
    font-weight: 600;
}

.yoli-button {
    letter-spacing: 0.045em;
}

.yoli-nav-link {
    letter-spacing: 0.07em;
}
/* =========================================================
   TIPOGRAFÍA RESPONSIVE
========================================================= */

@media (max-width: 920px) {

    .yoli-home-hero-title {
        font-size: clamp(58px, 11.5vw, 82px);
        line-height: 0.94;
    }

    .yoli-about-content h2 {
        max-width: 680px;
        margin-inline: auto;
        font-size: clamp(48px, 9vw, 68px);
        line-height: 1;
    }
}

@media (max-width: 600px) {

    .yoli-home-hero-title {
        font-size: clamp(48px, 14.5vw, 66px);
        letter-spacing: -0.02em;
        line-height: 0.95;
    }

    .yoli-about-content h2 {
        font-size: clamp(43px, 12vw, 57px);
        letter-spacing: -0.015em;
        line-height: 1;
    }

    .yoli-about-feature h3 {
        font-size: 17px;
    }
}
/* =========================================================
   SECCIÓN DE CATERING
========================================================= */

.yoli-catering-section {
    position: relative;
    isolation: isolate;
    padding: clamp(100px, 9vw, 155px) 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(255, 255, 255, 0.07),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(194, 126, 89, 0.16),
            transparent 25%
        ),
        linear-gradient(
            125deg,
            #2b0904 0%,
            #3d1009 52%,
            #210603 100%
        );
    color: var(--yoli-white);
}

.yoli-catering-section::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.07;
    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.9) 1px,
            transparent 1px
        );
    background-size: 29px 29px;
}

.yoli-catering-section::after {
    content: "CATERING";
    position: absolute;
    z-index: -1;
    left: -25px;
    bottom: -60px;
    color: rgba(255, 255, 255, 0.025);
    font-family: var(--yoli-font-heading);
    font-size: clamp(130px, 19vw, 330px);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 0.75;
    pointer-events: none;
    user-select: none;
}

/* =========================================================
   DECORACIONES DE CATERING
========================================================= */

.yoli-catering-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.yoli-catering-decoration-one {
    top: -130px;
    left: -90px;
    width: 330px;
    height: 330px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    animation: yoliCateringDecorationRotate 34s linear infinite;
}

.yoli-catering-decoration-two {
    right: -120px;
    bottom: -145px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: yoliCateringDecorationRotate 42s linear infinite reverse;
}

.yoli-catering-decoration-two::before {
    content: "";
    position: absolute;
    inset: 42px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

@keyframes yoliCateringDecorationRotate {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   DISTRIBUCIÓN
========================================================= */

.yoli-catering-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(480px, 0.95fr) minmax(500px, 1.05fr);
    align-items: center;
    gap: clamp(60px, 7vw, 120px);
}

/* =========================================================
   CONTENIDO
========================================================= */

.yoli-catering-content {
    max-width: 690px;
}

.yoli-catering-eyebrow {
    position: relative;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #d9a988;
    font-family: var(--yoli-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.yoli-catering-eyebrow::before {
    content: "";
    width: 44px;
    height: 3px;
    border-radius: 20px;
    background: #d9a988;
}

.yoli-catering-content h2 {
    margin: 0;
    color: var(--yoli-white);
    font-family: var(--yoli-font-heading);
    font-size: clamp(54px, 5vw, 86px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 0.98;
    text-transform: uppercase;
}

.yoli-catering-content h2 span {
    display: block;
    color: #d9a988;
    font-family: inherit;
}

.yoli-catering-heading-line {
    width: min(325px, 75%);
    height: 22px;
    margin: 28px 0 27px;
    display: flex;
    align-items: center;
}

.yoli-catering-heading-line span {
    position: relative;
    width: 50%;
    height: 1px;
    background: rgba(217, 169, 136, 0.55);
}

.yoli-catering-heading-line span:first-child::before,
.yoli-catering-heading-line span:last-child::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #d9a988;
    transform: translateY(-50%) rotate(45deg);
}

.yoli-catering-heading-line span:first-child::before {
    left: 0;
}

.yoli-catering-heading-line span:last-child::after {
    right: 0;
}

.yoli-catering-heading-line i {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    border: 2px solid #d9a988;
    border-radius: 50%;
    background: var(--yoli-brown-950);
}

.yoli-catering-introduction,
.yoli-catering-description {
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--yoli-font-body);
    font-size: 16px;
    line-height: 1.8;
}

.yoli-catering-introduction {
    margin: 0;
}

.yoli-catering-description {
    margin: 15px 0 0;
}

/* =========================================================
   TIPOS DE EVENTO
========================================================= */

.yoli-catering-services {
    margin-top: 37px;
    display: grid;
    gap: 13px;
}

.yoli-catering-service {
    padding: 17px 18px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.035);
    transition:
        border-color var(--yoli-transition),
        background-color var(--yoli-transition),
        transform var(--yoli-transition);
}

.yoli-catering-service:hover {
    border-color: rgba(217, 169, 136, 0.34);
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(8px);
}

.yoli-catering-service-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(217, 169, 136, 0.13);
    color: #d9a988;
    transition:
        color var(--yoli-transition),
        background-color var(--yoli-transition),
        transform var(--yoli-transition);
}

.yoli-catering-service:hover .yoli-catering-service-icon {
    background: #d9a988;
    color: var(--yoli-brown-950);
    transform: rotate(-7deg) scale(1.06);
}

.yoli-catering-service-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoli-catering-service h3 {
    margin: 0;
    color: var(--yoli-white);
    font-family: var(--yoli-font-heading);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.yoli-catering-service p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.57);
    font-family: var(--yoli-font-body);
    font-size: 12px;
    line-height: 1.55;
}

/* =========================================================
   BOTÓN PARA LLAMAR
========================================================= */

.yoli-catering-call-area {
    margin-top: 37px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.yoli-catering-call-button {
    position: relative;
    min-width: 285px;
    min-height: 72px;
    padding: 10px 20px 10px 12px;
    display: inline-grid;
    grid-template-columns: 50px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 13px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background:
        linear-gradient(
            135deg,
            #d9a988 0%,
            #c58a65 55%,
            #b36f4c 100%
        );
    color: var(--yoli-brown-950);
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
    transition:
        transform var(--yoli-transition),
        box-shadow var(--yoli-transition),
        filter var(--yoli-transition);
}

.yoli-catering-call-button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -80%;
    width: 45%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.48),
        transparent
    );
    transform: rotate(20deg);
    transition: left 700ms ease;
}

.yoli-catering-call-button:hover {
    color: var(--yoli-brown-950);
    transform: translateY(-5px);
    filter: saturate(1.08);
    box-shadow: 0 27px 50px rgba(0, 0, 0, 0.32);
}

.yoli-catering-call-button:hover::before {
    left: 135%;
}

.yoli-catering-call-icon {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--yoli-brown-950);
    color: var(--yoli-white);
}

.yoli-catering-call-icon svg,
.yoli-catering-call-arrow svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoli-catering-call-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.yoli-catering-call-text small {
    margin-bottom: 4px;
    font-family: var(--yoli-font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    opacity: 0.72;
}

.yoli-catering-call-text strong {
    font-family: var(--yoli-font-heading);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.yoli-catering-call-arrow {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--yoli-transition);
}

.yoli-catering-call-button:hover .yoli-catering-call-arrow {
    transform: translateX(5px);
}

.yoli-catering-phone {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.yoli-catering-phone span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.yoli-catering-phone a {
    color: var(--yoli-white);
    font-family: var(--yoli-font-heading);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--yoli-transition);
}

.yoli-catering-phone a:hover {
    color: #d9a988;
}

/* =========================================================
   IMAGEN DE CATERING
========================================================= */

.yoli-catering-visual {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yoli-catering-image-background {
    position: absolute;
    top: 55px;
    right: 5px;
    width: 82%;
    height: 80%;
    border: 1px solid rgba(217, 169, 136, 0.28);
    border-radius: 38px;
    transform: rotate(5deg);
}

.yoli-catering-image {
    position: relative;
    z-index: 2;
    width: min(100%, 590px);
    height: 610px;
    margin: 0;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.08);
    border-radius: 36px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.12),
            rgba(217, 169, 136, 0.1)
        );
    box-shadow: 0 38px 85px rgba(0, 0, 0, 0.34);
}

.yoli-catering-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 700ms ease;
}

.yoli-catering-image:hover img {
    transform: scale(1.055);
    filter: saturate(1.08);
}

.yoli-catering-placeholder {
    width: 100%;
    height: 100%;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
}

.yoli-catering-placeholder strong {
    color: var(--yoli-white);
    font-family: var(--yoli-font-heading);
    font-size: 28px;
    text-transform: uppercase;
}

/* =========================================================
   TARJETA DE UBICACIÓN
========================================================= */

.yoli-catering-location-card {
    position: absolute;
    z-index: 5;
    left: -15px;
    bottom: 55px;
    min-width: 245px;
    padding: 18px 21px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(217, 169, 136, 0.23);
    border-radius: 18px;
    background: rgba(35, 6, 3, 0.91);
    color: var(--yoli-white);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.31);
    backdrop-filter: blur(14px);
    animation: yoliCateringCardFloat 4.7s ease-in-out infinite;
}

@keyframes yoliCateringCardFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.yoli-catering-location-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #d9a988;
    color: var(--yoli-brown-950);
}

.yoli-catering-location-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoli-catering-location-card div {
    display: flex;
    flex-direction: column;
}

.yoli-catering-location-card strong {
    color: var(--yoli-white);
    font-family: var(--yoli-font-heading);
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
}

.yoli-catering-location-card div span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
}

/* =========================================================
   SELLO DE CALIDAD
========================================================= */

.yoli-catering-quality-stamp {
    position: absolute;
    z-index: 6;
    top: 20px;
    right: -15px;
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: #d9a988;
    color: var(--yoli-brown-950);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
    animation: yoliCateringStampFloat 5s ease-in-out infinite;
}

.yoli-catering-quality-stamp::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(43, 9, 4, 0.54);
    border-radius: 50%;
}

.yoli-catering-quality-stamp span,
.yoli-catering-quality-stamp strong {
    position: relative;
    z-index: 2;
}

.yoli-catering-quality-stamp span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.yoli-catering-quality-stamp strong {
    margin: 2px 0;
    font-family: var(--yoli-font-heading);
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes yoliCateringStampFloat {
    0%,
    100% {
        transform: rotate(-6deg) translateY(0);
    }

    50% {
        transform: rotate(4deg) translateY(-8px);
    }
}

/* =========================================================
   CATERING - TABLET
========================================================= */

@media (max-width: 1180px) {

    .yoli-catering-grid {
        grid-template-columns: minmax(410px, 1fr) minmax(430px, 1fr);
        gap: 50px;
    }

    .yoli-catering-visual {
        min-height: 610px;
    }

    .yoli-catering-image {
        height: 550px;
    }

    .yoli-catering-location-card {
        left: 0;
    }

    .yoli-catering-quality-stamp {
        right: 0;
    }
}

/* =========================================================
   CATERING - TABLET VERTICAL
========================================================= */

@media (max-width: 920px) {

    .yoli-catering-section {
        padding: 100px 0;
    }

    .yoli-catering-grid {
        grid-template-columns: 1fr;
        gap: 75px;
    }

    .yoli-catering-content {
        max-width: 760px;
        margin-inline: auto;
        text-align: center;
    }

    .yoli-catering-eyebrow {
        justify-content: center;
    }

    .yoli-catering-heading-line {
        margin-inline: auto;
    }

    .yoli-catering-service {
        text-align: left;
    }

    .yoli-catering-call-area {
        justify-content: center;
    }

    .yoli-catering-visual {
        width: min(100%, 680px);
        min-height: 650px;
        margin-inline: auto;
    }

    .yoli-catering-image {
        width: min(100%, 580px);
        height: 600px;
    }
}

/* =========================================================
   CATERING - CELULARES
========================================================= */

@media (max-width: 600px) {

    .yoli-catering-section {
        padding: 78px 0 88px;
    }

    .yoli-catering-content h2 {
        font-size: clamp(45px, 13vw, 61px);
        line-height: 1;
    }

    .yoli-catering-introduction,
    .yoli-catering-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .yoli-catering-services {
        margin-top: 29px;
    }

    .yoli-catering-service {
        padding: 15px 13px;
        grid-template-columns: 43px minmax(0, 1fr);
    }

    .yoli-catering-service-icon {
        width: 43px;
        height: 43px;
    }

    .yoli-catering-service h3 {
        font-size: 16px;
    }

    .yoli-catering-call-area {
        width: 100%;
        flex-direction: column;
    }

    .yoli-catering-call-button {
        width: 100%;
        min-width: 0;
        min-height: 69px;
        grid-template-columns: 47px minmax(0, 1fr) 24px;
    }

    .yoli-catering-call-icon {
        width: 47px;
        height: 47px;
    }

    .yoli-catering-phone {
        align-items: center;
    }

    .yoli-catering-visual {
        min-height: 480px;
    }

    .yoli-catering-image {
        width: 100%;
        height: 445px;
        border-width: 5px;
        border-radius: 26px;
    }

    .yoli-catering-image-background {
        top: 35px;
        right: 8px;
        width: 90%;
        height: 88%;
        border-radius: 28px;
    }

    .yoli-catering-location-card {
        left: 8px;
        bottom: -16px;
        min-width: 205px;
        padding: 14px 16px;
    }

    .yoli-catering-location-icon {
        width: 39px;
        height: 39px;
    }

    .yoli-catering-location-card strong {
        font-size: 15px;
    }

    .yoli-catering-quality-stamp {
        top: -25px;
        right: 4px;
        width: 82px;
        height: 82px;
    }

    .yoli-catering-quality-stamp strong {
        font-size: 19px;
    }
}
/* =========================================================
   CONTACT US — LIMPIEZA DE ASTRA
========================================================= */

body.page-template-page-contact-us #content > .ast-container,
body.page-template-page-contact-us-php #content > .ast-container {
    width: 100%;
    max-width: none;
    padding: 0;
    display: block;
}

body.page-template-page-contact-us #primary,
body.page-template-page-contact-us-php #primary {
    width: 100%;
    margin: 0;
    padding: 0;
}

.yoli-contact-main,
.yoli-contact-main * {
    box-sizing: border-box;
}

.yoli-contact-main {
    width: 100%;
    overflow: hidden;
    background: var(--yoli-white);
}

/* =========================================================
   CONTACT HERO
========================================================= */

.yoli-contact-hero {
    position: relative;
    isolation: isolate;
    min-height: 680px;
    padding: clamp(90px, 8vw, 135px) 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(255, 255, 255, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 87% 75%,
            rgba(217, 169, 136, 0.13),
            transparent 26%
        ),
        linear-gradient(
            125deg,
            #2b0904 0%,
            #3d1009 52%,
            #210603 100%
        );
    color: var(--yoli-white);
}

.yoli-contact-hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.075;
    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.9) 1px,
            transparent 1px
        );
    background-size: 29px 29px;
}

.yoli-contact-hero::after {
    content: "CONTACT";
    position: absolute;
    z-index: -1;
    right: -30px;
    bottom: -55px;
    color: rgba(255, 255, 255, 0.025);
    font-family: var(--yoli-font-heading);
    font-size: clamp(150px, 22vw, 360px);
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 0.75;
    pointer-events: none;
    user-select: none;
}

.yoli-contact-hero-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.yoli-contact-hero-decoration-one {
    top: -120px;
    left: -100px;
    width: 340px;
    height: 340px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    animation: yoliContactDecorationRotate 35s linear infinite;
}

.yoli-contact-hero-decoration-two {
    right: -110px;
    bottom: -150px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: yoliContactDecorationRotate 45s linear infinite reverse;
}

.yoli-contact-hero-decoration-two::before {
    content: "";
    position: absolute;
    inset: 48px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

@keyframes yoliContactDecorationRotate {
    to {
        transform: rotate(360deg);
    }
}

.yoli-contact-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.75fr);
    align-items: center;
    gap: clamp(60px, 8vw, 135px);
}

/* =========================================================
   CONTACT HERO — TEXTO
========================================================= */

.yoli-contact-hero-content {
    max-width: 760px;
}

.yoli-contact-eyebrow {
    position: relative;
    margin-bottom: 23px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #d9a988;
    font-family: var(--yoli-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.yoli-contact-eyebrow::before {
    content: "";
    width: 45px;
    height: 3px;
    border-radius: 20px;
    background: #d9a988;
}

.yoli-contact-hero-content h1 {
    margin: 0;
    color: var(--yoli-white);
    font-family: var(--yoli-font-heading) !important;
    font-size: clamp(66px, 6.4vw, 112px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 0.92;
    text-transform: uppercase;
}

.yoli-contact-hero-content h1 span {
    display: block;
    color: #d9a988;
    font-family: inherit !important;
}

.yoli-contact-hero-content > p {
    max-width: 680px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--yoli-font-body);
    font-size: 17px;
    line-height: 1.8;
}

.yoli-contact-hero-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 17px;
}

/* =========================================================
   BOTÓN PRINCIPAL DE LLAMADA
========================================================= */

.yoli-contact-primary-button {
    position: relative;
    min-width: 310px;
    min-height: 76px;
    padding: 10px 21px 10px 12px;
    display: inline-grid;
    grid-template-columns: 52px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 999px;
    background:
        linear-gradient(
            135deg,
            #e0b18f 0%,
            #c98d68 55%,
            #b56e4c 100%
        );
    color: var(--yoli-brown-950);
    text-decoration: none;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.27);
    transition:
        transform var(--yoli-transition),
        box-shadow var(--yoli-transition),
        filter var(--yoli-transition);
}

.yoli-contact-primary-button::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -85%;
    width: 45%;
    height: 220%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.52),
            transparent
        );
    transform: rotate(20deg);
    transition: left 750ms ease;
}

.yoli-contact-primary-button:hover {
    color: var(--yoli-brown-950);
    transform: translateY(-5px);
    filter: saturate(1.08);
    box-shadow: 0 30px 56px rgba(0, 0, 0, 0.34);
}

.yoli-contact-primary-button:hover::before {
    left: 140%;
}

.yoli-contact-button-icon {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--yoli-brown-950);
    color: var(--yoli-white);
}

.yoli-contact-button-icon svg,
.yoli-contact-button-arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoli-contact-button-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.yoli-contact-button-text small {
    margin-bottom: 4px;
    font-family: var(--yoli-font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.72;
}

.yoli-contact-button-text strong {
    font-family: var(--yoli-font-heading);
    font-size: 21px;
    font-weight: 600;
}

.yoli-contact-button-arrow {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--yoli-transition);
}

.yoli-contact-primary-button:hover .yoli-contact-button-arrow {
    transform: translateX(5px);
}

/* =========================================================
   FACEBOOK BUTTON
========================================================= */

.yoli-contact-facebook-button {
    min-height: 60px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--yoli-white);
    font-family: var(--yoli-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    transition:
        background-color var(--yoli-transition),
        border-color var(--yoli-transition),
        transform var(--yoli-transition);
}

.yoli-contact-facebook-button:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.11);
    color: var(--yoli-white);
    transform: translateY(-4px);
}

.yoli-contact-facebook-button svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
    stroke: none;
}

/* =========================================================
   TARJETA DEL HERO
========================================================= */

.yoli-contact-hero-card {
    position: relative;
    padding: clamp(35px, 4vw, 58px);
    overflow: hidden;
    border: 1px solid rgba(217, 169, 136, 0.22);
    border-radius: 34px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.11),
            rgba(255, 255, 255, 0.035)
        );
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.yoli-contact-hero-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -70px;
    width: 210px;
    height: 210px;
    border: 1px dashed rgba(217, 169, 136, 0.22);
    border-radius: 50%;
}

.yoli-contact-hero-card-label {
    display: block;
    margin-bottom: 17px;
    color: #d9a988;
    font-family: var(--yoli-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.yoli-contact-hero-card h2 {
    margin: 0;
    color: var(--yoli-white);
    font-family: var(--yoli-font-heading) !important;
    font-size: clamp(35px, 3.2vw, 53px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-transform: uppercase;
}

.yoli-contact-hero-card > p {
    margin: 21px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.75;
}

.yoli-contact-service-list {
    margin-top: 27px;
    display: grid;
    gap: 13px;
}

.yoli-contact-service-list span {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
}

.yoli-contact-service-list svg {
    width: 25px;
    height: 25px;
    padding: 5px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(217, 169, 136, 0.13);
    fill: none;
    stroke: #d9a988;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   INFORMACIÓN DE CONTACTO
========================================================= */

.yoli-contact-information {
    position: relative;
    padding: clamp(95px, 9vw, 150px) 0;
    background:
        radial-gradient(
            circle at 5% 25%,
            rgba(123, 68, 49, 0.055),
            transparent 25%
        ),
        var(--yoli-white);
}

.yoli-contact-section-heading {
    max-width: 780px;
    margin: 0 auto 65px;
    text-align: center;
}

.yoli-contact-section-heading > span,
.yoli-contact-map-eyebrow {
    margin-bottom: 14px;
    display: block;
    color: var(--yoli-brown-700);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.yoli-contact-section-heading h2,
.yoli-contact-map-heading h2 {
    margin: 0;
    color: var(--yoli-text);
    font-family: var(--yoli-font-heading) !important;
    font-size: clamp(48px, 4.7vw, 76px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1;
    text-transform: uppercase;
}

.yoli-contact-section-heading h2 strong,
.yoli-contact-map-heading h2 strong {
    color: var(--yoli-brown-700);
    font-family: inherit;
    font-weight: inherit;
}

.yoli-contact-section-heading p {
    max-width: 640px;
    margin: 23px auto 0;
    color: var(--yoli-muted);
    font-size: 16px;
    line-height: 1.75;
}

.yoli-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.yoli-contact-info-card {
    position: relative;
    min-height: 310px;
    padding: 38px 32px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    overflow: hidden;
    border: 1px solid rgba(123, 68, 49, 0.1);
    border-radius: 25px;
    background: var(--yoli-white);
    box-shadow: 0 20px 50px rgba(43, 9, 4, 0.07);
    transition:
        transform var(--yoli-transition),
        box-shadow var(--yoli-transition),
        border-color var(--yoli-transition);
}

.yoli-contact-info-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -65px;
    width: 165px;
    height: 165px;
    border: 1px dashed rgba(123, 68, 49, 0.09);
    border-radius: 50%;
    transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.yoli-contact-info-card:hover {
    border-color: rgba(123, 68, 49, 0.2);
    transform: translateY(-9px);
    box-shadow: 0 32px 65px rgba(43, 9, 4, 0.13);
}

.yoli-contact-info-card:hover::after {
    transform: rotate(55deg) scale(1.08);
}

.yoli-contact-info-card-featured {
    border-color: transparent;
    background:
        linear-gradient(
            145deg,
            #7b4431,
            #4c1c12
        );
    color: var(--yoli-white);
}

.yoli-contact-info-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(123, 68, 49, 0.1);
    color: var(--yoli-brown-700);
    transition:
        background-color var(--yoli-transition),
        color var(--yoli-transition),
        transform var(--yoli-transition);
}

.yoli-contact-info-card:hover .yoli-contact-info-icon {
    background: var(--yoli-brown-700);
    color: var(--yoli-white);
    transform: rotate(-7deg) scale(1.07);
}

.yoli-contact-info-card-featured .yoli-contact-info-icon {
    background: rgba(255, 255, 255, 0.13);
    color: #e5b89a;
}

.yoli-contact-info-card-featured:hover .yoli-contact-info-icon {
    background: #e0ad8b;
    color: var(--yoli-brown-950);
}

.yoli-contact-info-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoli-contact-info-card > div {
    position: relative;
    z-index: 2;
}

.yoli-contact-info-label {
    margin-bottom: 9px;
    display: block;
    color: var(--yoli-brown-700);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.yoli-contact-info-card-featured .yoli-contact-info-label {
    color: #e5b89a;
}

.yoli-contact-info-card h3 {
    margin: 0;
    color: var(--yoli-brown-950);
    font-family: var(--yoli-font-heading) !important;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
}

.yoli-contact-info-card-featured h3 {
    color: var(--yoli-white);
}

.yoli-contact-info-card address,
.yoli-contact-info-card p {
    margin: 15px 0 0;
    color: var(--yoli-muted);
    font-size: 14px;
    font-style: normal;
    line-height: 1.75;
}

.yoli-contact-info-card-featured p {
    color: rgba(255, 255, 255, 0.64);
}

.yoli-contact-info-card > div > a:not(.yoli-contact-phone-number) {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yoli-brown-700);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
}

.yoli-contact-info-card > div > a svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--yoli-transition);
}

.yoli-contact-info-card > div > a:hover svg {
    transform: translateX(5px);
}

.yoli-contact-phone-number {
    margin-top: 14px;
    display: inline-block;
    color: var(--yoli-white);
    font-family: var(--yoli-font-heading);
    font-size: clamp(25px, 2vw, 34px);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--yoli-transition);
}

.yoli-contact-phone-number:hover {
    color: #e5b89a;
}

/* =========================================================
   HORARIOS
========================================================= */

.yoli-contact-hours-section {
    position: relative;
    padding: clamp(95px, 9vw, 145px) 0;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #fffaf5 0%,
            #f4e6dc 100%
        );
}

.yoli-contact-hours-section::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -100px;
    width: 370px;
    height: 370px;
    border: 1px dashed rgba(123, 68, 49, 0.12);
    border-radius: 50%;
}

.yoli-contact-hours-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(350px, 0.75fr) minmax(500px, 1.05fr);
    align-items: center;
    gap: clamp(60px, 8vw, 135px);
}

.yoli-contact-hours-content {
    max-width: 590px;
}

.yoli-contact-hours-eyebrow {
    margin-bottom: 18px;
    display: block;
    color: var(--yoli-brown-700);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.yoli-contact-hours-content h2 {
    margin: 0;
    color: var(--yoli-text);
    font-family: var(--yoli-font-heading) !important;
    font-size: clamp(52px, 5vw, 82px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 0.98;
    text-transform: uppercase;
}

.yoli-contact-hours-content h2 span {
    display: block;
    color: var(--yoli-brown-700);
    font-family: inherit;
}

.yoli-contact-hours-content p {
    margin: 25px 0 31px;
    color: var(--yoli-muted);
    font-size: 16px;
    line-height: 1.8;
}

.yoli-contact-hours-card {
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(123, 68, 49, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 30px 75px rgba(43, 9, 4, 0.11);
    backdrop-filter: blur(12px);
}

.yoli-contact-hours-row {
    min-height: 58px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-bottom: 1px solid rgba(123, 68, 49, 0.1);
}

.yoli-contact-hours-row:last-child {
    border-bottom: 0;
}

.yoli-contact-hours-row span {
    color: var(--yoli-text);
    font-size: 14px;
    font-weight: 600;
}

.yoli-contact-hours-row strong {
    color: var(--yoli-brown-700);
    font-size: 14px;
    font-weight: 600;
}

.yoli-contact-hours-row.is-closed strong {
    color: #a33c2e;
}

/* =========================================================
   GOOGLE MAPS
========================================================= */

.yoli-contact-map-section {
    padding: clamp(95px, 9vw, 145px) 0;
    background: var(--yoli-white);
}

.yoli-contact-map-heading {
    margin-bottom: 46px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
}

.yoli-contact-directions-button {
    min-height: 58px;
    padding: 0 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--yoli-brown-700);
    color: var(--yoli-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 17px 32px rgba(92, 40, 27, 0.2);
    transition:
        background-color var(--yoli-transition),
        transform var(--yoli-transition),
        box-shadow var(--yoli-transition);
}

.yoli-contact-directions-button:hover {
    background: var(--yoli-brown-950);
    color: var(--yoli-white);
    transform: translateY(-4px);
    box-shadow: 0 23px 42px rgba(43, 9, 4, 0.27);
}

.yoli-contact-directions-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--yoli-transition);
}

.yoli-contact-directions-button:hover svg {
    transform: translateX(5px);
}

.yoli-contact-map-wrapper {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border: 8px solid #f7eee7;
    border-radius: 34px;
    background: #eee5df;
    box-shadow: 0 35px 85px rgba(43, 9, 4, 0.13);
}

.yoli-contact-map-wrapper iframe {
    width: 100%;
    height: 600px;
    display: block;
    border: 0;
    filter: saturate(0.9) contrast(1.02);
}

.yoli-contact-map-card {
    position: absolute;
    z-index: 3;
    left: 30px;
    bottom: 30px;
    min-width: 320px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(123, 68, 49, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 25px 55px rgba(43, 9, 4, 0.18);
    backdrop-filter: blur(15px);
}

.yoli-contact-map-card-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--yoli-brown-700);
    color: var(--yoli-white);
}

.yoli-contact-map-card-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoli-contact-map-card div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.yoli-contact-map-card strong {
    margin-bottom: 3px;
    color: var(--yoli-brown-950);
    font-family: var(--yoli-font-heading);
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
}

.yoli-contact-map-card div span {
    color: var(--yoli-muted);
    font-size: 12px;
}

/* =========================================================
   CTA FINAL
========================================================= */

.yoli-contact-final-cta {
    position: relative;
    padding: clamp(70px, 7vw, 105px) 0;
    overflow: hidden;
    background:
        linear-gradient(
            125deg,
            #7b4431,
            #4a180f
        );
    color: var(--yoli-white);
}

.yoli-contact-final-cta::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -90px;
    width: 370px;
    height: 370px;
    border: 1px dashed rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.yoli-contact-final-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.yoli-contact-final-cta-inner > div > span {
    margin-bottom: 11px;
    display: block;
    color: #e9c1a7;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.yoli-contact-final-cta h2 {
    max-width: 800px;
    margin: 0;
    color: var(--yoli-white);
    font-family: var(--yoli-font-heading) !important;
    font-size: clamp(42px, 4vw, 68px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1;
    text-transform: uppercase;
}

.yoli-contact-final-cta-inner > a {
    min-width: 285px;
    min-height: 78px;
    padding: 11px 24px 11px 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 999px;
    background: var(--yoli-white);
    color: var(--yoli-brown-950);
    text-decoration: none;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
    transition:
        transform var(--yoli-transition),
        box-shadow var(--yoli-transition);
}

.yoli-contact-final-cta-inner > a:hover {
    color: var(--yoli-brown-950);
    transform: translateY(-5px);
    box-shadow: 0 30px 58px rgba(0, 0, 0, 0.29);
}

.yoli-contact-final-call-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--yoli-brown-700);
    color: var(--yoli-white);
}

.yoli-contact-final-call-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoli-contact-final-cta-inner > a > span:last-child {
    display: flex;
    flex-direction: column;
}

.yoli-contact-final-cta-inner > a small {
    margin-bottom: 3px;
    color: var(--yoli-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.yoli-contact-final-cta-inner > a strong {
    color: var(--yoli-brown-950);
    font-family: var(--yoli-font-heading);
    font-size: 21px;
    font-weight: 600;
}

/* =========================================================
   CONTACT — TABLET
========================================================= */

@media (max-width: 1180px) {

    .yoli-contact-hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr);
        gap: 55px;
    }

    .yoli-contact-info-grid {
        gap: 18px;
    }

    .yoli-contact-info-card {
        padding: 32px 24px;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 15px;
    }

    .yoli-contact-info-icon {
        width: 52px;
        height: 52px;
    }

    .yoli-contact-hours-grid {
        gap: 65px;
    }
}

/* =========================================================
   CONTACT — TABLET VERTICAL
========================================================= */

@media (max-width: 920px) {

    .yoli-contact-hero {
        min-height: auto;
        padding: 95px 0;
    }

    .yoli-contact-hero-inner {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .yoli-contact-hero-content {
        max-width: 760px;
        margin-inline: auto;
        text-align: center;
    }

    .yoli-contact-eyebrow {
        justify-content: center;
    }

    .yoli-contact-hero-content > p {
        margin-inline: auto;
    }

    .yoli-contact-hero-actions {
        justify-content: center;
    }

    .yoli-contact-hero-card {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .yoli-contact-info-grid {
        grid-template-columns: 1fr;
    }

    .yoli-contact-info-card {
        width: min(100%, 720px);
        min-height: auto;
        margin-inline: auto;
    }

    .yoli-contact-hours-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .yoli-contact-hours-content {
        max-width: 700px;
        margin-inline: auto;
        text-align: center;
    }

    .yoli-contact-hours-content .yoli-button {
        width: fit-content;
    }

    .yoli-contact-map-heading {
        align-items: center;
    }

    .yoli-contact-final-cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================================
   CONTACT — CELULARES
========================================================= */

@media (max-width: 600px) {

    .yoli-contact-hero {
        padding: 75px 0 80px;
    }

    .yoli-contact-hero-content h1 {
        font-size: clamp(51px, 15vw, 69px);
        line-height: 0.95;
    }

    .yoli-contact-hero-content > p {
        margin-top: 24px;
        font-size: 15px;
        line-height: 1.7;
    }

    .yoli-contact-hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .yoli-contact-primary-button,
    .yoli-contact-facebook-button {
        width: 100%;
    }

    .yoli-contact-primary-button {
        min-width: 0;
        min-height: 71px;
        grid-template-columns: 48px minmax(0, 1fr) 24px;
    }

    .yoli-contact-button-icon {
        width: 48px;
        height: 48px;
    }

    .yoli-contact-facebook-button {
        min-height: 56px;
    }

    .yoli-contact-hero-card {
        padding: 30px 24px;
        border-radius: 25px;
    }

    .yoli-contact-hero-card h2 {
        font-size: 36px;
    }

    .yoli-contact-information,
    .yoli-contact-hours-section,
    .yoli-contact-map-section {
        padding: 78px 0 85px;
    }

    .yoli-contact-section-heading {
        margin-bottom: 40px;
    }

    .yoli-contact-section-heading h2,
    .yoli-contact-map-heading h2 {
        font-size: clamp(41px, 12vw, 56px);
    }

    .yoli-contact-info-card {
        padding: 27px 22px;
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .yoli-contact-info-icon {
        width: 48px;
        height: 48px;
    }

    .yoli-contact-hours-content h2 {
        font-size: clamp(45px, 13vw, 61px);
    }

    .yoli-contact-hours-card {
        padding: 23px 19px;
        border-radius: 22px;
    }

    .yoli-contact-hours-row {
        min-height: 63px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 3px;
    }

    .yoli-contact-map-heading {
        margin-bottom: 32px;
        align-items: stretch;
        flex-direction: column;
    }

    .yoli-contact-directions-button {
        width: 100%;
    }

    .yoli-contact-map-wrapper {
        min-height: 480px;
        border-width: 5px;
        border-radius: 25px;
    }

    .yoli-contact-map-wrapper iframe {
        height: 480px;
    }

    .yoli-contact-map-card {
        right: 13px;
        left: 13px;
        bottom: 13px;
        min-width: 0;
        padding: 15px 17px;
    }

    .yoli-contact-map-card-icon {
        width: 43px;
        height: 43px;
    }

    .yoli-contact-final-cta {
        padding: 72px 0 78px;
    }

    .yoli-contact-final-cta h2 {
        font-size: clamp(39px, 11vw, 52px);
    }

    .yoli-contact-final-cta-inner > a {
        width: 100%;
        min-width: 0;
        min-height: 72px;
    }
}
/* =========================================================
   CONTACT US — ANCHO COMPLETO DEFINITIVO
========================================================= */

body.yoli-contact-page,
body.yoli-contact-page #page,
body.yoli-contact-page .site,
body.yoli-contact-page .site-content,
body.yoli-contact-page #content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.yoli-contact-page #content > .ast-container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

body.yoli-contact-page #primary,
body.yoli-contact-page .content-area,
body.yoli-contact-page .yoli-contact-main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

body.yoli-contact-page .yoli-contact-main > section {
    width: 100% !important;
    max-width: none !important;
}

/* Elimina cualquier espacio agregado por Astra encima del contenido. */

body.yoli-contact-page .site-content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
/* =========================================================
   CTA SUPERIOR DEL FOOTER
========================================================= */

.yoli-footer-cta {
    position: relative;
    padding: clamp(55px, 6vw, 85px) 0;
    overflow: hidden;
    background:
        linear-gradient(
            125deg,
            #a96d4d 0%,
            #7b4431 50%,
            #5a281c 100%
        );
    color: var(--yoli-white);
}

.yoli-footer-cta::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -90px;
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.yoli-footer-cta::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -110px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.yoli-footer-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.yoli-footer-cta-content {
    max-width: 850px;
}

.yoli-footer-cta-eyebrow {
    margin-bottom: 12px;
    display: block;
    color: #f2c9ad;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.yoli-footer-cta h2 {
    margin: 0;
    color: var(--yoli-white);
    font-family: var(--yoli-font-heading) !important;
    font-size: clamp(40px, 4.3vw, 70px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1;
    text-transform: uppercase;
}

.yoli-footer-cta h2 span {
    display: block;
    color: #f2c9ad;
    font-family: inherit;
}

.yoli-footer-cta-button {
    position: relative;
    min-width: 300px;
    min-height: 76px;
    padding: 10px 21px 10px 12px;
    display: inline-grid;
    grid-template-columns: 52px minmax(0, 1fr) 27px;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: var(--yoli-white);
    color: var(--yoli-brown-950);
    text-decoration: none;
    box-shadow: 0 22px 48px rgba(35, 6, 3, 0.27);
    transition:
        transform var(--yoli-transition),
        box-shadow var(--yoli-transition);
}

.yoli-footer-cta-button::before {
    content: "";
    position: absolute;
    top: -70%;
    left: -90%;
    width: 45%;
    height: 240%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(217, 169, 136, 0.5),
            transparent
        );
    transform: rotate(20deg);
    transition: left 750ms ease;
}

.yoli-footer-cta-button:hover {
    color: var(--yoli-brown-950);
    transform: translateY(-5px);
    box-shadow: 0 30px 58px rgba(35, 6, 3, 0.35);
}

.yoli-footer-cta-button:hover::before {
    left: 140%;
}

.yoli-footer-cta-icon {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--yoli-brown-700);
    color: var(--yoli-white);
}

.yoli-footer-cta-icon svg,
.yoli-footer-cta-arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoli-footer-cta-button-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.yoli-footer-cta-button-text small {
    margin-bottom: 3px;
    color: var(--yoli-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.yoli-footer-cta-button-text strong {
    color: var(--yoli-brown-950);
    font-family: var(--yoli-font-heading);
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
}

.yoli-footer-cta-arrow {
    position: relative;
    z-index: 2;
    display: inline-flex;
    transition: transform var(--yoli-transition);
}

.yoli-footer-cta-button:hover .yoli-footer-cta-arrow {
    transform: translateX(5px);
}

/* =========================================================
   FOOTER PRINCIPAL
========================================================= */

.yoli-site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 25%,
            rgba(255, 255, 255, 0.045),
            transparent 24%
        ),
        linear-gradient(
            125deg,
            #210603 0%,
            #2b0904 45%,
            #170302 100%
        );
    color: var(--yoli-white);
}

.yoli-site-footer::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.045;
    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.9) 1px,
            transparent 1px
        );
    background-size: 30px 30px;
}

.yoli-footer-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.yoli-footer-decoration-one {
    top: -180px;
    right: -120px;
    width: 430px;
    height: 430px;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    animation: yoliFooterDecoration 40s linear infinite;
}

.yoli-footer-decoration-two {
    left: -150px;
    bottom: -190px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: yoliFooterDecoration 48s linear infinite reverse;
}

@keyframes yoliFooterDecoration {
    to {
        transform: rotate(360deg);
    }
}

.yoli-footer-grid {
    position: relative;
    z-index: 2;
    padding-top: clamp(75px, 8vw, 120px);
    padding-bottom: clamp(70px, 7vw, 105px);
    display: grid;
    grid-template-columns:
        minmax(280px, 1.25fr)
        minmax(150px, 0.65fr)
        minmax(210px, 0.85fr)
        minmax(260px, 1fr);
    align-items: start;
    gap: clamp(40px, 5vw, 85px);
}

/* =========================================================
   MARCA DEL FOOTER
========================================================= */

.yoli-footer-brand {
    max-width: 390px;
}

.yoli-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.yoli-footer-logo-image {
    width: auto !important;
    height: auto !important;
    max-width: 175px !important;
    max-height: 125px !important;
    display: block;
    object-fit: contain;
    filter:
        drop-shadow(0 12px 22px rgba(0, 0, 0, 0.25));
    transition: transform var(--yoli-transition);
}

.yoli-footer-logo:hover .yoli-footer-logo-image {
    transform: scale(1.04);
}

.yoli-footer-logo-fallback {
    color: var(--yoli-white);
    font-family: var(--yoli-font-heading);
    font-size: 29px;
    font-weight: 600;
    text-transform: uppercase;
}

.yoli-footer-brand > p {
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
}

.yoli-footer-socials {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.yoli-footer-socials a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.045);
    color: var(--yoli-white);
    text-decoration: none;
    transition:
        color var(--yoli-transition),
        background-color var(--yoli-transition),
        border-color var(--yoli-transition),
        transform var(--yoli-transition);
}

.yoli-footer-socials a:hover {
    border-color: #d9a988;
    background: #d9a988;
    color: var(--yoli-brown-950);
    transform: translateY(-4px);
}

.yoli-footer-socials svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoli-footer-socials a:first-child svg {
    fill: currentColor;
    stroke: none;
}

/* =========================================================
   COLUMNAS
========================================================= */

.yoli-footer-column h3 {
    position: relative;
    margin: 12px 0 29px;
    padding-bottom: 15px;
    color: var(--yoli-white);
    font-family: var(--yoli-font-heading) !important;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.yoli-footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    border-radius: 20px;
    background: #d9a988;
}

.yoli-footer-navigation {
    display: grid;
    gap: 15px;
}

.yoli-footer-navigation a {
    position: relative;
    width: fit-content;
    padding-left: 17px;
    color: rgba(255, 255, 255, 0.61);
    font-size: 13px;
    text-decoration: none;
    transition:
        color var(--yoli-transition),
        transform var(--yoli-transition);
}

.yoli-footer-navigation a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d9a988;
    transform: translateY(-50%);
}

.yoli-footer-navigation a:hover {
    color: var(--yoli-white);
    transform: translateX(5px);
}

/* =========================================================
   HORARIOS
========================================================= */

.yoli-footer-hours-list {
    display: grid;
    gap: 14px;
}

.yoli-footer-hours-list > div {
    padding-bottom: 13px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.yoli-footer-hours-list span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
}

.yoli-footer-hours-list strong {
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 600;
    text-align: right;
}

.yoli-footer-hours-list .is-closed strong {
    color: #e5a187;
}

/* =========================================================
   CONTACTO DEL FOOTER
========================================================= */

.yoli-footer-contact {
    display: flex;
    flex-direction: column;
}

.yoli-footer-contact-item {
    margin-bottom: 21px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.65;
    text-decoration: none;
    transition: color var(--yoli-transition);
}

.yoli-footer-contact-item:hover {
    color: var(--yoli-white);
}

.yoli-footer-contact-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(217, 169, 136, 0.12);
    color: #d9a988;
    transition:
        color var(--yoli-transition),
        background-color var(--yoli-transition);
}

.yoli-footer-contact-item:hover .yoli-footer-contact-icon {
    background: #d9a988;
    color: var(--yoli-brown-950);
}

.yoli-footer-contact-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoli-footer-contact-item strong {
    padding-top: 7px;
    color: var(--yoli-white);
    font-family: var(--yoli-font-heading);
    font-size: 18px;
    font-weight: 600;
}

.yoli-footer-directions-link {
    width: fit-content;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d9a988;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
}

.yoli-footer-directions-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--yoli-transition);
}

.yoli-footer-directions-link:hover {
    color: var(--yoli-white);
}

.yoli-footer-directions-link:hover svg {
    transform: translateX(5px);
}

/* =========================================================
   PARTE INFERIOR
========================================================= */

.yoli-footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(0, 0, 0, 0.13);
}

.yoli-footer-bottom-inner {
    min-height: 77px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.yoli-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.43);
    font-size: 11px;
}

/* =========================================================
   BOTÓN VOLVER ARRIBA
========================================================= */

html {
    scroll-behavior: smooth;
}

.yoli-back-to-top {
    position: fixed;
    z-index: 1000;
    right: 23px;
    bottom: 88px;
    width: 50px;
    height: 50px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: var(--yoli-brown-700);
    color: var(--yoli-white);
    opacity: 0;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(43, 9, 4, 0.25);
    transform: translateY(15px);
    transition:
        visibility var(--yoli-transition),
        opacity var(--yoli-transition),
        transform var(--yoli-transition),
        background-color var(--yoli-transition);
}

.yoli-back-to-top.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.yoli-back-to-top:hover {
    background: var(--yoli-brown-950);
    transform: translateY(-4px);
}

.yoli-back-to-top svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   FOOTER — TABLET
========================================================= */

@media (max-width: 1100px) {

    .yoli-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yoli-footer-brand {
        max-width: 470px;
    }
}

/* =========================================================
   FOOTER — TABLET VERTICAL
========================================================= */

@media (max-width: 820px) {

    .yoli-footer-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .yoli-footer-cta-button {
        min-width: 300px;
    }

    .yoli-footer-bottom-inner {
        padding-top: 21px;
        padding-bottom: 21px;
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* =========================================================
   FOOTER — CELULARES
========================================================= */

@media (max-width: 600px) {

    .yoli-footer-cta {
        padding: 65px 0 70px;
    }

    .yoli-footer-cta h2 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .yoli-footer-cta-button {
        width: 100%;
        min-width: 0;
        min-height: 71px;
        grid-template-columns: 48px minmax(0, 1fr) 24px;
    }

    .yoli-footer-cta-icon {
        width: 48px;
        height: 48px;
    }

    .yoli-footer-grid {
        padding-top: 70px;
        padding-bottom: 75px;
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .yoli-footer-brand {
        max-width: none;
    }

    .yoli-footer-logo-image {
        max-width: 145px !important;
        max-height: 105px !important;
    }

    .yoli-footer-column h3 {
        margin-top: 0;
        margin-bottom: 24px;
    }

    .yoli-footer-hours-list > div {
        max-width: 390px;
    }

    .yoli-footer-bottom-inner {
        text-align: center;
    }

    .yoli-footer-bottom p {
        width: 100%;
    }

    .yoli-back-to-top {
        right: 15px;
        bottom: 80px;
        width: 46px;
        height: 46px;
    }
}