@charset "utf-8";
/* CSS Document */

body {
    font-family: 'Inter', sans-serif;
    background: #f6f1ec;
    color: #5a4636;
}

h1, h2, h4, h5 {
    font-family: 'Playfair Display', serif;
}
.logo-navbar {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

/* Ajuste en móvil */
@media (max-width: 768px) {
  .logo-navbar {
    height: 40px;
  }
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    text-align: center;
}

.hero-img {
    width: 100%;
    height: auto; /* 🔥 clave para que no se corte */
    display: block;
}

.hero-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%); /* 🔥 clave */
    text-align: center;
    color: #fff;
    width: 90%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* 🔥 baja todo */
    align-items: center;
    padding: 40px 20px;
}
.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.5)
    );
    z-index: 0;
}

.hero-copy {
    position: relative;
    z-index: 2;
	max-width: 600px;
    color: #fff;
}


/* TEXTO */
.hero-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 20px;
}
.hero-buttons {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-kicker {
	display: block; 
    letter-spacing: 0.5px;
	margin-bottom: 20px;      /* 🔥 separación con botones */
    font-size: 18px;
	text-align: center;
}
@media (max-width: 768px) {

    .hero-overlay {
        align-items: flex-end; /* baja el contenido */
        padding-bottom: 30px;
    }

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

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

    /* BOTONES MÁS PEQUEÑOS */
    .btn-lg {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* BOTONES */
.hero-overlay .btn {
    white-space: nowrap;
}

.btn-agendar {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #c9a96e;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
}

/* BOTONES */
.btn-gold {
    background: linear-gradient(135deg, #c6a27e, #a67c52);
    color: #fff;
    border-radius: 30px;
    padding: 12px 25px;
}

.btn-gold-sm {
    background: #c6a27e;
    color: #fff;
    border-radius: 20px;
    padding: 8px 15px;
}
.btn-outline-gold-sm {
    border: 1px solid #000;
    color: #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* EFECTO HOVER */
.btn-outline-gold-sm:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}
.btn-outline-gold-sm::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s;
}

.btn-outline-gold-sm:hover::before {
    left: 125%;
}

/* CARDS */
.card-custom {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}


.card-img {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);

    display: flex;
    flex-direction: column;
    width: 100%;
}

/* IMAGEN SIN MÁRGENES */
.card-top-img {
    width: 100%;
	 height: 180px;
	object-fit: cover;
    display: block;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* SOLO EL TEXTO TIENE ESPACIO */
.card-body {
    padding: 15px;
    text-align: center;

    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-body button {
    margin-top: auto;
}

/* PROMOS */
.promo-box {
    height: 400px;
    border-radius: 20px;
    overflow: hidden; /* 🔥 CLAVE para recortar la imagen */
    position: relative;
}

/* IMAGEN BIEN AJUSTADA */
.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 llena sin deformar */
    display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        top: 60%; /* 🔥 baja ligeramente el bloque */
        transform: translate(-50%, -60%);
    }

    .hero h1 {
        font-size: 20px;
		font color: bisque;
    }

    .hero p {
        font-size: 14px;
    }
}
@media (max-width: 768px) {

    /* QUITAMOS POSICIÓN ABSOLUTA */
    .hero-overlay {
        position: relative;
        background: rgba(198,162,126,0.4);
        padding: 25px 20px;
        margin-top: 5px; /* 🔥 pega con la imagen */
        border-radius: 20px 20px 0 0;
    }

    /* IMAGEN LIMPIA */
    .hero-img {
        border-radius: 20px;
    }

    /* TEXTO */
    .hero-copy {
        margin-bottom: 20px;
    }

    /* BOTONES */
    .hero-buttons {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;

        flex-direction: column;
        width: 80%;
    }

    .hero-buttons .btn {
        width: 80%;
        font-size: 14px;
        padding: 12px;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #c6a27e, #a67c52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.whatsapp-float::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(198,162,126,0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { opacity: 0; }
}
.icon-spa {
    font-size: 40px;
    color: #c6a27e;
    display: block;
}
 .footer{
      text-align: center;
      padding: 42px 20px 56px;
    }
.brand{
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(36px, 4vw, 62px);
      margin-bottom: 8px;
      color: var(--text);
    }

    .tagline{
      font-size: clamp(18px, 2vw, 28px);
      color: #6c4f40;
      margin-bottom: 24px;
    }

    .footer-links{
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      font-size: 18px;
      color: #6b5246;
    }

    .footer-links a{
      color: inherit;
    }

    .sep{
      opacity: .5;
    }
.contacto-wa {
    background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
}

.contacto-wa h2 {
    font-size: 36px;
}

.contacto-wa p {
    color: #ccc;
    max-width: 500px;
    margin: auto;
}

/* BOTÓN MÁS PRO */
.btn-lg {
    padding: 14px 28px;
    font-size: 18px;
}
.bg-texture {
    background: 
        linear-gradient(rgba(246,241,236,0.75), rgba(246,241,236,0.75)),
        url('/assets/img/spa-interior.jpg');
    background-size: cover;
    background-position: center;
}
.bg-texture2 {
    background: 
        url('/assets/img/spa-interior2.jpg');
    background-size: cover;
    background-position: center;
}