/* ================================
   FUENTES
================================ */
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Momo+Signature&family=Rochester&display=swap');

/* ================================
   RESET GLOBAL
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #333;
  overflow-x: hidden;
}

/* ================================
   NAVBAR
================================ */
.navbar {
  width: 100%;
  background: #000007ea;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  position: sticky;
  top: 0;
  z-index: 900;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-text {
  font-size: 25px;
  font-family: "Rochester", cursive;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* ================================
   SECCIONES
================================ */
section {
  padding: 80px 20px;
  min-height: 80vh;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

h2 {
  width: 90%;
  margin: auto;
  line-height: 1.7;
  text-align: center;
}

/* ================================
   SERVICIOS
================================ */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  width: 280px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: center;
}

/* ================================
   GALERÍA — DOBLE CARRUSEL
================================ */

/* CONTENEDOR GENERAL */
.carruseles-doble {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 0 auto;
}

/* CADA CARRUSEL */
.carousel-wrapper {
  width: 480px;
  max-width: 100%;
  position: relative;
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* CONTENEDOR INTERNO */
.carousel {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 10px;
}

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* BOTONES */
.btn-prev,
.btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 26px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
}

.btn-prev { left: 10px; }
.btn-next { right: 10px; }

.btn-prev:hover,
.btn-next:hover {
  background: rgba(0,0,0,0.8);
}

/* ================================
   ACERCA DE
================================ */
#acerca {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

#acerca h2 {
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* ================================
   BOTONES FLOTANTES
================================ */
.whatsapp-btn-fixed {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 38px;
  color: white;
  z-index: 2000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  text-decoration:none;
}

.facebook-btn-fixed {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #1877F2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 38px;
  color: white;
  z-index: 2000;
  text-decoration:none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* ================================
   FOOTER
================================ */
.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .carruseles-doble {
    flex-direction: column;
    align-items: center;
  }

  .carousel-wrapper {
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
  }

  .carousel-wrapper h3 {
    order: 1;
  }

  .carousel {
    order: 2;
  }
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  h2 {
    font-size: 1.1rem;
    width: 95%;
  }
}
