:root {
    --le-primary: #1c2b3a;
    --le-primary-soft: #243749;
    --le-secondary: #e8b86d;
    --le-light: #f7f5f2;
    --le-accent: #5fa3a1;
    --le-text: #1c1c1c;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--le-text);
    background-color: var(--le-light);
}

/* NAVBAR */
.navbar {
    background: rgba(12, 21, 32, 0.88);
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    max-height: 100px;
}

.navbar-nav .nav-link {
    color: #f5f5f5;
    font-weight: 400;
    letter-spacing: 0.03em;  

}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--le-secondary);
}

/* HERO */
#hero {
    position: relative;
    min-height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding-top: 80px;
    padding-bottom: 60px;
    background: radial-gradient(circle at top left, rgba(232, 184, 109, 0.35), transparent 55%),
        radial-gradient(circle at bottom right, rgba(95, 163, 161, 0.35), transparent 55%),
        #0b181f;
    overflow: hidden;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("assets/img/hero/hero-luna-escandalosa.jpg") center center / cover no-repeat;
    opacity: 0.45;
    mix-blend-mode: screen;
}

#hero .hero-inner {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.9rem;
    color: #f0e6d8;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin-bottom: 0.5rem;
}

.hero-highlight {
    color: var(--le-secondary);
}

.hero-text {
    max-width: 540px;
    font-size: 1rem;
    color: #f5f5f5;
    margin-bottom: 1.8rem;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(8, 13, 22, 0.55);
    color: #f8f9fa;
    font-size: 0.78rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(248, 249, 250, 0.18);
}

.hero-chip i {
    color: var(--le-secondary);
}

.btn-cta-main {
    border-radius: 999px;
    padding: 0.75rem 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    background: linear-gradient(135deg, var(--le-secondary), #f6d79c);
    color: #1b1307;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.btn-cta-main:hover {
    filter: brightness(0.98);
    transform: translateY(-1px);
}

.btn-cta-ghost {
    border-radius: 999px;
    padding: 0.75rem 1.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.86rem;
    border: 1px solid rgba(245, 245, 245, 0.6);
    color: #f5f5f5;
    background: transparent;
}

.btn-cta-ghost:hover {
    background: rgba(15, 22, 35, 0.9);
}

.hero-tagline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #e1dfdb;
}

.hero-tagline span i {
    color: var(--le-secondary);
    margin-right: 0.35rem;
}

.hero-photo-card {
    position: relative;
    background: rgba(6, 11, 19, 0.9);
    border-radius: 1.75rem;
    padding: 1rem;
    max-width: 620px;
    margin-left: auto;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(233, 196, 106, 0.3);
}

.hero-photo-card img {
    border-radius: 1.4rem;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.hero-photo-badge {
    position: absolute;
    bottom: 1.8rem;
    left: 1.8rem;
    background: rgba(12, 20, 32, 0.86);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    color: #f8f9fa;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(222, 226, 230, 0.4);
}

.hero-photo-badge i {
    color: var(--le-secondary);
}

/* SECCIONES GENERALES */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title span {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: #8b8b8b;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 0.7rem;
}

.section-title p {
    max-width: 620px;
    margin: 0 auto;
    color: #555;
    font-size: 0.95rem;
}

/* ACERCA DE */
#acerca {
    background: #ffffff;
}

.about-text p {
    font-size: 0.98rem;
    line-height: 1.7;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.25rem;
}

.badge-pill {
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    background: rgba(232, 184, 109, 0.11);
    color: #4b4131;
}

.about-image-card {
    position: relative;
    border-radius: 1.6rem;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.about-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.about-location-tag {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    background: rgba(13, 27, 42, 0.9);
    color: #f8f9fa;
    padding: 0.45rem 0.9rem;
    font-size: 0.78rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.about-location-tag i {
    color: var(--le-secondary);
}

/* SERVICIOS */
#servicios {
    background: var(--le-light);
}

.service-card {
    background: #ffffff;
    border-radius: 1.4rem;
    padding: 1.6rem 1.4rem;
    height: 100%;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(228, 232, 240, 0.9);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    border-color: rgba(232, 184, 109, 0.6);
}

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    background: rgba(232, 184, 109, 0.12);
    color: var(--le-primary-soft);
}

.service-card h5 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.4rem;
}

.service-tag {
    font-size: 0.78rem;
    color: #777;
}

/* CABANAS */
#cabanas {
    background: #ffffff;
}

.cabin-card {
    background: #fff;
    border-radius: 1.4rem;
    padding: 1.8rem 1.6rem 1.6rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(232, 232, 232, 0.9);
    height: 100%;
}

.cabin-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #999;
    margin-bottom: 0.2rem;
}

.cabin-title {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.cabin-capacity {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.8rem;
}

.cabin-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
}

.cabin-list li {
    margin-bottom: 0.25rem;
}

.cabin-list li i {
    color: var(--le-secondary);
    margin-right: 0.4rem;
}

.cabin-footer-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
}

.btn-reservar {
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--le-secondary);
    color: #4b3520;
    background: linear-gradient(135deg, #fdf4e0, #f3d09b);
}

.btn-reservar:hover {
    background: linear-gradient(135deg, #f3d09b, #fdf4e0);
}

.cabin-carousel img {
    border-radius: 1.2rem;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.cabin-carousel {
    overflow: hidden;
}

/* FAQ */
#faq {
    background: var(--le-light);
}

.accordion-button {
    font-size: 0.95rem;
}

.accordion-button:not(.collapsed) {
    background-color: #fff7ea;
    color: #3a2a17;
}

/* CONTACTO */
#contacto {
    background: #0b1722;
    color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

#contacto::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(232, 184, 109, 0.2), transparent 60%),
        radial-gradient(circle at bottom right, rgba(95, 163, 161, 0.15), transparent 60%);
    opacity: 0.9;
}

#contacto .container {
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(4, 10, 18, 0.9);
    border-radius: 1.6rem;
    padding: 1.8rem 1.5rem;
    border: 1px solid rgba(233, 196, 106, 0.35);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(248, 249, 250, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--le-secondary);
    flex-shrink: 0;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(248, 249, 250, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f5f5f5;
    margin-right: 0.4rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    background: rgba(248, 249, 250, 0.18);
    transform: translateY(-2px);
}

.contact-map {
    border-radius: 1.4rem;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(19, 37, 56, 0.98);
}

/* FOOTER */
footer {
    background: #050b11;
    color: #b0b4b9;
    font-size: 0.8rem;
    padding: 1rem 0;
}

/* WHATSAPP FLOTANTE */
.whatsapp-float {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 999;
}

.whatsapp-float a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.whatsapp-float a:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

/* RESPONSIVE AJUSTES */
@media (max-width: 991.98px) {
    #hero {
        text-align: center;
    }

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

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

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

    .hero-photo-card {
        margin: 2rem auto 0 auto;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        max-height: 42px;
    }

    section {
        padding: 64px 0;
    }

    .hero-title {
        font-size: 2.1rem;
    }
}