/* ===============================
   ANDRA NAIS – ESTILOS GENERALES
   =============================== */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* IMÁGENES RESPONSIVE */
img {
  max-width: 100%;
  height: auto;
}

/* CONTENEDOR */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ===============================
   HEADER / NAVBAR
   =============================== */

.navbar {
  background: #f7c6d0;
  padding: 15px 0;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* LOGO */
.logo {
  font-size: 26px;
  font-weight: bold;
  color: #5a1a2c;
}

/* ===============================
   MENÚ (PC)
   =============================== */

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu a {
  margin-left: 20px;
  text-decoration: none;
  color: #5a1a2c;
  font-weight: bold;
}

.nav-menu a:hover {
  text-decoration: underline;
}

/* ===============================
   BOTÓN HAMBURGUESA
   =============================== */

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #5a1a2c;
  cursor: pointer;
}

/* ===============================
   HERO
   =============================== */

.hero {
  background: #fde4ea;
  text-align: center;
  padding: 60px 20px;
}

.hero h2 {
  font-size: 32px;
  color: #5a1a2c;
}

.hero p {
  margin: 15px 0;
  font-size: 18px;
}

/* BOTONES */
.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: #e91e63;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background: #c2185b;
}

.btn-outline {
  background: transparent;
  border: 2px solid #e91e63;
  color: #e91e63;
}

.btn-outline:hover {
  background: #e91e63;
  color: #fff;
}

/* ===============================
   SECCIONES
   =============================== */

section {
  padding: 40px 0;
}

section h2,
section h3 {
  color: #5a1a2c;
  margin-bottom: 15px;
}

/* ===============================
   LISTAS
   =============================== */

ul {
  list-style: none;
}

ul li {
  background: #fde4ea;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
}

/* ===============================
   GALERÍA
   =============================== */

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

.galeria img {
  border-radius: 10px;
}

/* ===============================
   FOOTER
   =============================== */

footer {
  background: #f7c6d0;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  color: #5a1a2c;
}

/* ===============================
   WHATSAPP FLOTANTE
   =============================== */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
}

/* ===============================
   RESPONSIVE
   =============================== */

/* TABLET Y MÓVIL */
@media (max-width: 768px) {

  /* Mostrar hamburguesa */
  .menu-toggle {
    display: block;
  }

  /* Ocultar menú horizontal */
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f7c6d0;
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }

  /* Mostrar menú activo */
  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    margin: 0;
    padding: 12px;
  }

  .hero h2 {
    font-size: 26px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* MÓVIL PEQUEÑO */
@media (max-width: 480px) {

  .logo {
    font-size: 22px;
  }

  .hero h2 {
    font-size: 24px;
  }
}
