/* styles.css */
:root {
  --rosa-frambuesa: rgba(231,84,128,0.95);
  --vainilla-suave: rgba(252,229,205,1);
  --verde-menta: rgba(168,230,207,1);
  --amarillo-crema: rgba(255,250,205,1);
  --lavanda-suave: rgba(216,191,216,1);
  --fondo-pastel: #fff0f5;
  --texto-principal: #4B2E2E;
  --max-width: 780px;
  --radius: 12px;
}

/* Layout */
* { box-sizing: border-box }

body {
  margin: 0;
  font-family: 'Quicksand','Raleway',system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
  background-color: var(--fondo-pastel);
  color: var(--texto-principal);
  min-height: 100vh;
}

/* Fondo animado con movimiento suave */
@keyframes pastelMove {
  0%   { background-position: 50% 0%; }
  50%  { background-position: 50% 100%; }
  100% { background-position: 50% 0%; }
}

body {
  margin: 0;
  height: 100vh;
  position: relative;
  font-family: 'Quicksand', 'Raleway', sans-serif;
  background-color: #fff0f5;
  color: #4B2E2E;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../assets/images/background-01.webp');
  background-size: cover;
  background-position: 50% 0%;
  animation: pastelMove 18s ease-in-out infinite;
  opacity: 0.10;
  z-index: -1;
  pointer-events: none;
}



header {
  background-color: rgba(255,255,255,0.9);
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}

main {
  padding: 140px 16px 90px;
  display: flex;
  justify-content: center;
}

.links {
  max-width: var(--max-width);
  margin: 0 auto;
  background-color: rgba(255,255,255,0.96);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0,0,0,0.09);
}

.links h2 {
  text-align: center;
  font-weight: 300;
  font-size: 2rem;
  margin: 0 0 14px;
}

.links h3 {
  text-align: center;
  font-weight: 300;
  font-size: 1.25rem;
  margin: 12px 0;
}

.social-icons {
  text-align: center;
  margin-bottom: 18px;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  line-height: 0.9;
}

.social-icons img,
.social-icons svg {
  width: 36px;
  height: 36px;
  opacity: .95;
  transition: transform .18s ease;
}

.social-icons a:hover img,
.social-icons a:hover svg {
  transform: translateY(-4px) scale(1.05);
}

ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  margin: 10px auto;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
  transition: transform .22s ease, box-shadow .22s ease;
  width: 80%;
  max-width: 400px;
}

.cta-button img {
  width: 28px;
  height: 28px;
  display: block;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.catalog-button { background: var(--rosa-frambuesa); color: #fff; }
.homepage-button { background: var(--vainilla-suave); color: var(--texto-principal); }
.whatsapp-button { background: var(--verde-menta); color: var(--texto-principal); }
.buy-button { background: var(--amarillo-crema); color: var(--texto-principal); }
.call-button { background: var(--lavanda-suave); color: var(--texto-principal); }

footer p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width:768px) {
  main { padding: 160px 12px 110px; }
  .links h2 { font-size: 1.6rem; }
  .cta-button { width: 92%; font-size: 1.05rem; }
}

/* Animations: controlled by JS */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}