@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --black: #050505;
    --black-soft: #090909;
    --black-light: #111111;
    --white: #ffffff;
    --white-soft: #cfcfcf;
    --gold: #c8a66a;
    --gold-light: #ddc18c;
    --border: rgba(255,255,255,0.12);
    --container: 1240px;
    --heading: "Barlow Condensed", sans-serif;
    --body: "Inter", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--body);
    overflow-x: hidden;
}

body.modal-open {
    overflow: auto;
}

button,
a {
    font-family: inherit;
}

button {
    border: none;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(calc(100% - 80px), var(--container));
    margin: auto;
}

.section {
    padding: 140px 0;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 22px;
}

h1,
h2,
h3 {
    font-family: var(--heading);
    font-weight: 600;
    line-height: .9;
}

h2 {
    font-size: clamp(55px, 7vw, 100px);
    text-transform: uppercase;
}

h2 span {
    color: var(--gold);
}

p {
    color: var(--white-soft);
    line-height: 1.8;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    padding: 22px 0;

    background: rgba(0,0,0,.72);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255,255,255,.06);

    transition: background .3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    width: 190px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #d0d0d0;
    transition: .3s;
}

.nav a:hover {
    color: var(--gold);
}

.nav-book {
    padding: 12px 20px;
    background: var(--gold);
    color: #000;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;

    transition: .3s;
}

.nav-book:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: transparent;
    width: 30px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: white;
    margin: 6px 0;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    background-image: url("fondo.jpg");
    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.91),
            rgba(0,0,0,.42),
            rgba(0,0,0,.82)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 90px;

    max-width: 900px;
}

.hero-logo {
    width: 135px;
    margin-bottom: 32px;
}

.hero-logo img {
    width: 100%;
}

.eyebrow {
    color: var(--gold);

    font-size: 11px;

    letter-spacing: 4px;

    font-weight: 600;
}

.hero h1 {
    font-size: clamp(70px, 10vw, 150px);

    text-transform: uppercase;

    margin: 25px 0;

    max-width: 1050px;
}

.hero h1 span {
    display: block;
    color: var(--gold);
}

.hero p {
    max-width: 570px;
    font-size: 16px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    min-height: 52px;

    padding: 0 30px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    transition: .3s;
}

.btn-gold {
    background: var(--gold);
    color: #050505;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.4);
    color: white;
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;

    right: 40px;
    bottom: 40px;

    writing-mode: vertical-rl;

    font-size: 9px;

    letter-spacing: 3px;

    color: #888;
}

.scroll-indicator span {
    display: block;

    width: 1px;
    height: 60px;

    background: var(--gold);

    margin-bottom: 10px;
}


/* =========================
   NOSOTROS
========================= */

.about {
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(200,166,106,.06),
            transparent 30%
        ),
        var(--black);
}

.about-grid {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 100px;

    align-items: center;
}

.about-image {
    aspect-ratio: 4 / 5;

    border: 1px solid var(--border);

    padding: 20px;

    position: relative;
}

.about-image::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 60px;
    height: 60px;

    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.about-image-inner {
    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            145deg,
            #151515,
            #050505
        );

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.about-image-inner img {
    width: 100%;
    height: auto;

    display: block;

    opacity: .8;

    object-fit: contain;

    transition: opacity 0.5s ease;
}

.about-content .lead {
    font-size: 18px;

    margin: 35px 0 20px;

    color: #e8e8e8;
}

.about-content p {
    max-width: 650px;
    margin-bottom: 15px;
}

.about-content strong {
    color: white;
}

.text-button {
    margin-top: 25px;

    background: transparent;

    color: var(--gold);

    letter-spacing: 2px;

    font-size: 11px;

    font-weight: 700;

    transition: .3s;
}

.text-button:hover {
    letter-spacing: 3px;
}


/* =========================
   TITULOS DE SECCION
========================= */

.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 40px;

    margin-bottom: 70px;
}

.section-heading > p {
    max-width: 360px;
    font-size: 14px;
}

.section-heading.centered {
    display: block;

    text-align: center;

    max-width: 800px;

    margin-left: auto;
    margin-right: auto;
}

.section-heading.centered p {
    max-width: 600px;

    margin: 25px auto 0;
}


/* =========================
   BARBEROS
========================= */

.barbers {
    background-image: url("fondo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.barbers-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.barber-card {
    cursor: pointer;

    background: #101010;

    border: 1px solid rgba(255,255,255,.08);

    transition: .4s;
}

.barber-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(200,166,106,.5);
}

.barber-image {
    position: relative;

    aspect-ratio: 3 / 4;

    overflow: hidden;

    background: #111;
}

.barber-image > img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s;
}

.barber-card:hover .barber-image > img {
    transform: scale(1.04);
}

.barber-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 40%,
            rgba(0,0,0,.85)
        );

    display: flex;

    align-items: end;

    justify-content: center;

    padding-bottom: 30px;

    opacity: 0;

    transition: .4s;
}

.barber-card:hover .barber-overlay {
    opacity: 1;
}

.barber-overlay span {
    color: white;

    font-size: 10px;

    letter-spacing: 3px;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 8px;
}

.barber-info {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 25px;
}

.barber-info span {
    color: var(--gold);

    font-size: 9px;

    letter-spacing: 2px;
}

.barber-info h3 {
    font-size: 38px;

    margin-top: 5px;
}

.barber-info button {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,.2);

    background: transparent;

    color: white;

    font-size: 18px;

    transition: .3s;
}

.barber-card:hover .barber-info button {
    background: var(--gold);

    color: black;

    border-color: var(--gold);
}


/* =========================
   LAUTARO
========================= */

.lautaro-placeholder {
    display: flex;

    align-items: center;
    justify-content: center;
}

.coming-soon {
    text-align: center;

    display: flex;

    flex-direction: column;

    gap: 15px;

    color: var(--gold);
}

.coming-soon span {
    font-size: 9px;
    letter-spacing: 4px;
}

.coming-soon strong {
    font-family: var(--heading);

    font-size: 40px;

    line-height: .9;
}


/* =========================
   SERVICIOS
========================= */

.services {
    background: #050505;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.service-card {
    position: relative;

    min-height: 300px;

    padding: 35px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition: .4s;
}

.service-card:hover {
    background: #0d0d0d;
}

.service-number {
    color: #555;

    font-size: 11px;

    letter-spacing: 2px;
}

.service-icon {
    color: var(--gold);

    font-size: 35px;

    margin: 45px 0 25px;
}

.service-card h3 {
    font-size: 35px;
}

.service-card p {
    margin-top: 15px;

    font-size: 13px;
}


/* =========================
   FRASE
========================= */

.statement {
    padding: 170px 0;

    text-align: center;

    background-image:
    
        linear-gradient(
            rgba(0,0,0,.88),
            rgba(0,0,0,.95)
        ),
        url("img/fondo-barber.jpg");

    background-size: cover;

    background-position: center;
}

.statement-logo {
    width: 110px;

    margin: 0 auto 35px;

    opacity: .8;
}

.statement > .container > span {
    color: var(--gold);

    font-size: 10px;

    letter-spacing: 5px;
}

.statement h2 {
    font-size: clamp(50px, 7vw, 100px);

    margin: 25px auto;
}

.statement p {
    color: white;

    font-size: 12px;

    letter-spacing: 5px;
}


/* =========================
   INSTAGRAM
========================= */

.instagram {
    background: #0b0b0b;
}

.instagram-box {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 60px;

    padding: 70px;

    border: 1px solid var(--border);

    background:
        linear-gradient(
            135deg,
            rgba(200,166,106,.06),
            transparent
        );
}

.instagram-box h2 {
    font-size: clamp(50px, 6vw, 85px);
}

.instagram-box p {
    max-width: 550px;

    margin-top: 20px;
}

.instagram-button {
    min-width: 260px;

    padding: 22px 25px;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 11px;

    letter-spacing: 2px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    transition: .3s;
}

.instagram-button:hover {
    background: var(--gold);

    color: black;
}


/* =========================
   CTA FINAL
========================= */

.final-cta {
    padding: 170px 0;

    text-align: center;

    background: var(--black);
}

.final-cta h2 {
    font-size: clamp(65px, 10vw, 150px);

    margin: 15px auto 45px;

    max-width: 1000px;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 70px 0 30px;

    background: #030303;

    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 60px;
}

.footer-brand img {
    width: 180px;
}

.footer-brand p {
    margin-top: 15px;

    font-size: 13px;
}

.footer-links,
.footer-social {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.footer-links a,
.footer-social a {
    color: #999;

    font-size: 12px;

    transition: .3s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border);

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    color: #555;

    font-size: 9px;

    letter-spacing: 2px;
}


/* =========================
   MODALES
========================= */

.modal {
    position: fixed;

    inset: 0;

    z-index: 2000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    opacity: 0;

    visibility: hidden;

    transition: .3s;
}

.modal.active {
    opacity: 1;

    visibility: visible;
}

.modal-backdrop {
    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.9);

    backdrop-filter: blur(10px);
}

.barber-modal {
    position: relative;

    z-index: 2;

    width: min(1000px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    background: #0b0b0b;

    border: 1px solid var(--border);
}

.modal-image {
    min-height: 650px;
}

.modal-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.modal-content {
    padding: 60px;
}

.modal-content h2 {
    font-size: 75px;

    margin-bottom: 20px;
}

.modal-content > p {
    margin-bottom: 40px;
}

.modal-content h3 {
    font-size: 20px;

    margin-bottom: 20px;

    color: white;
}

.modal-close {
    position: absolute;

    z-index: 10;

    top: 15px;
    right: 15px;

    width: 40px;
    height: 40px;

    background: rgba(0,0,0,.7);

    color: white;

    font-size: 28px;

    transition: .3s;
}

.modal-close:hover {
    background: var(--gold);

    color: black;
}

.cuts-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-bottom: 30px;
}

.cut {
    aspect-ratio: 1;

    background: #151515;

    overflow: hidden;
}

.cut img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cut-placeholder {
    height: 100%;

    min-height: 120px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 15px;

    color: #666;

    font-size: 9px;

    letter-spacing: 2px;
}

.full-button {
    width: 100%;
}


/* =========================
   RESERVA
========================= */

.booking-modal {
    position: relative;

    z-index: 2;

    width: min(600px, 100%);

    background: #0b0b0b;

    border: 1px solid var(--border);

    padding: 60px;
}

.booking-modal h2 {
    font-size: 65px;

    margin-bottom: 20px;
}

.booking-modal > p {
    margin-bottom: 35px;
}

.booking-options {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}

.booking-option {
    background: #151515;

    border: 1px solid rgba(255,255,255,.1);

    padding: 20px;

    color: white;

    text-align: left;

    display: grid;

    grid-template-columns: 45px 1fr;

    align-items: center;

    transition: .3s;
}

.booking-option:hover {
    background: var(--gold);

    color: black;

    border-color: var(--gold);
}

.booking-option span {
    grid-row: span 2;

    font-family: var(--heading);

    font-size: 30px;

    color: var(--gold);
}

.booking-option:hover span {
    color: black;
}

.booking-option strong {
    font-size: 11px;

    letter-spacing: 1px;
}

.booking-option small {
    font-size: 8px;

    letter-spacing: 2px;

    margin-top: 4px;

    opacity: .6;
}


/* =========================
   WHATSAPP
========================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: #25d366;

    color: white;

    font-size: 27px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.4);

    transition: .3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .nav {
        position: fixed;

        top: 80px;
        left: 0;

        width: 100%;

        background: #050505;

        padding: 30px;

        flex-direction: column;

        align-items: flex-start;

        transform: translateY(-150%);

        transition: .4s;

        border-bottom: 1px solid var(--border);
    }

    .nav.active {
        transform: translateY(0);
    }

    .menu-toggle {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-image {
        max-width: 500px;
    }

    .barbers-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .instagram-box {
        flex-direction: column;

        align-items: flex-start;
    }

    .barber-modal {
        grid-template-columns: 1fr;
    }

    .modal-image {
        min-height: 400px;
        max-height: 450px;
    }
}


/* =========================
   CELULAR
========================= */

@media (max-width: 650px) {

    .container {
        width: calc(100% - 40px);
    }

    .section {
        padding: 90px 0;
    }

    .brand img {
        width: 145px;
    }

    .hero {
        background-position: 62% center;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero-logo {
        width: 90px;
    }

    .hero h1 {
        font-size:
            clamp(58px, 18vw, 95px);
    }

    .hero p {
        font-size: 14px;
    }

    .scroll-indicator {
        display: none;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 20px;
    }

    .barbers-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 260px;
    }

    .instagram-box {
        padding: 35px 25px;
    }

    .instagram-button {
        width: 100%;
        min-width: 0;
    }

    .final-cta {
        padding: 110px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }

    .booking-modal {
        padding: 45px 25px;
    }

    .booking-modal h2 {
        font-size: 50px;
    }

    .booking-options {
        grid-template-columns: 1fr;
    }

    .modal {
        padding: 15px;
    }

    .modal-content {
        padding: 35px 25px;
    }

    .modal-content h2 {
        font-size: 55px;
    }

    .cuts-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;

        right: 18px;
        bottom: 18px;
    }
}
/* =========================================
   RESERVA - MERCADO PAGO
========================================= */

.booking-service {
    margin-top: 30px;
    padding: 25px;

    background: #151515;

    border: 1px solid rgba(255,255,255,.1);
}

.booking-service h3 {
    font-size: 32px;
    margin-bottom: 12px;
}

.booking-service p {
    font-size: 13px;
}

.booking-price {
    margin-top: 20px;

    color: var(--gold);

    font-family: var(--heading);

    font-size: 45px;

    font-weight: 600;
}

.selected-barber {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 0;

    border-bottom: 1px solid var(--border);

    margin-bottom: 25px;
}

.selected-barber span {
    color: #777;

    font-size: 9px;

    letter-spacing: 2px;
}

.selected-barber strong {
    color: var(--gold);

    font-family: var(--heading);

    font-size: 25px;
}

.change-barber {
    display: block;

    margin: 18px auto 0;

    background: transparent;

    color: #888;

    font-size: 9px;

    letter-spacing: 2px;
}

.change-barber:hover {
    color: var(--gold);
}
/* =====================================================
   CORRECCIÓN MODAL DE RESERVAS - BARBERCLUB
   ===================================================== */

/* CONTENEDOR DE LAS OPCIONES */

#bookingModal .booking-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 30px;
}


/* TARJETAS DE BARBEROS */

#bookingModal .booking-option {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 82px;
    padding: 18px 22px;
    margin: 0;

    background: #151515;
    border: 1px solid rgba(255,255,255,0.12);

    color: #ffffff;

    text-align: left;
    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;

    box-sizing: border-box;
}


/* HOVER */

#bookingModal .booking-option:hover {
    background: #1c1c1c;
    border-color: rgba(201,164,92,0.65);
    transform: translateY(-2px);
}


/* LETRA GRANDE */

#bookingModal .booking-option-letter {
    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Bebas Neue", sans-serif;
    font-size: 36px;
    font-weight: 400;

    color: #c9a45c;

    line-height: 1;
}


/* CONTENEDOR DEL NOMBRE + DISPONIBILIDAD */

#bookingModal .booking-option > div {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
    margin-left: 16px;

    flex: 1;
}


/* NOMBRE */

#bookingModal .booking-option strong {
    display: block;

    margin: 0;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 0.08em;
}


/* TEXTO DISPONIBILIDAD */

#bookingModal .booking-option small {
    display: block;

    margin-top: 6px;

    color: rgba(255,255,255,0.45);

    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.16em;
}


/* FLECHA */

#bookingModal .booking-arrow {
    flex: 0 0 auto;

    margin-left: 15px;

    color: #c9a45c;

    font-size: 25px;
    font-weight: 300;

    line-height: 1;

    transition:
        transform 0.25s ease;
}


#bookingModal .booking-option:hover .booking-arrow {
    transform: translateX(5px);
}


/* =====================================================
   PASO FECHA
   ===================================================== */

#bookingModal .booking-step {
    width: 100%;
    margin-top: 28px;
}


#bookingModal .booking-step-title {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 28px;
}


#bookingModal .booking-step-title > span {
    color: #c9a45c;

    font-family: "Bebas Neue", sans-serif;
    font-size: 34px;
    line-height: 1;
}


#bookingModal .booking-step-title div {
    display: flex;
    flex-direction: column;
}


#bookingModal .booking-step-title small {
    color: rgba(255,255,255,0.4);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.16em;
}


#bookingModal .booking-step-title strong {
    margin-top: 4px;

    color: #ffffff;

    font-size: 15px;
    letter-spacing: 0.08em;
}


/* LABEL */

#bookingModal .booking-label {
    display: block;

    margin-bottom: 10px;

    color: rgba(255,255,255,0.55);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.15em;
}


/* INPUT FECHA */

#bookingModal .booking-date {
    width: 100%;
    height: 54px;

    padding: 0 16px;

    box-sizing: border-box;

    background: #151515;

    border: 1px solid rgba(255,255,255,0.15);

    color: #ffffff;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;

    outline: none;

    color-scheme: dark;
}


#bookingModal .booking-date:focus {
    border-color: #c9a45c;
}


/* TEXTO AYUDA */

#bookingModal .booking-help {
    margin-top: 12px;

    color: rgba(255,255,255,0.4);

    font-size: 11px;
}


/* =====================================================
   HORARIOS
   ===================================================== */

#bookingModal .time-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    width: 100%;
}


#bookingModal .time-option {
    height: 50px;

    background: #151515;

    border: 1px solid rgba(255,255,255,0.12);

    color: #ffffff;

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}


#bookingModal .time-option:hover {
    border-color: #c9a45c;
    color: #c9a45c;
}


#bookingModal .time-option.selected {
    background: #c9a45c;
    border-color: #c9a45c;

    color: #000000;
}


/* SIN HORARIOS */

#bookingModal .loading-times {
    grid-column: 1 / -1;

    padding: 30px 15px;

    text-align: center;

    color: rgba(255,255,255,0.45);

    font-size: 11px;
    letter-spacing: 0.12em;
}


/* =====================================================
   RESUMEN
   ===================================================== */

#bookingModal .booking-summary {
    width: 100%;
    margin-top: 30px;
}


#bookingModal .booking-summary-header h3 {
    margin-top: 8px;

    color: #ffffff;

    font-size: 22px;
    letter-spacing: 0.06em;
}


/* DATOS */

#bookingModal .booking-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 22px;

    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}


#bookingModal .booking-detail {
    padding: 18px 10px;

    border-right: 1px solid rgba(255,255,255,0.08);
}


#bookingModal .booking-detail:last-child {
    border-right: none;
}


#bookingModal .booking-detail span {
    display: block;

    margin-bottom: 7px;

    color: rgba(255,255,255,0.4);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.15em;
}


#bookingModal .booking-detail strong {
    color: #ffffff;

    font-size: 13px;
}


/* SERVICIO */

#bookingModal .service-description {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 22px;
    padding: 20px;

    background: #151515;

    border: 1px solid rgba(255,255,255,0.08);
}


#bookingModal .service-description strong {
    color: #ffffff;

    font-size: 12px;
    letter-spacing: 0.06em;
}


#bookingModal .service-description p {
    margin-top: 7px;

    color: rgba(255,255,255,0.4);

    font-size: 10px;
}


#bookingModal .booking-price {
    color: #c9a45c !important;

    font-size: 22px !important;
    white-space: nowrap;
}


/* BOTÓN PAGAR */

#bookingModal .full-button {
    width: 100%;
    margin-top: 18px;
}


/* CAMBIAR BARBERO / FECHA */

#bookingModal .change-barber {
    display: block;

    margin: 18px auto 0;

    padding: 0;

    background: transparent;

    border: none;

    color: rgba(255,255,255,0.45);

    font-family: "Montserrat", sans-serif;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.12em;

    cursor: pointer;

    transition: color 0.2s ease;
}


#bookingModal .change-barber:hover {
    color: #c9a45c;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    #bookingModal .booking-option {
        min-height: 76px;
        padding: 15px 17px;
    }

    #bookingModal .booking-option-letter {
        flex-basis: 40px;
        font-size: 30px;
    }

    #bookingModal .booking-option > div {
        margin-left: 12px;
    }

    #bookingModal .booking-option strong {
        font-size: 13px;
    }

    #bookingModal .booking-option small {
        font-size: 8px;
    }

    #bookingModal .time-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    #bookingModal .booking-details {
        grid-template-columns: 1fr;
    }

    #bookingModal .booking-detail {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    #bookingModal .booking-detail:last-child {
        border-bottom: none;
    }

    #bookingModal .service-description {
        flex-direction: column;
        align-items: flex-start;
    }

}
/* =========================================
   SCROLL DEL MODAL DE RESERVAS
   ========================================= */

#bookingModal {
    position: fixed !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100vh !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    box-sizing: border-box !important;

    -webkit-overflow-scrolling: touch !important;
}


/* El contenido puede crecer sin quedar cortado */

#bookingModal .booking-modal {
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
}


/* El contenido interno también permite scroll */

#bookingModal .booking-content {
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
}


/* Espacio abajo para que el botón nunca quede pegado al borde */

#bookingModal #bookingSummary {
    padding-bottom: 50px !important;
}


/* En celular */

@media (max-width: 700px) {

    #bookingModal {
        padding: 10px !important;
        align-items: flex-start !important;
    }

    #bookingModal .booking-modal {
        width: 100% !important;
        margin: 10px auto 40px auto !important;
    }

}
/* =====================================================
   BARBERCLUB - DISEÑO DE SELECCIÓN DE BARBERO
   ===================================================== */

#bookingModal .booking-options {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;

    width: 100% !important;
    margin-top: 25px !important;
}


/* TARJETA DE CADA BARBERO */

#bookingModal .booking-option {
    position: relative !important;

    display: grid !important;

    grid-template-columns: 90px 1px 1fr !important;
    grid-template-rows: 1fr auto !important;

    align-items: center !important;

    width: 100% !important;
    min-height: 110px !important;

    padding: 20px 28px !important;

    box-sizing: border-box !important;

    background: #151515 !important;

    border: 1px solid rgba(255, 255, 255, 0.14) !important;

    color: white !important;

    text-align: left !important;

    cursor: pointer !important;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease !important;
}


/* =====================================================
   LETRA GRANDE
   ===================================================== */

#bookingModal .booking-option > span:first-child {

    grid-column: 1 !important;
    grid-row: 1 / 3 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #c9a45c !important;

    font-family: "Bebas Neue", sans-serif !important;

    font-size: 58px !important;
    font-weight: 400 !important;

    line-height: 1 !important;

    letter-spacing: 0 !important;
}


/* =====================================================
   LINEA VERTICAL DORADA
   ===================================================== */

#bookingModal .booking-option::before {

    content: "" !important;

    position: absolute !important;

    left: 118px !important;

    top: 20px !important;
    bottom: 20px !important;

    width: 1px !important;

    background: #c9a45c !important;

    opacity: 0.9 !important;
}


/* =====================================================
   NOMBRE
   ===================================================== */

#bookingModal .booking-option > strong {

    grid-column: 3 !important;
    grid-row: 1 !important;

    display: block !important;

    margin: 0 0 5px 30px !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-family: "Montserrat", sans-serif !important;

    font-size: 17px !important;
    font-weight: 700 !important;

    line-height: 1.1 !important;

    letter-spacing: 0.08em !important;

    white-space: nowrap !important;
}


/* =====================================================
   "ELEGIR →"
   ===================================================== */

#bookingModal .booking-option > small {

    grid-column: 3 !important;
    grid-row: 2 !important;

    display: block !important;

    margin: 0 0 0 30px !important;
    padding: 0 !important;

    color: rgba(255, 255, 255, 0.35) !important;

    font-family: "Montserrat", sans-serif !important;

    font-size: 10px !important;
    font-weight: 600 !important;

    line-height: 1 !important;

    letter-spacing: 0.12em !important;

    text-transform: uppercase !important;
}


/* =====================================================
   HOVER
   ===================================================== */

#bookingModal .booking-option:hover {

    background: #1b1b1b !important;

    border-color: rgba(201, 164, 92, 0.65) !important;

    transform: translateX(4px) !important;
}


#bookingModal .booking-option:hover > span:first-child {

    color: #d7b66d !important;
}


#bookingModal .booking-option:hover > small {

    color: #c9a45c !important;
}


/* =====================================================
   NO TENGO PREFERENCIA
   ===================================================== */

#bookingModal #barber-none > span:first-child {

    font-size: 43px !important;

    letter-spacing: -2px !important;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 700px) {

    #bookingModal .booking-option {

        grid-template-columns:
            70px 1px 1fr !important;

        min-height: 95px !important;

        padding: 16px 20px !important;

    }


    #bookingModal .booking-option::before {

        left: 90px !important;

        top: 17px !important;
        bottom: 17px !important;

    }


    #bookingModal .booking-option > span:first-child {

        font-size: 48px !important;

    }


    #bookingModal .booking-option > strong {

        margin-left: 24px !important;

        font-size: 15px !important;

    }


    #bookingModal .booking-option > small {

        margin-left: 24px !important;

        font-size: 9px !important;

    }


    #bookingModal #barber-none > span:first-child {

        font-size: 34px !important;

    }

}


/* =====================================================
   CELULAR
   ===================================================== */

@media (max-width: 480px) {

    #bookingModal .booking-option {

        grid-template-columns:
            58px 1px 1fr !important;

        min-height: 85px !important;

        padding: 14px 15px !important;

    }


    #bookingModal .booking-option::before {

        left: 73px !important;

        top: 15px !important;
        bottom: 15px !important;

    }


    #bookingModal .booking-option > span:first-child {

        font-size: 40px !important;

    }


    #bookingModal .booking-option > strong {

        margin-left: 20px !important;

        font-size: 13px !important;

    }


    #bookingModal .booking-option > small {

        margin-left: 20px !important;

        font-size: 8px !important;

    }


    #bookingModal #barber-none > span:first-child {

        font-size: 29px !important;

    }

}
/* =========================================
   BARBERO SELECCIONADO
   ========================================= */

#selectedBarberStep {
    margin-bottom: 35px;
    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255,255,255,0.12);
}


#selectedBarberStep .section-label {
    display: block;

    margin-bottom: 12px;

    color: #c9a45c;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.2em;
}


.selected-barber-step {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.selected-barber-step strong {

    color: #ffffff;

    font-size: 22px;
    font-weight: 700;

    letter-spacing: 0.08em;
}


.selected-barber-step button {

    background: transparent;

    border: none;

    color: #c9a45c;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;

    cursor: pointer;

    padding: 8px 0;
}


.selected-barber-step button:hover {

    color: #ffffff;

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    #selectedBarberStep {
        margin-bottom: 25px;
    }


    .selected-barber-step strong {
        font-size: 18px;
    }

}
/* =========================================
   BARBERO SELECCIONADO EN EL CALENDARIO
   ========================================= */

#calendarBarber {
    display: block !important;

    margin: 10px 0 25px 0 !important;
    padding: 14px 18px !important;

    background: #151515 !important;

    border-left: 2px solid #c9a45c !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    border-right: 1px solid rgba(255,255,255,0.08) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;

    color: #c9a45c !important;

    font-family: "Montserrat", sans-serif !important;

    font-size: 18px !important;
    font-weight: 700 !important;

    letter-spacing: 0.08em !important;

    text-transform: uppercase !important;
}


/* Si tiene un texto previo tipo
   "BARBERO SELECCIONADO" */

#calendarBarber::before {
    content: "BARBERO SELECCIONADO  ·  " !important;

    color: rgba(255,255,255,0.38) !important;

    font-size: 9px !important;
    font-weight: 600 !important;

    letter-spacing: 0.16em !important;
}


/* En celular */

@media (max-width: 600px) {

    #calendarBarber {
        font-size: 16px !important;

        padding: 12px 15px !important;
    }

}
/* =========================================
   BARBERO SELECCIONADO
   ========================================= */

#bookingModal .booking-option.selected {
    background: #c9a45c !important;
    border-color: #c9a45c !important;
    color: #000 !important;

    transform: translateX(4px) !important;

    box-shadow:
        0 0 0 1px rgba(201,164,92,0.35),
        0 8px 25px rgba(0,0,0,0.25) !important;
}


/* Letra */

#bookingModal .booking-option.selected > span:first-child {
    color: #000 !important;
}


/* Nombre */

#bookingModal .booking-option.selected > strong {
    color: #000 !important;
}


/* "ELEGIR →" */

#bookingModal .booking-option.selected > small {
    color: rgba(0,0,0,0.55) !important;
}


/* Línea vertical */

#bookingModal .booking-option.selected::before {
    background: #000 !important;
    opacity: 0.35 !important;
}


/* Evitamos que el hover cambie el seleccionado */

#bookingModal .booking-option.selected:hover {
    background: #c9a45c !important;
    border-color: #c9a45c !important;
}
/* =========================================
   BOTONES DEL HERO
   ========================================= */

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
}


.hero-button-row {
    display: flex;
    gap: 12px;
    width: 100%;
}


.hero-button-row .btn {
    flex: 1;
    min-width: 180px;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .hero-buttons {
        width: 100%;
    }

    .hero-button-row {
        flex-direction: column;
        width: 100%;
    }

    .hero-button-row .btn {
        width: 100%;
        min-width: 0;
    }

}
/* =====================================================
   BARBERCLUB × NATURAL FIT
   ===================================================== */

.partners-section {

    width: 100%;

    margin-top: 55px;

    padding: 65px 35px;

    box-sizing: border-box;

    background:
        linear-gradient(
            135deg,
            #101010 0%,
            #151515 50%,
            #101010 100%
        );

    border-top: 1px solid rgba(255,255,255,0.10);
    border-bottom: 1px solid rgba(255,255,255,0.10);

    position: relative;

    overflow: hidden;
}


/* Detalle verde sutil de Natural Fit */

.partners-section::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #35e000;

    opacity: 0.85;
}


.partners-container {

    width: min(1050px, 100%);

    margin: 0 auto;

    text-align: center;

    position: relative;

    z-index: 2;
}


/* =====================================================
   LOGOS
   ===================================================== */

.partners-logos {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 32px;

    margin-bottom: 35px;
}


.partner-logo {

    display: block;

    object-fit: contain;

    width: auto;

    max-width: 240px;
}


/* BarberClub */

.partner-logo-barber {

    height: 62px;
}


/* Natural Fit */

.partner-logo-natural {

    height: 68px;
}


.partners-x {

    color: #c9a45c;

    font-size: 32px;

    font-weight: 300;

    line-height: 1;
}


/* =====================================================
   LABEL
   ===================================================== */

.partners-label {

    display: block;

    margin-bottom: 18px;

    color: #c9a45c;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.28em;

}


/* =====================================================
   TITULO
   ===================================================== */

.partners-section h2 {

    margin: 0 auto 40px;

    max-width: 800px;

    color: #ffffff;

    font-family:
        "Anton",
        sans-serif;

    font-size: clamp(48px, 6vw, 82px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: 0.01em;
}


.partners-section h2 span {

    color: #c9a45c;

}


/* =====================================================
   BENEFICIO NATURAL FIT
   ===================================================== */

.partners-benefit {

    max-width: 680px;

    margin: 0 auto 35px;

    padding: 30px 35px;

    box-sizing: border-box;

    border: 1px solid rgba(255,255,255,0.12);

    background: rgba(255,255,255,0.025);
}


.partners-benefit h3 {

    margin: 0 0 8px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.14em;
}


.partners-discount {

    margin-top: 5px;

    color: #c9a45c;

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 68px;

    line-height: 1;
}


.partners-benefit p {

    margin: 5px 0 20px;

    color: #ffffff;

    font-size: 16px;
}


.partners-benefit small {

    display: block;

    max-width: 570px;

    margin: 0 auto;

    color: rgba(255,255,255,0.42);

    font-size: 11px;

    font-style: italic;

    line-height: 1.6;
}


/* =====================================================
   BOTÓN PRINCIPAL
   ===================================================== */

.partners-main-button {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: min(700px, 100%);

    min-height: 135px;

    margin: 0 auto;

    padding: 28px 35px;

    box-sizing: border-box;

    background: #c9a45c;

    border: 1px solid #c9a45c;

    color: #090909;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.partners-main-button span {

    margin-bottom: 6px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.18em;
}


.partners-main-button strong {

    font-size: 20px;

    font-weight: 800;

    letter-spacing: 0.04em;

    line-height: 1.25;
}


.partners-main-button em {

    margin-top: 12px;

    font-size: 10px;

    font-style: normal;

    font-weight: 700;

    letter-spacing: 0.16em;
}


.partners-main-button:hover {

    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 35px rgba(0,0,0,0.35);
}


/* =====================================================
   MODAL
   ===================================================== */

.natural-fit-modal {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

    align-items: flex-start;
    justify-content: center;

    width: 100%;
    height: 100vh;
    height: 100dvh;

    padding: 20px;

    box-sizing: border-box;

    background: rgba(0, 0, 0, 0.82);

    backdrop-filter: blur(10px);

    overflow-y: auto;
    overflow-x: hidden;

    -webkit-overflow-scrolling: touch;
}


.natural-fit-modal.active {

    display: flex;
}


.natural-fit-modal-box {
    position: relative;

    width: min(650px, 100%);

    max-height: calc(100dvh - 40px);
    max-height: calc(100vh - 40px);

    margin: 0 auto;

    padding: 55px 45px;

    box-sizing: border-box;

    background: #111111;

    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.6);

    text-align: center;

    overflow-y: auto;
    overflow-x: hidden;

    -webkit-overflow-scrolling: touch;

    overscroll-behavior: contain;
}


/* =====================================================
   CERRAR
   ===================================================== */

.natural-fit-close {

    position: absolute;

    top: 15px;
    right: 18px;

    width: 42px;
    height: 42px;

    border: none;

    background: transparent;

    color: #ffffff;

    font-size: 30px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;
}


.natural-fit-close:hover {

    color: #c9a45c;
}


/* =====================================================
   TITULO MODAL
   ===================================================== */

.natural-fit-modal-box h2 {

    margin: 5px 0 12px;

    color: #ffffff;

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 52px;

    font-weight: 400;

    line-height: 1;
}


.natural-fit-modal-text {

    margin: 0 auto 30px;

    max-width: 450px;

    color: rgba(255,255,255,0.55);

    font-size: 14px;

    line-height: 1.6;
}


/* =====================================================
   SEDES
   ===================================================== */

.natural-fit-location {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    width: 100%;

    margin-bottom: 12px;

    padding: 23px 25px;

    box-sizing: border-box;

    background: #181818;

    border: 1px solid rgba(255,255,255,0.12);

    color: #ffffff;

    text-align: left;

    text-decoration: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}


.natural-fit-location:hover {

    background: #1d1d1d;

    border-color: #35e000;

    transform: translateX(4px);
}


.natural-fit-location div {

    display: flex;

    flex-direction: column;

    gap: 4px;
}


.natural-fit-location span {

    color: #c9a45c;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.2em;
}


.natural-fit-location strong {

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 0.04em;
}


.natural-fit-location small {

    color: rgba(255,255,255,0.45);

    font-size: 12px;
}


.natural-fit-location b {

    color: #c9a45c;

    font-size: 24px;

    font-weight: 400;
}


/* =====================================================
   FOOTER MODAL
   ===================================================== */

.natural-fit-modal-footer {

    margin: 25px 0 0;

    color: rgba(255,255,255,0.28);

    font-size: 10px;

    font-style: italic;

    letter-spacing: 0.08em;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 700px) {

    .partners-section {

        margin-top: 40px;

        padding:
            50px 20px;
    }


    .partners-logos {

        gap: 16px;

        margin-bottom: 28px;
    }


    .partner-logo-barber {

        height: 42px;
    }


    .partner-logo-natural {

        height: 45px;
    }


    .partners-x {

        font-size: 24px;
    }


    .partners-section h2 {

        font-size: 54px;

        margin-bottom: 30px;
    }


    .partners-benefit {

        padding: 25px 20px;
    }


    .partners-discount {

        font-size: 58px;
    }


    .partners-main-button {

    background: #151515;

    border-color: #35e000;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 0 0 1px rgba(53,224,0,0.18),
        0 12px 35px rgba(0,0,0,0.45),
        0 0 25px rgba(53,224,0,0.08);
}


/* Texto pequeño "ELEGÍ TU SEDE →" */

.partners-main-button:hover em {

    color: #35e000;

}


/* El texto principal queda blanco */

.partners-main-button:hover strong {

    color: #ffffff;

}


/* El texto superior también */

.partners-main-button:hover span {

    color: #35e000;

}
    }


    .partners-main-button strong {

        font-size: 16px;
    }


    .natural-fit-modal {

        align-items: flex-start;

        padding:
            15px;

        padding-top: 30px;
    }


    .natural-fit-modal-box {

        padding:
            45px 20px 30px;
    }


    .natural-fit-modal-box h2 {

        font-size: 44px;
    }


    .natural-fit-location {

        padding:
            20px 17px;
    }


    .natural-fit-location strong {

        font-size: 14px;
    }


/* =========================================
   HOVER BOTÓN NATURAL FIT
   ========================================= */

.partners-section .partners-main-button:hover {
    background: #151515 !important;
    background-color: #151515 !important;

    border: 1px solid #35e000 !important;
    border-color: #35e000 !important;

    color: #ffffff !important;

    transform: translateY(-3px) !important;

    box-shadow:
        0 0 0 1px rgba(53, 224, 0, 0.25),
        0 0 25px rgba(53, 224, 0, 0.10),
        0 12px 35px rgba(0, 0, 0, 0.45) !important;
}


/* Texto superior */

.partners-section .partners-main-button:hover span {
    color: #35e000 !important;
}


/* Texto principal */

.partners-section .partners-main-button:hover strong {
    color: #ffffff !important;
}


/* "ELEGÍ TU SEDE →" */

.partners-section .partners-main-button:hover em {
    color: #35e000 !important;
}
/* =========================================
   HOVER NATURAL FIT — ESTADO FINAL
   ========================================= */

.partners-section .partners-main-button:hover,
.partners-section .partners-main-button:focus,
.partners-section .partners-main-button:active {

    background: #111111 !important;
    background-color: #111111 !important;

    color: #ffffff !important;

    border: 2px solid #35e000 !important;
    border-color: #35e000 !important;

    transform: translateY(-3px) !important;

    box-shadow:
        0 0 0 1px rgba(53, 224, 0, 0.20),
        0 0 25px rgba(53, 224, 0, 0.12),
        0 12px 35px rgba(0, 0, 0, 0.45) !important;
}


/* TEXTO SUPERIOR */

.partners-section .partners-main-button:hover span,
.partners-section .partners-main-button:focus span,
.partners-section .partners-main-button:active span {

    color: #ffffff !important;

}


/* TEXTO PRINCIPAL */

.partners-section .partners-main-button:hover strong,
.partners-section .partners-main-button:focus strong,
.partners-section .partners-main-button:active strong {

    color: #ffffff !important;

}


/* ELEGÍ TU SEDE */

.partners-section .partners-main-button:hover em,
.partners-section .partners-main-button:focus em,
.partners-section .partners-main-button:active em {

    color: #35e000 !important;

}
/* =====================================================
   AJUSTE LOGOS BARBERCLUB × NATURAL FIT
   ===================================================== */

.partners-logos {
    position: relative !important;

    display: grid !important;

    grid-template-columns: 1fr auto 1fr !important;

    align-items: center !important;

    width: 100% !important;

    max-width: 850px !important;

    margin: 0 auto 35px auto !important;

    gap: 0 !important;
}


/* =========================================
   LOGO BARBERCLUB
   ========================================= */

.partner-logo-barber {

    grid-column: 1 !important;

    justify-self: end !important;

    height: 78px !important;

    width: auto !important;

    max-width: 330px !important;

    object-fit: contain !important;

    margin-right: 45px !important;
}


/* =========================================
   X - CENTRO EXACTO
   ========================================= */

.partners-x {

    grid-column: 2 !important;

    justify-self: center !important;

    width: 35px !important;

    text-align: center !important;

    color: #c9a45c !important;

    font-size: 34px !important;

    font-weight: 300 !important;

    line-height: 1 !important;

    margin: 0 !important;
}


/* =========================================
   LOGO NATURAL FIT
   ========================================= */

.partner-logo-natural {

    grid-column: 3 !important;

    justify-self: start !important;

    height: 78px !important;

    width: auto !important;

    max-width: 250px !important;

    object-fit: contain !important;

    margin-left: 45px !important;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .partners-logos {

        max-width: 100% !important;

    }


    .partner-logo-barber {

        height: 52px !important;

        max-width: 210px !important;

        margin-right: 20px !important;

    }


    .partner-logo-natural {
    grid-column: 3 !important;

    justify-self: center !important;

    height: 75px !important;
    width: auto !important;

    max-width: 280px !important;

    object-fit: contain !important;

    margin: 0 !important;
}


    .partners-x {

        width: 28px !important;

        font-size: 27px !important;

    }

}
/* =========================================
   SCROLL INTERNO DEL MODAL NATURAL FIT
   ========================================= */

.natural-fit-modal {
    position: fixed !important;
    inset: 0 !important;

    height: 100vh !important;
    height: 100dvh !important;

    display: none;

    align-items: flex-start !important;
    justify-content: center !important;

    padding: 20px !important;

    box-sizing: border-box !important;

    overflow: hidden !important;
}


.natural-fit-modal.active {
    display: flex !important;
}


/* LA CAJA DEL MODAL ES LA QUE SCROLLEA */

.natural-fit-modal-box {

    width: min(650px, 100%) !important;

    max-height: calc(100vh - 40px) !important;
    max-height: calc(100dvh - 40px) !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    box-sizing: border-box !important;

    margin: 0 auto !important;

    -webkit-overflow-scrolling: touch !important;

    overscroll-behavior: contain !important;
}
/* =========================================
   BARBER CARD CON FOTO
   ========================================= */

.barber-image.has-image .coming-soon {
    display: none !important;
}
/* ================================
   ACCESO USUARIOS
================================ */

.user-access {
    background: transparent;
    border: none;
    color: #ffffff;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    margin-left: 18px;
}

.user-icon {
    font-size: 14px;
    opacity: 0.85;
}
.user-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
}

.user-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* =================================
   MENÚ ACCESO BARBERCLUB
================================= */

.user-menu {
    position: fixed;
    top: 75px;
    right: 385px;
    width: 240px;
    padding: 18px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);

    display: none;
    z-index: 9999;
}

.user-menu-title {
    color: #c9a45c;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    margin-bottom: 12px;
    text-align: left;
}

.user-menu-option {
    width: 100%;
    padding: 13px 5px;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-align: left;

    cursor: pointer;
}

.user-menu-option:hover {
    color: #c9a45c;
}

.user-menu-option span:last-child {
    color: #c9a45c;
    font-size: 16px;
}
/* =================================
   LOGIN BARBEROS
================================= */

.login-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 25px;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
}

.login-box {
    position: relative;

    width: min(430px, 100%);
    padding: 45px 40px;

    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.14);

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.65);
}

.login-close {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 36px;
    height: 36px;

    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #ffffff;
    font-size: 22px;
    line-height: 1;

    cursor: pointer;
}

.login-close:hover {
    color: #c9a45c;
    border-color: #c9a45c;
}

.login-label {
    margin-bottom: 12px;

    color: #c9a45c;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
}

.login-box h2 {
    margin: 0 0 15px;

    color: #ffffff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 0.95;
}

.login-box h2 span {
    color: #c9a45c;
}

.login-box p {
    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.6;
}

.login-field {
    margin-bottom: 18px;
}

.login-field label {
    display: block;
    margin-bottom: 8px;

    color: #c9a45c;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.login-field input {
    width: 100%;
    padding: 14px 15px;

    box-sizing: border-box;

    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #ffffff;
    font-family: inherit;
    font-size: 14px;

    outline: none;
}

.login-field input:focus {
    border-color: #c9a45c;
}

.login-submit {
    width: 100%;
    margin-top: 8px;
    padding: 15px;

    background: #c9a45c;
    border: 1px solid #c9a45c;

    color: #080808;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;

    cursor: pointer;
}

.login-submit:hover {
    background: transparent;
    color: #c9a45c;
}
/* =========================================
   PANEL BARBERO
========================================= */

.barber-panel {
    display: none;
    min-height: 100vh;
    width: 100%;
    padding: 100px 35px 70px;
    box-sizing: border-box;

    background:
        linear-gradient(
            135deg,
            rgba(10, 10, 10, 0.96),
            rgba(18, 18, 18, 0.98)
        );

    color: #ffffff;
}

.barber-panel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   ENCABEZADO
========================================= */

.barber-panel-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.barber-panel-header h2 {
    margin: 8px 0 0;

    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 0.95;
}

.barber-panel-header h2 span {
    color: #c9a45c;
}

.barber-logout {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;

    padding: 13px 20px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;

    cursor: pointer;
    transition: 0.25s ease;
}

.barber-logout:hover {
    background: #c9a45c;
    border-color: #c9a45c;
    color: #000000;
}


/* =========================================
   CALENDARIO
========================================= */

.barber-panel-calendar {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);

    padding: 30px;
    margin-bottom: 35px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.calendar-header h3 {
    margin: 0;

    font-family: "Bebas Neue", sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.calendar-header button {
    width: 42px;
    height: 42px;

    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;

    cursor: pointer;
    transition: 0.25s ease;
}

.calendar-header button:hover {
    background: #c9a45c;
    border-color: #c9a45c;
    color: #000000;
}


/* =========================================
   GRILLA DEL CALENDARIO
========================================= */

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-day {
    min-height: 100px;

    padding: 12px;

    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    box-sizing: border-box;
}

.calendar-day-number {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}

.calendar-day.today {
    background: rgba(201, 164, 92, 0.08);
}

.calendar-day.today .calendar-day-number {
    color: #c9a45c;
}


/* =========================================
   TURNOS
========================================= */

.barber-panel-turns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.panel-block {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);

    padding: 30px;
}

.panel-block h3 {
    margin: 8px 0 25px;

    font-family: "Bebas Neue", sans-serif;
    font-size: 30px;
    font-weight: 400;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 800px) {

    .barber-panel {
        padding: 80px 20px 50px;
    }

    .barber-panel-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .barber-panel-calendar {
        padding: 15px;
    }

    .calendar-day {
        min-height: 75px;
        padding: 8px;
    }

    .barber-panel-turns {
        grid-template-columns: 1fr;
    }

}
