@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Montserrat:wght@300;400;500&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GENERAL */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f7f4ef;
  color: #3e3a36;
}

/* HEADER */
.header {
  background-color: #f7f2e9;
  text-align: center;
  padding: 30px 20px;
}

.logo {
  width: 300px;
  margin-bottom: 20px;
}

.nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #a88b4a;
  font-weight: 500;
}

/* HERO */
.hero {
  height: 85vh;
  background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url('../img/hero.jpg') center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* BOTÓN PRINCIPAL */
.btn-principal {
  background-color: #a88b4a;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-principal:hover {
  background-color: #92773c;
}

/* NOSOTROS */
.nosotros {
  background: #ffffff;
  display: flex;
  gap: 40px;
  padding: 80px 10%;
  align-items: center;
}

.nosotros h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.nosotros img {
  width: 100%;
  border-radius: 12px;
}

/* SERVICIOS */
.servicios {
  background: #fdf8f2;
  padding: 80px 20px;
  text-align: center;
}

.titulo-seccion {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #c9a24d;
  margin-bottom: 40px;
}

/* BOTONES SERVICIOS */
.botones-servicios {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.botones-servicios button {
  background: transparent;
  border: 2px solid #c9a24d;
  color: #c9a24d;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.botones-servicios button:hover {
  background: #c9a24d;
  color: white;
}

/* LISTAS DESPLEGABLES */
.lista-servicios {
  max-width: 600px;
  margin: 0 auto 30px;
  display: none;
  animation: fadeIn 0.4s ease;
}

.lista-servicios ul {
  list-style: none;
}

.lista-servicios li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 16px;
}

.lista-servicios span {
  font-weight: 600;
  color: #a88b4a;
}

/* CONTACTO */
.contacto {
  padding: 80px 20px;
  text-align: center;
}

.redes {
  margin: 30px 0;
}

.redes a {
  margin: 0 15px;
  text-decoration: none;
  color: #3e3a36;
  font-weight: 500;
  transition: color 0.3s;
}

.redes a:hover {
  color: #a88b4a;
}

/* FOOTER */
.footer {
  background-color: #efe9df;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

/* ANIMACIONES */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease;
}

.fade.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
   VERSIÓN MÓVIL
   ========================= */
@media (max-width: 768px) {

  /* HEADER */
  .logo {
    width: 220px;
  }

  .nav {
    margin-top: 15px;
  }

  .nav a {
    display: inline-block;
    margin: 8px 10px;
    font-size: 14px;
  }

  /* HERO */
  .hero {
    height: 70vh;
    padding: 20px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  /* NOSOTROS */
  .nosotros {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }

  .nosotros img {
    margin-top: 30px;
  }

  /* SERVICIOS */
  .titulo-seccion {
    font-size: 32px;
  }

  .botones-servicios {
    gap: 12px;
  }

  .botones-servicios button {
    width: 100%;
    max-width: 260px;
    font-size: 15px;
  }

  .lista-servicios {
    max-width: 100%;
    padding: 0 10px;
  }

  .lista-servicios li {
    font-size: 15px;
  }

  /* CONTACTO */
  .contacto {
    padding: 60px 20px;
  }

  .redes a {
    display: block;
    margin: 10px 0;
  }

  /* BOTÓN WHATSAPP */
  .btn-principal {
    display: inline-block;
    width: 100%;
    max-width: 260px;
    margin-top: 20px;
  }

  /* FOOTER */
  .footer {
    font-size: 13px;
  }
}
/* =========================
   FORMULARIO DE CITA
   ========================= */
.cita {
  background: #f9f6f4;
  padding: 80px 20px;
  text-align: center;
}

.cita h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

#formCita {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#formCita input,
#formCita select,
#formCita textarea {
  padding: 14px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
}

#formCita textarea {
  resize: none;
  height: 100px;
}

#formCita button {
  margin-top: 10px;
}
html {
  scroll-behavior: smooth;
}
select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fff;
  cursor: pointer;
}
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* =========================
   DESPLEGABLE SERVICIOS
   ========================= */

.servicio-item {
  margin-bottom: 15px;
  text-align: left;
}

.servicio-btn {
  width: 100%;
  background: #fff;
  border: 2px solid #c9a24d;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.servicio-btn:hover {
  background: #c9a24d;
  color: #fff;
}

.servicio-desc {
  display: none;
  background: #fff;
  padding: 15px 18px;
  border-radius: 10px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid #eee;
}
/* =========================
   CARRUSEL PROMOCIONES
   ========================= */

.promos {
  background: #fffaf3;
  padding: 80px 20px;
  text-align: center;
}

.carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.promo-card {
  min-width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.promo-card img {
  width: 100%;
  display: block;
}

/* Flechas */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #a88b4a;
  color: white;
  border: none;
  font-size: 32px;
  padding: 10px 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}

.carousel-btn:hover {
  background: #92773c;
}

/* MÓVIL */
@media (max-width: 768px) {
  .promo-card {
    min-width: 100%;
  }
}

/* =========================
   CARRUSEL PROMOCIONES
   ========================= */

.promos {
  background: #fffaf3;
  padding: 80px 20px;
  text-align: center;
}

.carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.promo-card {
  min-width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.promo-card img {
  width: 100%;
  display: block;
}

/* Flechas */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #a88b4a;
  color: white;
  border: none;
  font-size: 32px;
  padding: 10px 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 1px;
}

.carousel-btn:hover {
  background: #92773c;
}

/* MÓVIL */
@media (max-width: 768px) {
  .promo-card {
    min-width: 100%;
  }

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.carousel {
  overflow: hidden;
  width: 100%;
  max-width: 900px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.promo-card {
  min-width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.promo-card img {
  width: 100%;
  display: block;
}

/* BOTONES */
.carousel-btn {
  background: transparent;
  border: 1px solid #c9a36a;
  color: #c9a36a;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #c9a36a;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-wrapper {
    gap: 10px;
  }

  .carousel-btn {
    font-size: 22px;
    width: 38px;
    height: 38px;
  }
@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }
@media (max-width: 768px) {
  .carousel-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .promo-card {
    scroll-snap-align: center;
  }
}


