@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ================================
   PALETA DE COLORES
   ================================ */ 
:root {
  --color-1: #89FFFF; /* Celeste brillante */
  --color-2: #A0C5FD; /* Azul suave */
  --color-3: #9390FF; /* Azul-violeta */
  --color-4: #B5A8FF; /* Lila */
  --color-5: #E3C5FF; /* Lila claro */

  /* Colores adicionales */
  --color-texto: #2d2d6d;
  --color-acento: #0074d9;
  --color-fondo: #ffffff;
}

body{
  background: linear-gradient(135deg, var(--color-2), var(--color-5));
  font-family: 'Poppins', Arial, sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* ================================
   FOOTER / LOGO / WHATSAPP (copiado desde catalogo.css)
   ================================ */
.catalogo-footer {
  background: linear-gradient(135deg, var(--color-2), var(--color-5));
  padding: 40px 20px 20px 20px; color: var(--color-texto);
  font-family: 'Poppins', Arial, sans-serif;
}
.footer-content {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.footer-col { flex: 1 1 260px; }
.footer-col h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--color-acento); }
.footer-col p, .footer-col li { font-size: 0.95rem; margin-bottom: 6px; color: #333; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li a { color: var(--color-texto); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--color-acento); }
.footer-socials { display: flex; gap: 14px; margin-top: 10px; }
.footer-socials img { width: 28px; height: 28px; transition: transform 0.2s; }
.footer-socials img:hover { transform: scale(1.1); }
.footer-bottom {
  text-align: center; margin-top: 30px; padding-top: 16px;
  border-top: 1px solid #ccc; font-size: 0.9rem; color: #555;
}

.logo { height: 40px; border-radius: 20px; }

.whatsapp-float {
  position: fixed; bottom: 18px; right: 18px;
  width: 70px; height: 70px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25); z-index: 999;
  transition: transform 0.2s;
}
.whatsapp-float img { width: 100%; height: 100%; object-fit: cover; }
.whatsapp-float:hover { transform: scale(1.1); background: #1ebe5d; }

/* Responsive footer stack */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

h3{
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: bold;
  color: var(--color-3);
}