body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffaf3;
  color: #3a2a10;
  text-align: center;
}

header {
  background-color: white;
  padding: 20px;
  border-bottom: 3px solid #d4af37;
}

.logo {
  width: 800px;
  max-width: 90%;
  display: block;
  margin: 0 auto;
}

.menu-navegacion {
  margin-top: 15px;
}

.nav-link {
  margin: 0 10px;
  color: #b8860b;
  text-decoration: none;
  font-weight: bold;
}

.nav-link:hover {
  text-decoration: underline;
}

.seccion {
  padding: 40px 20px;
}

.bg-clara {
  background-color: #fdf8ec;
}

h2 {
  color: #b8860b;
  margin-bottom: 10px;
}

p {
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.contenedor-gatos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cat-card {
  width: 200px;
  background: white;
  border: 1px solid #d4af37;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cat-card img {
  width: 100%;
  border-radius: 10px;
}

/* CAMADAS */
.camadas-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.info-camada p {
  font-size: 1.2rem;
  line-height: 1.8;
  background: #fff6dd;
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 20px;
  max-width: 400px;
  margin-bottom: 10px;
}

.carrusel-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.carrusel-inner img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  border: 3px solid #d4af37;
}

/* BOTÓN FLOTANTE WHATSAPP */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
  z-index: 1000;
}

.whatsapp-btn img {
  width: 25px;
  height: 25px;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

/* ACORDEÓN */
.acordeon {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.acordeon-item {
  border: 1px solid #d4af37;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.acordeon-boton {
  width: 100%;
  background: #f9f0d0;
  color: #3a2a10;
  border: none;
  text-align: left;
  padding: 15px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: bold;
}

.acordeon-boton:hover {
  background: #f3e4b0;
}

.acordeon-contenido {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: white;
  padding: 0 15px;
}

.acordeon-item.activo .acordeon-contenido {
  max-height: 500px;
  padding: 15px;
}

/* GALERÍA DENTRO DE LAS PESTAÑAS */
.galeria-acordeon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.galeria-acordeon img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #d4af37;
  transition: transform 0.2s ease;
}

.galeria-acordeon img:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .galeria-acordeon img {
    width: 90px;
    height: 90px;
  }

  .whatsapp-btn {
    bottom: 15px;
    right: 15px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}
