:root {
    --negro: #050505;
    --negro-suave: #0b0806;
    --negro-card: #120d09;
    --dorado: #c99a3e;
    --dorado-claro: #f0c96a;
    --marfil: #f8f1df;
    --gris-texto: #c9c1b2;
    --gris-suave: #8f8778;
    --borde-dorado: rgba(201, 154, 62, 0.35);
    --sombra-dorada: rgba(201, 154, 62, 0.25);
}

/* ======================================================
   Reset / Base
   ====================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--negro);
    color: var(--marfil);
    line-height: 1.6;
}

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

/* ======================================================
   Página / Fondo general
   ====================================================== */

.page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 75% 20%, rgba(201, 154, 62, 0.16), transparent 28%),
        radial-gradient(circle at 20% 70%, rgba(201, 154, 62, 0.10), transparent 25%),
        linear-gradient(135deg, #050505 0%, #0b0806 45%, #000000 100%);
}

/* ======================================================
   Header / Marca / Navegación
   ====================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 154, 62, 0.22);
}

.header-content {
    width: min(1180px, 92%);
    margin: 0 auto;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    border: 1px solid var(--borde-dorado);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 154, 62, 0.22), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dorado-claro);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    color: var(--dorado-claro);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 5px;
}

.brand-subtitle {
    color: var(--gris-texto);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 4px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--gris-texto);
    font-size: 14px;
}

.nav a {
    position: relative;
    transition: color 0.25s ease;
}

.nav a:hover {
    color: var(--dorado-claro);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--dorado);
    transition: width 0.25s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav-reserva {
    color: #080604 !important;
    background: linear-gradient(135deg, var(--dorado-claro), var(--dorado));
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 0 22px rgba(201, 154, 62, 0.18);
}

.nav-reserva::after {
    display: none;
}

/* Menú móvil */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 154, 62, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--dorado-claro);
    border-radius: 999px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle:hover {
    border-color: rgba(240, 201, 106, 0.75);
    box-shadow: 0 0 20px rgba(201, 154, 62, 0.16);
}

.menu-toggle.menu-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.menu-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.menu-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ======================================================
   Hero
   ====================================================== */

.hero {
    position: relative;
    isolation: isolate;
    width: min(1180px, 92%);
    margin: 0 auto;
    min-height: calc(92vh - 76px);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 52px;
    padding: 72px 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.90) 0%,
            rgba(5, 5, 5, 0.78) 38%,
            rgba(5, 5, 5, 0.52) 68%,
            rgba(5, 5, 5, 0.68) 100%
        ),
        url("../../img/baru_collage_web.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.80;
    filter: grayscale(3%) brightness(0.92);
    z-index: -1;
    pointer-events: none;
    mask-image: linear-gradient(
        180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,1) 10%,
        rgba(0,0,0,1) 84%,
        rgba(0,0,0,0) 100%
    );
    -webkit-mask-image: linear-gradient(
        180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,1) 10%,
        rgba(0,0,0,1) 84%,
        rgba(0,0,0,0) 100%
    );
}

.hero-content,
.hero-logo-wrap {
    position: relative;
    z-index: 1;
}

.eyebrow {
    color: var(--dorado-claro);
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--marfil);
    max-width: 680px;
}

.hero-title span {
    color: var(--dorado-claro);
}

.hero-text {
    margin-top: 24px;
    color: var(--gris-texto);
    font-size: 18px;
    max-width: 590px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.logo-frame {
    position: relative;
    z-index: 2;
    width: min(360px, 78vw);
}

.logo-frame::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px solid rgba(201, 154, 62, 0.16);
    pointer-events: none;
}

.logo-baru {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50%;
    filter: drop-shadow(0 0 18px rgba(201, 154, 62, 0.16));
}

/* ======================================================
   Botones
   ====================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #080604;
    background: linear-gradient(135deg, var(--dorado-claro), var(--dorado));
    box-shadow: 0 0 28px rgba(201, 154, 62, 0.22);
}

.btn-secondary {
    color: var(--marfil);
    border: 1px solid var(--borde-dorado);
    background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
    border-color: rgba(240, 201, 106, 0.75);
    box-shadow: 0 0 24px rgba(201, 154, 62, 0.13);
}

/* ======================================================
   Secciones generales
   ====================================================== */

.section {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 86px 0;
}

.section-header {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-kicker {
    color: var(--dorado-claro);
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 500;
    color: var(--marfil);
}

.section-text {
    margin-top: 16px;
    color: var(--gris-texto);
    font-size: 17px;
}

/* ======================================================
   Presentación
   ====================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.about-card {
    background: linear-gradient(145deg, rgba(18, 13, 9, 0.92), rgba(5, 5, 5, 0.92));
    border: 1px solid rgba(201, 154, 62, 0.20);
    border-radius: 26px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.about-card h3 {
    color: var(--dorado-claro);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--gris-texto);
    font-size: 16px;
}

/* ======================================================
   Servicios
   ====================================================== */

.services {
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 154, 62, 0.10), transparent 30%),
        #070707;
    border-top: 1px solid rgba(201, 154, 62, 0.13);
    border-bottom: 1px solid rgba(201, 154, 62, 0.13);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}

.service-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(145deg, rgba(18, 13, 9, 0.96), rgba(8, 8, 8, 0.96));
    border: 1px solid rgba(201, 154, 62, 0.23);
    border-radius: 28px;
    padding: 30px;
    min-height: 380px;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.30;
    filter: grayscale(6%) brightness(0.72);
    transform: scale(1.04);
    z-index: 0;
    pointer-events: none;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(5, 5, 5, 0.16) 0%,
            rgba(5, 5, 5, 0.46) 42%,
            rgba(5, 5, 5, 0.82) 100%
        );
    z-index: 0;
    pointer-events: none;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 201, 106, 0.52);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34), 0 0 28px rgba(201, 154, 62, 0.10);
}

.service-card:hover::before {
    opacity: 0.40;
}

.services-grid .service-card:nth-child(1)::before {
    background-image: url("../../img/servicios/peluqueria.webp");
}

.services-grid .service-card:nth-child(2)::before {
    background-image: url("../../img/servicios/manicure.webp");
}

.services-grid .service-card:nth-child(3)::before {
    background-image: url("../../img/servicios/pedicure.webp");
}

.services-grid .service-card:nth-child(4)::before {
    background-image: url("../../img/servicios/pestanas_cejas.webp");
}

.service-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(201, 154, 62, 0.36);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dorado-claro);
    margin-bottom: 22px;
    font-size: 14px;
}

.service-card h3 {
    color: var(--marfil);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 18px;
}

.service-card ul {
    list-style: none;
    display: grid;
    gap: 9px;
}

.service-card li {
    color: var(--gris-texto);
    font-size: 14px;
    line-height: 1.45;
    padding-left: 24px;
    position: relative;
}

.service-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--dorado);
    font-weight: 700;
}

.service-card li strong {
    color: var(--marfil);
    font-weight: 600;
}

.servicio-extra {
    display: none;
}

.service-card.service-expanded .servicio-extra {
    display: list-item;
}

.service-more-btn {
    margin-top: 22px;
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(201, 154, 62, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--dorado-claro);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.service-more-btn:hover {
    border-color: rgba(240, 201, 106, 0.75);
    background: rgba(201, 154, 62, 0.08);
    transform: translateY(-2px);
}

/* ======================================================
   CTA
   ====================================================== */

.cta {
    text-align: center;
    background:
        linear-gradient(135deg, rgba(201, 154, 62, 0.16), rgba(0, 0, 0, 0.1)),
        #0b0806;
    border: 1px solid rgba(201, 154, 62, 0.25);
    border-radius: 34px;
    padding: 52px 34px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.30);
}

.cta h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 16px;
}

.cta p {
    color: var(--gris-texto);
    font-size: 17px;
    max-width: 680px;
    margin: 0 auto 28px;
}

/* ======================================================
   Contacto
   ====================================================== */

.contact {
    background: #050505;
    border-top: 1px solid rgba(201, 154, 62, 0.13);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
}

.contact-card {
    background: linear-gradient(145deg, rgba(18, 13, 9, 0.92), rgba(5, 5, 5, 0.92));
    border: 1px solid rgba(201, 154, 62, 0.20);
    border-radius: 24px;
    padding: 28px;
}

.contact-card h3 {
    color: var(--dorado-claro);
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-card p,
.contact-card a {
    color: var(--gris-texto);
    font-size: 15px;
}

.contact-card a:hover {
    color: var(--dorado-claro);
}

/* ======================================================
   Footer
   ====================================================== */

.footer {
    border-top: 1px solid rgba(201, 154, 62, 0.13);
    padding: 30px 0;
    background: #030303;
}

.footer-content {
    width: min(1180px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--gris-suave);
    font-size: 14px;
}

.footer strong {
    color: var(--dorado-claro);
    font-weight: 500;
    letter-spacing: 2px;
}

/* ======================================================
   WhatsApp flotante
   ====================================================== */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 200;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #080604;
    background: linear-gradient(135deg, var(--dorado-claro), var(--dorado));
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38), 0 0 28px rgba(201, 154, 62, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.44), 0 0 34px rgba(201, 154, 62, 0.30);
}

/* ======================================================
   Profesionales
   ====================================================== */

.professionals {
    background:
        radial-gradient(circle at 20% 20%, rgba(201, 154, 62, 0.10), transparent 28%),
        #050505;
    border-top: 1px solid rgba(201, 154, 62, 0.13);
    border-bottom: 1px solid rgba(201, 154, 62, 0.13);
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.professional-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-radius: 28px;
    border: 1px solid rgba(201, 154, 62, 0.23);
    background: #0b0806;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
    cursor: pointer;
}

.professional-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    filter: grayscale(8%) brightness(0.82);
    transform: scale(1.01);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.professional-card:hover img {
    transform: scale(1.07);
    filter: grayscale(0%) brightness(0.92);
}

.professional-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 26px;
    background:
        linear-gradient(
            180deg,
            rgba(5, 5, 5, 0.04) 0%,
            rgba(5, 5, 5, 0.34) 42%,
            rgba(5, 5, 5, 0.92) 100%
        );
    opacity: 0;
    transition: opacity 0.28s ease;
}

.professional-card:hover .professional-overlay {
    opacity: 1;
}

.professional-overlay h3 {
    color: var(--marfil);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.professional-overlay p {
    color: var(--dorado-claro);
    font-size: 15px;
    font-weight: 500;
}

.professional-empty {
    grid-column: 1 / -1;
    border: 1px solid rgba(201, 154, 62, 0.22);
    border-radius: 24px;
    padding: 34px;
    color: var(--gris-texto);
    background: rgba(255, 255, 255, 0.03);
}


/* ======================================================
   Responsive
   ====================================================== */

@media (max-width: 1180px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .professionals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .header-content {
        min-height: 72px;
        flex-direction: row;
        justify-content: space-between;
        padding: 12px 0;
        position: relative;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        width: min(320px, 92vw);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: rgba(5, 5, 5, 0.96);
        border: 1px solid rgba(201, 154, 62, 0.25);
        border-radius: 22px;
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(14px);
    }

    .nav.nav-open {
        display: flex;
    }

    .nav a {
        width: 100%;
        padding: 13px 14px;
        border-radius: 14px;
        color: var(--gris-texto);
    }

    .nav a:hover {
        background: rgba(201, 154, 62, 0.08);
    }

    .nav a::after {
        display: none;
    }

    .nav-reserva {
        margin-top: 8px;
        text-align: center;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 56px 0 76px;
    }

    .hero::before {
        background-image:
            linear-gradient(
                180deg,
                rgba(5, 5, 5, 0.78) 0%,
                rgba(5, 5, 5, 0.58) 22%,
                rgba(5, 5, 5, 0.42) 52%,
                rgba(5, 5, 5, 0.68) 100%
            ),
            url("../../img/baru_collage_web.webp");
        opacity: 0.78;
        filter: grayscale(2%) brightness(1);
        background-position: center center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-logo-wrap {
        order: -1;
        min-height: auto;
    }

    .logo-frame {
        width: min(300px, 76vw);
    }

    .about-grid,
    .services-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }
    
    .service-card::before {
		    opacity: 0.45;
		    filter: grayscale(4%) brightness(0.80);
		}
		
		.service-card:hover::before {
		    opacity: 0.55;
		}
		
		.professionals-grid {
        grid-template-columns: 1fr;
    }

    .professional-card {
        min-height: 390px;
    }

    .professional-card img {
        min-height: 390px;
    }

    .professional-overlay {
        opacity: 1;
    }
}

@media (max-width: 560px) {
    .brand-name {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .brand-subtitle {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .nav {
        font-size: 13px;
    }

    .nav-reserva {
        padding: 9px 14px;
    }

    .hero {
        padding-top: 38px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-text {
        font-size: 16px;
    }

    .btn {
        width: 100%;
    }

    .about-card,
    .service-card,
    .contact-card {
        padding: 24px;
        border-radius: 22px;
    }

    .section {
        padding: 64px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        min-height: 44px;
        padding: 0 16px;
        font-size: 13px;
    }
}
