body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #0b0b0b;
    color: #f5d06f;
}

/* NAV */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("https://images.unsplash.com/photo-1540555700478-4be289fbecef") center/cover;
}

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

.hero h1 {
    font-size: 3rem;
    color: #ffd36a;
}

/* BOTÓN */
.btn {
    background: linear-gradient(135deg, #ffd36a, #ffb347);
    color: black;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* TRATAMIENTOS */
.treatments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.treatment {
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
}

.treatment img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.treatment:hover img {
    transform: scale(1.1);
}

/* MAPA */
.map-card {
    max-width: 800px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
}

.map-frame {
    width: 100%;
    height: 300px;
}

/* RESERVA */
.booking input {
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
    border: none;
}

/* ESTRELLAS */
.stars {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    cursor: pointer;
}

.stars i {
    color: #444;
    transition: 0.2s;
}

.stars i.active,
.stars i.hovered {
    color: #ffd36a;
}

/* RESEÑAS */
.review-box {
    max-width: 400px;
    margin: auto;
}

#reviewsContainer {
    max-width: 600px;
    margin: auto;
}

.review-card {
    background: #111;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
}

/* BOTÓN ARRIBA */
#topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffd36a;
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
}
