@charset "utf-8";

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

h1, h2, h3, h4 {
    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 INTERNO */
.exp-hero {
    position: relative;
    height: 60vh;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
}

.exp-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5));
}

.exp-hero-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    width: 90%;
}

.exp-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.exp-hero p {
    font-size: 18px;
}

/* SECCIÓN GENERAL */
.exp-section {
    padding: 60px 20px;
}

/* CARD INFO */
.exp-card {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    backdrop-filter: blur(6px);
    height: 100%;
}

.exp-card h3 {
    margin-bottom: 15px;
}

.exp-card ul {
    padding-left: 18px;
}

.exp-card li {
    margin-bottom: 8px;
}

/* BENEFICIOS */
.exp-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.exp-benefit {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.exp-benefit i {
    font-size: 35px;
    color: #c6a27e;
    margin-bottom: 10px;
}

/* IMAGEN + TEXTO */
.exp-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.exp-split img {
    width: 100%;
    border-radius: 20px;
}

.exp-text {
    flex: 1;
}

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

/* CTA FINAL */
.exp-cta {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
    color: #fff;
    border-radius: 20px;
}

.exp-cta h2 {
    margin-bottom: 15px;
}

.exp-cta p {
    margin-bottom: 25px;
    color: #ccc;
}

/* TEXTURA (REUTILIZADA) */
.bg-texture {
    background: 
        linear-gradient(rgba(246,241,236,0.85), rgba(246,241,236,0.85)),
        url('/assets/img/spa-interior.jpg');
    background-size: cover;
    background-position: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .exp-hero {
        height: 45vh;
    }

    .exp-hero h1 {
        font-size: 26px;
    }

    .exp-split {
        flex-direction: column;
    }
}
.beneficio-item {
  text-align: center;
}

.beneficio-item i {
  font-size: 2rem;
  color: #c8a46b;
  margin-bottom: 10px;
  display: block;
}

.beneficio-item p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}
@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;
}