/* Reset & Base — tema oscuro, acento amarillo ~#F1C40F */
:root {
    --color-bg: #0a0a0a;
    --color-bg-elevated: #121212;
    --color-bg-card: #161616;
    --color-bg-dark: #0a0a0a;
    --color-text-main: #f4f4f5;
    --color-text-muted: #a1a1aa;
    --color-accent: #f1c40f;
    --color-accent-hover: #f4d03f;
    --color-accent-ink: #141204;
    --color-gold: #f1c40f;
    --color-gold-light: #f4d03f;
    --color-gold-dark: #d4ac0d;
    --color-navy: #0a0a0a;
    --font-heading: 'Cinzel', 'Poppins', serif;
    --font-body: 'Poppins', sans-serif;
    --spacing-section: 5rem;
    /* Aire extra bajo el nav fijo (todas las páginas) */
    --navbar-gap: 1.75rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.65;
    overflow-x: hidden;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.04em;
    hyphens: none;
    -webkit-hyphens: none;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
    -webkit-hyphens: none;
}

.text-center {
    text-align: center;
}

.text-dark {
    color: var(--color-text-main);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-size: 1rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-gold-dark) 100%);
    color: var(--color-accent-ink);
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(241, 196, 15, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--color-accent-hover) 0%, var(--color-accent) 100%);
    box-shadow: 0 8px 28px rgba(241, 196, 15, 0.45);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.icon-btn svg {
    margin-left: 10px;
}

/* ---- Corner-expand CTA button (uiverse — gharsh11032000, adaptado gold/dark) ---- */
.btn-corner {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--color-accent-ink);
    padding: 0 2.4rem;
    height: 58px;
    line-height: 58px;
    white-space: nowrap;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-gold-dark) 100%);
    transition: all 0.3s cubic-bezier(0.215, 0.610, 0.355, 1);
    border-radius: 4px;
}

/* Sliding text layer */
.btn-corner span {
    position: relative;
    display: block;
    white-space: nowrap;
    transition: transform 0.3s cubic-bezier(0.215, 0.610, 0.355, 1);
}

/* Secondary text (shows on hover from below) */
.btn-corner span::before {
    content: attr(data-hover);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    color: var(--color-accent-ink);
}

/* Corner brackets */
.btn-corner::before,
.btn-corner::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.btn-corner::before {
    top: 0;
    left: 0;
    border-top: 2px solid rgba(0, 0, 0, 0.45);
    border-left: 2px solid rgba(0, 0, 0, 0.45);
}

.btn-corner::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.45);
    border-right: 2px solid rgba(0, 0, 0, 0.45);
}

/* Hover: text sube, secondary entra */
.btn-corner:hover span {
    transform: translateY(-100%);
}

/* Corners se expanden al borde completo */
.btn-corner:hover::before,
.btn-corner:hover::after {
    width: 100%;
    height: 100%;
}

.btn-corner:hover {
    box-shadow:
        0 0 28px rgba(241, 196, 15, 0.55),
        0 0 60px rgba(212, 172, 13, 0.25);
}

.btn-corner:active {
    scale: 0.96;
    box-shadow: 0 0 12px rgba(241, 196, 15, 0.4);
}

/* Navbar — compacto; logo legible; menú siempre visible (antes se ocultaba <768px + hamburger muerto) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.94);
    backdrop-filter: blur(12px);
    padding: calc(0.4rem + env(safe-area-inset-top, 0px)) 0 0.4rem;
    z-index: 1000;
    transition: padding 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    /* Shading dorado bajo el nav */
    box-shadow:
        0 2px 0 rgba(241, 196, 15, 0.55),
        0 4px 24px rgba(241, 196, 15, 0.25),
        0 1px 0 rgba(255, 232, 160, 0.18) inset;
}

.navbar--scrolled {
    padding: calc(0.3rem + env(safe-area-inset-top, 0px)) 0 0.3rem;
    background: rgba(10, 10, 10, 0.98);
    box-shadow:
        0 2px 0 rgba(241, 196, 15, 0.65),
        0 5px 28px rgba(241, 196, 15, 0.30),
        0 8px 28px rgba(0, 0, 0, 0.45),
        0 1px 0 rgba(255, 232, 160, 0.22) inset;
}

.nav-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
}

/* logo2.png desktop; logo4.png en barra móvil (≤900px) vía <picture> */
.logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 0;
    margin-right: auto;
}

.logo picture {
    display: block;
    line-height: 0;
}

.logo img,
.logo .logo-img {
    display: block;
    height: 36px;
    width: auto;
    max-width: min(220px, 48vw);
    object-fit: contain;
    object-position: left center;
}

@media (min-width: 768px) {
    .logo img,
    .logo .logo-img {
        height: 44px;
        max-width: min(280px, 36vw);
    }
}

@media (min-width: 1024px) {
    .logo img,
    .logo .logo-img {
        height: 50px;
        max-width: 320px;
    }
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem 1.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-links a:not(.btn):not(.btn-premium) {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(244, 244, 245, 0.9);
    font-weight: 400;
}

@media (max-width: 640px) {
    .nav-links a:not(.btn):not(.btn-premium) {
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }
}

.nav-links a:not(.btn):not(.btn-premium):hover {
    color: var(--color-accent);
}

/* CTA dorado en barra (desktop + móvil centrado en top bar) */
.nav-bar-cta.btn-premium,
.nav-bar-cta.btn-premium:hover {
    color: #000;
}

.nav-bar-cta {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Menú hamburguesa (móvil / tablet estrecha) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}

.nav-toggle:hover {
    border-color: rgba(241, 196, 15, 0.45);
    background: rgba(241, 196, 15, 0.08);
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.navbar.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.navbar.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
}

.nav-backdrop.is-visible {
    display: block;
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex;
    }

    /* Fila: logo | CTA centrado | hamburguesa; menú debajo a ancho completo */
    .nav-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        grid-template-areas:
            "navlogo navcta navtoggle"
            "navmenu navmenu navmenu";
        align-items: center;
        column-gap: 0.35rem;
        row-gap: 0;
    }

    .nav-container .logo {
        grid-area: navlogo;
        justify-self: start;
        margin-right: 0;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    /* logo4 en móvil: icono compacto */
    .nav-container .logo img,
    .nav-container .logo .logo-img {
        height: 36px;
        max-width: min(52px, 14vw);
    }

    .nav-container .nav-bar-cta {
        grid-area: navcta;
        justify-self: center;
        max-width: min(200px, 46vw);
        height: 36px;
        padding: 0 0.75rem;
        font-size: 0.62rem;
        letter-spacing: 0.06em;
    }

    .nav-container .nav-bar-cta .btn-premium__icon {
        height: 16px;
    }

    .nav-container .nav-toggle {
        grid-area: navtoggle;
        justify-self: end;
    }

    .nav-container .nav-links {
        grid-area: navmenu;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 0;
        width: 100%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 0.4s ease, opacity 0.25s ease, visibility 0.25s;
        background: rgba(12, 12, 12, 0.98);
        border-bottom: 1px solid rgba(241, 196, 15, 0.18);
        margin-top: 0.35rem;
        padding: 0;
        border-radius: 0 0 10px 10px;
    }

    .navbar.is-open .nav-links {
        max-height: min(82vh, 560px);
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
        padding: 0.35rem 0 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 901px) {
    .nav-toggle {
        display: none !important;
    }

    .nav-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem 1.25rem;
    }

    .nav-container .logo {
        margin-right: auto;
    }

    .nav-container .nav-bar-cta {
        order: 3;
        height: 36px;
        font-size: 0.72rem;
        padding: 0 1.2em;
        max-width: none;
    }

    .nav-container .nav-links {
        order: 2;
        flex: 1 1 auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important;
        margin-top: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--navbar-gap) + env(safe-area-inset-top, 0px));
    background-color: var(--color-bg);
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(165deg, rgba(0, 0, 0, 0.55) 0%, rgba(10, 10, 10, 0.92) 55%, #0a0a0a 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    width: 100%;
    color: var(--color-text-main);
}

.hero-content--centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 920px;
}

/* Cursos: hero más compacto, sin vacío grande bajo el botón */
.hero.hero--courses {
    height: auto;
    min-height: 0;
    padding-top: calc(var(--navbar-gap) + env(safe-area-inset-top, 0px) + 5rem);
    padding-bottom: 5rem;
}

.hero--courses .hero-title {
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.15;
    font-weight: 500;
}

.hero--courses .hero-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cursos: línea superior del hero (mensaje clave — debe destacar) */
.hero.hero--courses .eyebrow {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 3.6vw, 1.55rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.28;
    margin-bottom: 1.35rem;
    color: var(--color-accent);
    text-shadow:
        0 0 28px rgba(241, 196, 15, 0.45),
        0 0 2px rgba(0, 0, 0, 0.9),
        0 3px 14px rgba(0, 0, 0, 0.75);
}

.eyebrow {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-family: var(--font-body);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
    -webkit-hyphens: none;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.7;
}

/* Sections General */
.section {
    padding: var(--spacing-section) 0;
}

.section-dark {
    background-color: var(--color-bg-dark);
}

.section-light {
    background-color: var(--color-bg-elevated);
    color: var(--color-text-main);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.divider-gold {
    width: 80px;
    height: 4px;
    background-color: var(--color-gold);
    margin: 1rem auto 3rem;
}

/* Grid Checkpoints */
.grid-checkpoints {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card-check {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.3s, border-color 0.3s;
}

.card-check:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

.card-check p {
    color: rgba(244, 244, 245, 0.92);
    font-weight: 300;
}

.icon-check {
    color: var(--color-gold);
    font-size: 1.2rem;
    min-width: 25px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

/* ---- Blob card (uiverse — adaptado dark + gold) ---- */
.feature-card {
    position: relative;
    width: 100%;
    max-width: 240px;
    min-height: 280px;
    border-radius: 14px;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Inner panel (dark glass) */
.feature-card .fc-bg {
    position: absolute;
    inset: 5px;
    z-index: 2;
    background: rgba(16, 14, 10, 0.92);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 1px solid rgba(241, 196, 15, 0.18);
}

/* Animated gold blob */
.feature-card .fc-blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, #f4d03f 0%, #d4ac0d 55%, rgba(241,196,15,0.3) 100%);
    opacity: 0.85;
    filter: blur(14px);
    animation: blob-bounce 6s infinite ease;
}

@keyframes blob-bounce {
    0%   { transform: translate(-100%, -100%) translate3d(0,   0,   0); }
    25%  { transform: translate(-100%, -100%) translate3d(100%, 0,   0); }
    50%  { transform: translate(-100%, -100%) translate3d(100%, 100%, 0); }
    75%  { transform: translate(-100%, -100%) translate3d(0,   100%, 0); }
    100% { transform: translate(-100%, -100%) translate3d(0,   0,   0); }
}

/* Content inside the glass panel */
.feature-card .fc-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.feature-card h3 {
    color: var(--color-accent);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.feature-card p {
    color: rgba(244, 244, 245, 0.75);
    font-weight: 300;
    font-size: 0.82rem;
    line-height: 1.6;
}

/* Instructor */
.section-gold-gradient {
    background: radial-gradient(ellipse 120% 80% at 70% 20%, rgba(241, 196, 15, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #101010 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(241, 196, 15, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.instructor-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.instructor-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--color-accent);
    box-shadow: 16px 16px 0 rgba(241, 196, 15, 0.12);
}

.instructor-image .instructor-photo {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.instructor-content {
    flex: 1;
    color: var(--color-text-muted);
    font-weight: 300;
}

.instructor-content .section-title {
    color: var(--color-text-main);
}

.instructor-content .instructor-social-nav {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.instructor-content .instructor-social-nav .footer-social {
    justify-content: flex-start;
}

@media (max-width: 900px) {
    .instructor-content .instructor-social-nav .footer-social {
        justify-content: center;
    }
}

/* --- CURSOS: tarjeta destacada «para vos» (adaptado Uiverse, oro del sitio) --- */
.para-vos-intro {
    width: 100%;
    max-width: none;
    margin: 0 auto 2.5rem;
    text-align: left;
}

.para-vos-spotlight {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    background: linear-gradient(165deg, #141414 0%, #0a0a0a 55%, #080808 100%);
    border-radius: 12px;
    padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3.5vw, 2.75rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: clamp(1rem, 2vw, 1.35rem);
    cursor: default;
    border: 1px solid rgba(241, 196, 15, 0.35);
    box-shadow:
        0 0 0 1px rgba(241, 196, 15, 0.1),
        0 10px 36px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(241, 196, 15, 0.14),
        inset 0 1px 0 rgba(255, 232, 160, 0.07);
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.para-vos-spotlight:hover {
    border-color: rgba(241, 196, 15, 0.5);
    box-shadow:
        0 0 0 1px rgba(241, 196, 15, 0.16),
        0 14px 44px rgba(0, 0, 0, 0.6),
        0 0 52px rgba(241, 196, 15, 0.22),
        inset 0 1px 0 rgba(255, 232, 160, 0.09);
}

.para-vos-spotlight ul {
    margin: 0;
    padding-left: 1.5rem;
    color: rgba(244, 244, 245, 0.92);
    font-weight: 300;
    line-height: 1.72;
    font-size: clamp(1.05rem, 2.1vw, 1.22rem);
}

.para-vos-spotlight li {
    margin-bottom: 0.65rem;
}

.para-vos-spotlight li:last-child {
    margin-bottom: 0;
}

.para-vos-spotlight .para-vos-highlight {
    display: block;
    text-align: center;
    font-size: clamp(1.2rem, 2.8vw, 1.65rem);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.45;
    margin: 0;
    max-width: none;
}

@media (max-width: 768px) {
    .para-vos-intro {
        text-align: center;
    }

    .para-vos-spotlight ul {
        text-align: center;
        padding-left: 0;
        list-style-position: inside;
    }
}

/* Reserva de cupo: dos líneas sin cortar «Reserva» */
.reserva-heading {
    line-height: 1.25;
}

.reserva-heading__line {
    display: block;
}

.reserva-heading__line + .reserva-heading__line {
    margin-top: 0.2em;
}

/* Saltos de título sin guiones automáticos (especialmente móvil) */
.section-title--balance {
    hyphens: none;
    -webkit-hyphens: none;
    overflow-wrap: break-word;
    word-break: normal;
}

/* Testimonios (Cursos — carrusel horizontal, tarjetas tipo Shorts 9:16) */
.testimonios-section .section-header {
    margin-bottom: 0.35rem;
}

.testimonios-lead {
    max-width: 38rem;
    margin: 0.35rem auto 0;
    padding: 0 0.75rem;
    color: rgba(244, 244, 245, 0.78);
    font-weight: 300;
    font-size: clamp(1.02rem, 2.15vw, 1.18rem);
    line-height: 1.6;
}

.testimonios-carousel-outer {
    width: 100%;
    margin-top: 0.15rem;
    overflow: hidden;
    padding: 0.85rem 0 1.35rem;
}

/* Scroll: reglas base en cursos.html (inline); aquí solo refuerzo cursor */
.testimonios-carousel-wrapper {
    width: 100%;
    cursor: grab;
}

.testimonios-carousel-wrapper:active {
    cursor: grabbing;
}

.testimonios-carousel-track {
    gap: 0.85rem;
}

/* Base embed (1:1); carrusel usa variante vertical abajo */
.testimonial-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(241, 196, 15, 0.22);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
    min-height: 0;
    background: #0a0a0a;
}

.testimonial-embed.testimonial-embed--carousel {
    /* Ancho fijo: evita min() que a veces rompe el ancho del flex y el -50% del marquee */
    flex: 0 0 240px;
    width: 240px;
    min-width: 240px;
    max-width: 280px;
    height: auto;
    padding-bottom: 0;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    flex-shrink: 0;
}

@media (min-width: 480px) {
    .testimonial-embed.testimonial-embed--carousel {
        flex: 0 0 260px;
        width: 260px;
        min-width: 260px;
    }
}

.testimonial-embed.testimonial-embed--carousel .testimonial-facade {
    border-radius: 14px;
}

.testimonial-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Miniatura + play: evita el logo Shorts de YouTube hasta que el usuario pulse */
.testimonial-facade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    cursor: pointer;
    display: block;
    background: #0a0a0a;
    border-radius: 11px;
    overflow: hidden;
}

.testimonial-facade-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-facade-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.55);
    border: 2px solid rgba(241, 196, 15, 0.85);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.testimonial-facade-play::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-32%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent var(--color-gold);
}

.testimonial-facade:hover .testimonial-facade-play,
.testimonial-facade:focus-visible .testimonial-facade-play {
    background: rgba(241, 196, 15, 0.2);
    border-color: var(--color-gold-light);
}

.testimonial-facade:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.testimonial-embed--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, #141414 0%, #0a0a0a 100%);
}

.testimonial-placeholder-label {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(244, 244, 245, 0.42);
    font-family: var(--font-heading);
    font-weight: 500;
}

.instructor-content p {
    margin-bottom: 1rem;
}

.instructor-name {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: rgba(244, 244, 245, 0.95);
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--color-text-muted);
    background: var(--color-bg);
}

.footer-credit {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem 0.35rem;
}

.footer-credit a {
    color: var(--color-accent);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-credit a:hover {
    color: var(--color-accent-hover);
    opacity: 0.95;
}

/* Landing: redes arriba, © abajo, sin tocar padding del .footer */
.footer--landing-order .footer-social-nav {
    margin-top: 0;
}

.footer--landing-order .footer-credit {
    margin-bottom: 0;
}

.footer--landing-order .footer-copy {
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Footer — redes (patrón Uiverse, adaptado al tema) */
.footer-social-nav {
    margin-top: 1rem;
    margin-bottom: 0.35rem;
}

.footer-social {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0 0 1.35rem;
}

.footer-social__item {
    margin: 0 10px;
    position: relative;
}

.footer-social__item a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 20%;
    color: rgba(244, 244, 245, 0.92);
    background-color: var(--color-bg-card);
    border: 1px solid rgba(241, 196, 15, 0.15);
    transition: all 0.3s ease-in-out;
}

.footer-social__item a:hover {
    box-shadow: 3px 2px 45px 0 rgba(0, 0, 0, 0.5);
    color: #fff;
    border-color: rgba(241, 196, 15, 0.35);
}

.footer-social__item a svg {
    position: relative;
    z-index: 1;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.footer-social__item a .filled {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #141414;
    transition: height 0.3s ease-in-out;
    border-radius: inherit;
}

.footer-social__item a:hover .filled {
    height: 100%;
}

.footer-social__item a[data-social="instagram"] .filled {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social__item a[data-social="youtube"] .filled {
    background-color: #ff0000;
}

.footer-social__item .tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    font-size: 0.82rem;
    font-weight: 500;
    transition: opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    z-index: 3;
}

.footer-social__item a[data-social="instagram"] ~ .tooltip {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social__item a[data-social="youtube"] ~ .tooltip {
    background-color: #ff0000;
}

.footer-social__item:hover .tooltip {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 12px);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.9s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.65rem, 6.2vw, 2.5rem);
        line-height: 1.18;
        hyphens: none;
        -webkit-hyphens: none;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .section-title {
        font-size: clamp(1.35rem, 5.5vw, 2.2rem);
        line-height: 1.2;
        hyphens: none;
        -webkit-hyphens: none;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .text-title {
        hyphens: none;
        -webkit-hyphens: none;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .instructor-wrapper {
        flex-direction: column;
    }

    .instructor-image {
        width: 100%;
    }
}

/* --- SERVICES PAGE STYLES --- */

.header-services .hero-content {
    max-width: 1000px;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.header-services {
    position: relative;
    height: auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Nav fijo ~52–60px + safe area; evita que el eyebrow quede debajo del nav */
    padding-top: calc(4.5rem + env(safe-area-inset-top, 0px) + 0.75rem);
    padding-bottom: 2rem;
    background-color: var(--color-bg);
    background-image: url('assets/services-bg.png');
    background-size: cover;
    background-position: center center;
    /* scroll evita costura con la siguiente sección (fixed + móvil) */
    background-attachment: scroll;
}

@media (min-width: 901px) {
    .header-services {
        min-height: 280px;
        padding-top: calc(4.75rem + env(safe-area-inset-top, 0px) + 1.25rem);
        padding-bottom: 2.5rem;
    }
}

/* Aire razonable entre eyebrow, H1 y subtítulo (solo página Servicios) */
.header-services .eyebrow {
    margin-bottom: 0.65rem;
}

.header-services .hero-title {
    margin-bottom: 1rem;
}

.header-services .hero-subtitle {
    margin-bottom: 0;
}

/* Primera sección tras el hero: equilibrio (ni hueco enorme ni pegado) */
.header-services + .section.section-dark {
    padding-top: 2.25rem;
}

@media (min-width: 768px) {
    .header-services + .section.section-dark {
        padding-top: 2.75rem;
    }
}

.header-services + .section.section-dark .divider-gold {
    margin: 0.85rem auto 2rem;
}

.header-services + .section.section-dark .section-title {
    margin-bottom: 0.65rem;
}

/* Franja del mismo fondo bajo el overlay: tapa la costura con la siguiente sección */
.header-services .hero-overlay {
    box-shadow: 0 4px 0 #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 2.5rem;
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.service-card {
    background: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    border-color: rgba(241, 196, 15, 0.35);
}

.service-card.featured {
    background: linear-gradient(160deg, #1a1810 0%, #141414 100%);
    border: 1px solid rgba(241, 196, 15, 0.25);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-gold);
    color: var(--color-accent-ink);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.service-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-body h3 {
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
    font-size: 1.35rem;
    font-weight: 500;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
    -webkit-hyphens: none;
}

.service-body .price {
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.service-body .price .session {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-muted);
    font-family: var(--font-body);
}

.service-body p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-weight: 300;
}

.service-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.service-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Nav Active State */
.nav-links a.active {
    color: var(--color-gold);
    position: relative;
}

/* --- HOME PAGE STYLES --- */
body.home-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.home-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(72px + var(--navbar-gap) + env(safe-area-inset-top, 0px)) 0 50px;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-auto {
    margin-top: auto;
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

/* Home cards — estilo slide-button (uiverse / alexruix adaptado) */
.home-card {
    position: relative;
    border-radius: 20px;
    height: 500px;
    display: block;
    cursor: pointer;
    background: var(--color-bg-card);
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.5s ease-out, box-shadow 0.5s ease-out, transform 0.4s ease;
    overflow: visible;
}

/* inner wrapper: recorta imagen al borde-radius */
.home-card-body {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.home-card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.home-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* overlay de texto */
.card-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    box-sizing: border-box;
}

.text-title {
    font-size: clamp(1rem, 4.2vw, 1.8rem);
    font-weight: 600;
    color: var(--color-accent);
    font-family: var(--font-heading);
    letter-spacing: 0.06em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.15;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
    -webkit-hyphens: none;
}

.text-body {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* Estilos extra para tarjetas de servicios con formato home-card */
.card-details .price {
    font-size: clamp(0.95rem, 3.2vw, 1.4rem);
    color: var(--color-accent);
    font-weight: 700;
    margin: 0.25rem 0;
    font-family: var(--font-heading);
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
    -webkit-hyphens: none;
    line-height: 1.2;
}

.card-details .description {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.card-details .meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* botón deslizante */
.card-button {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 125%);
    width: 68%;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-gold-dark) 100%);
    color: var(--color-accent-ink);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    text-align: center;
    opacity: 0;
    transition: 0.35s ease-out;
    box-shadow: 0 6px 24px rgba(241, 196, 15, 0.45);
    font-family: var(--font-body);
    white-space: nowrap;
    pointer-events: none;
}

/* hover */
.home-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 28px rgba(241, 196, 15, 0.22);
    transform: translateY(-6px);
}

.home-card:hover .home-card-image img {
    transform: scale(1.06);
}

.home-card:hover .card-button {
    transform: translate(-50%, 50%);
    opacity: 1;
    pointer-events: auto;
}

/* Service Page Images */
.service-image-container {
    height: 250px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-container img {
    transform: scale(1.1);
}

/* Responsive Home */
@media (max-width: 768px) {
    .home-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-card {
        height: auto;
        min-height: 320px;
        padding-bottom: 4.5rem;
        overflow: hidden;
    }

    .home-card-body {
        min-height: 280px;
    }

    /* CTA siempre visible en táctil (sin depender de hover) */
    .card-button {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
        bottom: 1rem;
        width: calc(100% - 2.5rem);
        max-width: 280px;
        font-size: 0.72rem;
        padding: 0.65rem 1rem;
    }

    .home-card:hover .card-button {
        transform: translate(-50%, 0);
    }
}

@media (hover: none) and (pointer: coarse) {
    .card-button {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
        bottom: 1rem;
        width: calc(100% - 2.5rem);
        max-width: 280px;
    }

    .home-card:hover .card-button {
        transform: translate(-50%, 0);
    }
}

/* --- PREMIUM NAV BUTTON (uiverse / vinodjangid07 — adaptado) --- */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 36px;
    padding: 0 1.4em;
    border: none;
    border-radius: 40px;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% 200%;
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--font-body);
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(180, 140, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-premium__icon {
    height: 18px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.btn-premium:hover {
    transform: scale(0.95);
    animation: premiumGradient 3s ease infinite;
    box-shadow: 0 4px 20px rgba(180, 140, 0, 0.55);
}

@keyframes premiumGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- ANIMATED RESERVE BUTTON (uiverse) --- */
.btn-reserve {
    --line_color: #f1c40f;
    --back_color: #000000;
    position: relative;
    z-index: 0;
    width: 100%;
    height: 52px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--line_color);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: var(--font-body);
}

.btn-reserve__text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.btn-reserve::before,
.btn-reserve::after,
.btn-reserve__text::before,
.btn-reserve__text::after {
    content: "";
    position: absolute;
    height: 3px;
    border-radius: 2px;
    background: var(--line_color);
    transition: all 0.5s ease;
}

.btn-reserve::before {
    top: 0;
    left: 54px;
    width: calc(100% - 56px * 2 - 16px);
}

.btn-reserve::after {
    top: 0;
    right: 54px;
    width: 8px;
}

.btn-reserve__text::before {
    bottom: 0;
    right: 54px;
    width: calc(100% - 56px * 2 - 16px);
}

.btn-reserve__text::after {
    bottom: 0;
    left: 54px;
    width: 8px;
}

.btn-reserve__line {
    position: absolute;
    top: 0;
    width: 56px;
    height: 100%;
    overflow: hidden;
}

.btn-reserve__line::before {
    content: "";
    position: absolute;
    top: 0;
    width: 150%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 300px;
    border: solid 3px var(--line_color);
}

.btn-reserve__line:nth-child(1),
.btn-reserve__line:nth-child(1)::before {
    left: 0;
}

.btn-reserve__line:nth-child(2),
.btn-reserve__line:nth-child(2)::before {
    right: 0;
}

.btn-reserve:hover {
    letter-spacing: 0.35em;
}

.btn-reserve:hover::before,
.btn-reserve:hover .btn-reserve__text::before {
    width: 8px;
}

.btn-reserve:hover::after,
.btn-reserve:hover .btn-reserve__text::after {
    width: calc(100% - 56px * 2 - 16px);
}

.btn-reserve__drow1,
.btn-reserve__drow2 {
    position: absolute;
    z-index: -1;
    border-radius: 16px;
    transform-origin: 16px 16px;
}

.btn-reserve__drow1 {
    top: -16px;
    left: 40px;
    width: 32px;
    height: 0;
    transform: rotate(30deg);
}

.btn-reserve__drow2 {
    top: 44px;
    left: 77px;
    width: 32px;
    height: 0;
    transform: rotate(-127deg);
}

.btn-reserve__drow1::before,
.btn-reserve__drow1::after,
.btn-reserve__drow2::before,
.btn-reserve__drow2::after {
    content: "";
    position: absolute;
}

.btn-reserve__drow1::before {
    bottom: 0;
    left: 0;
    width: 0;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(-60deg);
}

.btn-reserve__drow1::after {
    top: -10px;
    left: 45px;
    width: 0;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(69deg);
}

.btn-reserve__drow2::before {
    bottom: 0;
    left: 0;
    width: 0;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(-146deg);
}

.btn-reserve__drow2::after {
    bottom: 26px;
    left: -40px;
    width: 0;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(-262deg);
}

.btn-reserve__drow1,
.btn-reserve__drow1::before,
.btn-reserve__drow1::after,
.btn-reserve__drow2,
.btn-reserve__drow2::before,
.btn-reserve__drow2::after {
    background: var(--back_color);
}

.btn-reserve:hover .btn-reserve__drow1 {
    animation: reserveDrow1 ease-in 0.06s forwards;
}
.btn-reserve:hover .btn-reserve__drow1::before {
    animation: reserveDrow2 linear 0.08s 0.06s forwards;
}
.btn-reserve:hover .btn-reserve__drow1::after {
    animation: reserveDrow3 linear 0.03s 0.14s forwards;
}
.btn-reserve:hover .btn-reserve__drow2 {
    animation: reserveDrow4 linear 0.06s 0.2s forwards;
}
.btn-reserve:hover .btn-reserve__drow2::before {
    animation: reserveDrow3 linear 0.03s 0.26s forwards;
}
.btn-reserve:hover .btn-reserve__drow2::after {
    animation: reserveDrow5 linear 0.06s 0.32s forwards;
}

@keyframes reserveDrow1 {
    0%   { height: 0; }
    100% { height: 100px; }
}
@keyframes reserveDrow2 {
    0%   { width: 0; opacity: 0; }
    10%  { opacity: 0; }
    11%  { opacity: 1; }
    100% { width: 120px; }
}
@keyframes reserveDrow3 {
    0%   { width: 0; }
    100% { width: 80px; }
}
@keyframes reserveDrow4 {
    0%   { height: 0; }
    100% { height: 120px; }
}
@keyframes reserveDrow5 {
    0%   { width: 0; }
    100% { width: 124px; }
}

@media (max-width: 480px) {
    body.home-page .hero-title {
        font-size: clamp(1.55rem, 7.5vw, 2.1rem);
        line-height: 1.2;
    }
}
