/* =========================================
   VARIABLES
========================================= */

:root {

    --gold: #b57912;

    --gold-bright: #e0a817;

    --purple: #342a43;

    --black: #09090b;

    --surface: #111113;

    --surface-2: #17171a;

    --cream: #f4f0e7;

    --white: #ffffff;

    --muted: #aaa6a0;

    --border: rgba(224, 168, 23, .22);

    --shadow:
        0 20px 60px rgba(0, 0, 0, .35);

}



/* =========================================
   RESET
========================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: "DM Sans", sans-serif;

    background: var(--black);

    color: var(--cream);

    line-height: 1.6;

    overflow-x: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


img {

    max-width: 100%;

    display: block;

}



/* =========================================
   HEADER
========================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        10px
        clamp(18px, 5vw, 70px);

    background:
        rgba(9, 9, 11, .85);

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid
        rgba(255, 255, 255, .06);

}



.brand img {

    width: 130px;

    height: 58px;

    object-fit: contain;

    mix-blend-mode: screen;

    border-radius: 6px;

}



.nav {

    display: flex;

    align-items: center;

    gap: 30px;

}



.nav a {

    font-size: .82rem;

    text-transform: uppercase;

    letter-spacing: .12em;

    color: #ddd;

    transition: .25s;

}


.nav a:hover {

    color: var(--gold-bright);

}



.language-switcher {

    display: flex;

    gap: 7px;

    align-items: center;

}



.lang-btn {

    background: none;

    border: none;

    color: #777;

    cursor: pointer;

    font: inherit;

    font-weight: 700;

}


.lang-btn.active,
.lang-btn:hover {

    color: var(--gold-bright);

}



.menu-toggle {

    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 1.8rem;

    cursor: pointer;

}



/* =========================================
   HERO
========================================= */

.hero {

    min-height: 100svh;

    position: relative;

    display: grid;

    place-items: center;

    padding:
        120px
        7vw
        80px;

    background:

        radial-gradient(
            circle at 70% 25%,
            rgba(181, 121, 18, .18),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #0a090c 0%,
            #17131a 55%,
            #0b0a0c 100%
        );

}



.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

}



.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 50%,
            transparent 20%,
            rgba(0,0,0,.5)
        );

}



.hero-content {

    position: relative;

    z-index: 1;

    width: min(100%, 1100px);

    text-align: center;

}



.eyebrow {

    color: var(--gold-bright);

    font-size: .75rem;

    letter-spacing: .34em;

    font-weight: 700;

    margin-bottom: 18px;

}



.hero h1 {

    font-family: "Playfair Display", serif;

    font-size:
        clamp(
            4rem,
            10vw,
            9.5rem
        );

    line-height: .78;

    letter-spacing: .04em;

    color: var(--cream);

}



.hero h1 span {

    color: var(--gold-bright);

}



.hero-text {

    margin: 30px auto;

    max-width: 550px;

    color: #c9c4bd;

    font-size:
        clamp(
            1rem,
            2vw,
            1.25rem
        );

}



.hero-actions {

    display: flex;

    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;

}



.btn {

    border: none;

    min-height: 52px;

    padding:
        14px
        24px;

    border-radius: 3px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .1em;

    font-size: .76rem;

    cursor: pointer;

    transition:
        transform .25s,
        box-shadow .25s;

}



.btn:hover {

    transform: translateY(-3px);

}



.btn-gold {

    background:
        var(--gold-bright);

    color: #111;

}



.btn-outline {

    border:
        1px solid
        var(--gold);

    color: var(--cream);

    background:
        rgba(255,255,255,.02);

}



.scroll-hint {

    position: absolute;

    bottom: 24px;

    color:
        var(--gold-bright);

    font-size: 1.6rem;

    animation:
        bounce 1.6s infinite;

}



@keyframes bounce {

    50% {

        transform:
            translateY(7px);

    }

}



/* =========================================
   SECCIONES
========================================= */

.section {

    padding:
        clamp(75px, 10vw, 130px)
        clamp(18px, 7vw, 100px);

}



.section-heading {

    max-width: 760px;

    margin:
        0 auto 55px;

    text-align: center;

}



.section-heading h2,
.booking-card h2,
.contact-section h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            2.3rem,
            5vw,
            4.8rem
        );

    line-height: 1;

    margin-bottom: 18px;

}



.section-heading > p:last-child {

    color: var(--muted);

}



/* =========================================
   SERVICIOS
========================================= */

.services-section {

    background: var(--cream);

    color: var(--black);

}



.services-section
.section-heading
> p:last-child {

    color: #666;

}



.services-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 14px;

}



.service-card {

    min-height: 310px;

    padding: 30px 24px;

    background: white;

    border:
        1px solid
        #e7dfd2;

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    transition:
        transform .3s,
        box-shadow .3s;

}



.service-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 25px 50px
        rgba(0,0,0,.12);

}



.service-card.featured {

    background:
        var(--purple);

    color: white;

}



.service-number {

    position: absolute;

    top: 20px;

    right: 20px;

    color:
        var(--gold);

    font-weight: 800;

}



.service-card h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 1.7rem;

    margin-bottom: 8px;

}



.service-card p {

    color: #777;

    font-size: .9rem;

    margin-bottom: 22px;

}



.service-card strong {

    font-size: 1.35rem;

    color:
        var(--gold);

}



.featured p {

    color: #c7c0ce;

}



.featured strong {

    color:
        var(--gold-bright);

}



.price-photo {

    max-width: 430px;

    margin:
        55px auto 0;

    box-shadow: var(--shadow);

}



.price-photo img {

    width: 100%;

}



/* =========================================
   GALERÍA
========================================= */

.gallery-section {

    background:
        #0e0e10;

}



.gallery-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;

}



.gallery-placeholder {

    min-height: 310px;

    display: grid;

    place-items: center;

    background:

        radial-gradient(
            circle at 25% 25%,
            rgba(224,168,23,.2),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #1e1823,
            #0a0a0c
        );

    border:
        1px solid
        rgba(224,168,23,.15);

    color:
        rgba(255,255,255,.35);

    letter-spacing: .25em;

    transition: .3s;

}



.gallery-placeholder:hover {

    transform:
        scale(1.015);

    border-color:
        var(--gold);

}



.gallery-note {

    text-align: center;

    color: #777;

    margin:
        25px auto 0;

}



/* =========================================
   BOOKING
========================================= */

.booking-section {

    background:
        var(--purple);

}



.booking-card {

    max-width: 1100px;

    margin: auto;

    padding:
        clamp(28px, 5vw, 65px);

    background:
        #141116;

    border:
        1px solid
        rgba(224,168,23,.25);

    box-shadow:
        var(--shadow);

}



.booking-form {

    margin-top: 38px;

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 16px;

}



.booking-form label {

    display: grid;

    gap: 7px;

    color: #c6c1ba;

    font-size: .8rem;

    text-transform: uppercase;

    letter-spacing: .08em;

}



.booking-form input,
.booking-form select {

    width: 100%;

    background:
        #0d0c0f;

    color: white;

    border:
        1px solid
        #302b31;

    padding: 14px;

    min-height: 50px;

    font: inherit;

}



.booking-form input:focus,
.booking-form select:focus {

    outline:
        1px solid
        var(--gold-bright);

}



.btn-whatsapp {

    grid-column:
        1 / -1;

    background:
        #25D366;

    color:
        #071b0e;

    display: flex;

    justify-content: center;

    gap: 9px;

}



/* =========================================
   MAPA
========================================= */

.location-section {

    background:
        var(--cream);

    color:
        var(--black);

}



.map-wrapper {

    max-width: 1200px;

    margin: auto;

}



.map-placeholder {

    min-height: 420px;

    display: grid;

    place-items: center;

    text-align: center;

    background:
        #252229;

    color: white;

}



.map-placeholder > div {

    max-width: 500px;

    padding: 25px;

}



.map-pin {

    font-size: 3rem;

}



.map-placeholder h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 2rem;

}



.map-placeholder p {

    color: #ddd;

}



/* =========================================
   CONTACTO
========================================= */

.contact-section {

    text-align: center;

    background:
        #080809;

}



.contact-content {

    max-width: 750px;

    margin: auto;

}



.whatsapp-link {

    display: inline-block;

    margin:
        28px 0 10px;

    font-size:
        clamp(
            1.5rem,
            4vw,
            2.5rem
        );

    color:
        #25D366;

    font-weight: 700;

}



.instagram {

    color:
        var(--gold-bright);

    letter-spacing: .12em;

}



/* =========================================
   FOOTER
========================================= */

.footer {

    padding: 35px 20px;

    background:
        #050506;

    border-top:
        1px solid
        rgba(255,255,255,.06);

    text-align: center;

    color: #666;

}



.footer img {

    width: 115px;

    height: 52px;

    object-fit: contain;

    margin:
        0 auto 15px;

}



/* =========================================
   WHATSAPP FLOTANTE
========================================= */

.floating-whatsapp {

    position: fixed;

    z-index: 900;

    right: 22px;

    bottom: 22px;

    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    background:
        #25D366;

    color:
        #05210e;

    border-radius: 50%;

    font-size: 1.8rem;

    box-shadow:
        0 10px 35px
        rgba(0,0,0,.35);

}



/* =========================================
   ANIMACIONES
========================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}



.reveal.visible {

    opacity: 1;

    transform: none;

}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .services-grid {

        grid-template-columns:
            repeat(3,1fr);

    }

}



/* =========================================
   CELULAR
========================================= */

@media (max-width: 760px) {

    .site-header {

        height: 72px;

    }


    .brand img {

        width: 105px;

        height: 48px;

    }


    .menu-toggle {

        display: block;

    }


    .nav {

        position: absolute;

        top: 72px;

        left: 0;

        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding:
            10px 20px 20px;

        background:
            rgba(9,9,11,.98);

    }


    .nav.open {

        display: flex;

    }


    .nav a {

        padding: 13px 4px;

    }


    .language-switcher {

        justify-content: center;

        margin-top: 10px;

    }


    .hero {

        padding:
            120px 20px 80px;

    }


    .hero h1 {

        font-size:
            clamp(
                3.3rem,
                16vw,
                6rem
            );

    }


    .section {

        padding-left: 18px;

        padding-right: 18px;

    }


    .services-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .gallery-grid {

        grid-template-columns:
            1fr 1fr;

    }

}



/* =========================================
   CELULARES PEQUEÑOS
========================================= */

@media (max-width: 520px) {

    .services-grid,
    .gallery-grid,
    .booking-form {

        grid-template-columns:
            1fr;

    }


    .service-card {

        min-height: 260px;

    }


    .gallery-placeholder {

        min-height: 280px;

    }


    .btn {

        width: 100%;

    }


    .hero-actions {

        width: 100%;

        max-width: 340px;

        margin: auto;

    }


    .booking-form
    .btn-whatsapp {

        grid-column: auto;

    }

}

/* =========================================
   REDES SOCIALES
========================================= */

.social-section {

    position: relative;

    padding:
        clamp(90px, 11vw, 150px)
        clamp(18px, 7vw, 100px);

    background:

        radial-gradient(
            circle at 20% 50%,
            rgba(181, 121, 18, .12),
            transparent 30%
        ),

        #0a090b;

    overflow: hidden;
}


.social-content {

    max-width: 1050px;

    margin: auto;

    text-align: center;
}


.social-content h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            2.5rem,
            6vw,
            5rem
        );

    line-height: 1;

    margin-bottom: 20px;

    color:
        var(--cream);
}


.social-text {

    max-width: 600px;

    margin:
        0 auto 50px;

    color:
        var(--muted);

    font-size:
        1.05rem;
}



/* =========================================
   SOCIAL CARDS
========================================= */

.social-cards {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

    max-width: 900px;

    margin: auto;
}


.social-card {

    min-height: 180px;

    padding:
        30px;

    display: flex;

    align-items: center;

    gap: 24px;

    text-align: left;

    border-radius: 8px;

    border:
        1px solid
        rgba(255,255,255,.08);

    background:
        rgba(255,255,255,.035);

    position: relative;

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


.social-card::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: 0;

    transition: opacity .35s ease;

    pointer-events: none;

}


.social-card:hover {

    transform:
        translateY(-8px);

}



/* =========================================
   INSTAGRAM
========================================= */

.instagram-card::before {

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(225,48,108,.18),
            transparent 55%
        );

}


.instagram-card:hover {

    border-color:
        rgba(225,48,108,.6);

    box-shadow:
        0 20px 50px
        rgba(225,48,108,.12);

}


.instagram-card:hover::before {

    opacity: 1;

}


.instagram-icon {

    background:
        linear-gradient(
            135deg,
            #833ab4,
            #fd1d1d,
            #fcb045
        );

}



/* =========================================
   TIKTOK
========================================= */

.tiktok-card::before {

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(37,244,238,.12),
            transparent 55%
        );

}


.tiktok-card:hover {

    border-color:
        rgba(37,244,238,.55);

    box-shadow:
        0 20px 50px
        rgba(37,244,238,.10);

}


.tiktok-card:hover::before {

    opacity: 1;

}


.tiktok-icon {

    background:
        #050505;

    border:
        1px solid
        rgba(255,255,255,.12);

}



/* =========================================
   ICONOS
========================================= */

.social-icon {

    width: 82px;

    height: 82px;

    min-width: 82px;

    border-radius: 22px;

    display: grid;

    place-items: center;

    position: relative;

    z-index: 1;

}


.social-icon svg {

    width: 47px;

    height: 47px;

    fill: white;

}


.instagram-icon svg rect {

    fill: none;

    stroke: white;

    stroke-width: 1.8;

}


.instagram-icon svg circle {

    fill: none;

    stroke: white;

    stroke-width: 1.8;

}


.instagram-icon svg circle:last-child {

    fill: white;

    stroke: none;

}



/* TikTok */

.tiktok-icon svg {

    fill: white;

}



/* =========================================
   TEXTO
========================================= */

.social-info {

    display: flex;

    flex-direction: column;

    gap: 5px;

    position: relative;

    z-index: 1;

}


.social-name {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            1.5rem,
            3vw,
            2rem
        );

    font-weight: 700;

}


.social-username {

    color:
        #999;

    font-size:
        .95rem;

}


.social-arrow {

    margin-left: auto;

    font-size: 2rem;

    color:
        var(--gold-bright);

    position: relative;

    z-index: 1;

    transition:
        transform .3s ease;

}


.social-card:hover
.social-arrow {

    transform:
        translateX(7px);

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 760px) {

    .social-cards {

        grid-template-columns:
            1fr;

    }


    .social-card {

        min-height: 150px;

        padding:
            22px;

    }


    .social-icon {

        width: 68px;

        height: 68px;

        min-width: 68px;

        border-radius: 18px;

    }


    .social-icon svg {

        width: 39px;

        height: 39px;

    }

}


@media (max-width: 420px) {

    .social-card {

        gap: 15px;

        padding:
            18px;

    }


    .social-icon {

        width: 60px;

        height: 60px;

        min-width: 60px;

    }


    .social-icon svg {

        width: 34px;

        height: 34px;

    }


    .social-name {

        font-size: 1.3rem;

    }


    .social-username {

        font-size: .8rem;

    }


    .social-arrow {

        font-size: 1.5rem;

    }

}

/* =========================================
   GALERÍA - FOTOS Y VIDEO
========================================= */

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    background: #111;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* Efecto al pasar el mouse */

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* VIDEO */

.gallery-video {
    position: relative;
}

.gallery-video video {
    object-fit: cover;
}


/* =========================================
   GALERÍA RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

}

/* =========================================
   HORARIOS
========================================= */

.opening-hours {
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 30px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hours-icon {
    font-size: 28px;
}

.hours-header h3 {
    margin: 4px 0 0;
    font-size: 22px;
}

.hours-list {
    display: flex;
    flex-direction: column;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span {
    font-size: 16px;
}

.hours-row strong {
    font-size: 16px;
}

.hours-row.closed strong {
    opacity: 0.6;
}


/* =========================================
   HORARIOS EN CELULAR
========================================= */

@media (max-width: 600px) {

    .opening-hours {
        padding: 24px 20px;
        margin-bottom: 30px;
    }

    .hours-row {
        gap: 20px;
    }

    .hours-row span,
    .hours-row strong {
        font-size: 14px;
    }

}