/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BODY ===== */
body {
    background: #0a0a0a;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* ===== HEADER PASTEL ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #ffd6ec, #d6faff, #fff5ba);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    z-index: 1000;
}

/* ===== LOGO ===== */
.logo {
    height: 110px;
    border-radius: 50%;
}

/* ===== MENU ===== */
.menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu a {
    background: #fff;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    margin: 0 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.menu a:hover {
    background: #000;
    color: #fff;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 0;
    position: relative;
    overflow: hidden;
}

/* ===== LLUVIA ===== */
.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('peluche.png');
    background-size: 80px;
    opacity: 0.08;
    animation: lluvia 20s linear infinite;
    pointer-events: none;
}

@keyframes lluvia {
    0% { background-position: 0 -200px; }
    100% { background-position: 0 1000px; }
}

/* ===== TITULO ===== */
.titulo-color span {
    font-size: 42px;
    font-weight: bold;
    font-style: italic;
}

.titulo-color span:nth-child(5n+1){ color:#ff9aa2; }
.titulo-color span:nth-child(5n+2){ color:#a0e7e5; }
.titulo-color span:nth-child(5n+3){ color:#fff5ba; }
.titulo-color span:nth-child(5n+4){ color:#b4f8c8; }
.titulo-color span:nth-child(5n+5){ color:#cdb4db; }

/* ===== SUBTITULO ===== */
.frase-venta {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BOTON PRINCIPAL ===== */
.btn-principal {
    display: inline-block;
    margin-top: 20px;
    background: #ff00e6;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 0 10px #ff00e6;
}

.btn-principal:hover {
    background: #00ffe0;
    box-shadow: 0 0 15px #00ffe0;
}

/* ===== SECCIONES ===== */
section {
    padding: 80px 30px;
    text-align: center;
}

h2 {
    margin-bottom: 30px;
    text-shadow: 0 0 10px #00ffe0;
}

/* ===== CATALOGO PREVIEW ===== */
.catalogo-preview .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===== CARD ===== */
.card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px #ff00e620;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #ff00e6;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card p {
    margin: 10px;
    color: #ffb6ff;
}

/* ===== BOTONES ===== */
.card a {
    display: block;
    margin: 10px;
    padding: 10px;
    text-decoration: none;
    border-radius: 6px;
}

.card a:first-of-type {
    background: #222;
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .catalogo-preview .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 28px;
    }

    .header {
        flex-direction: column;
        gap: 10px;
    }

    .menu {
        flex-wrap: wrap;
    }
}

/* ===== BOTONES DE COMPRA ===== */
.botones-compra {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.btn-wsp {
    background: #25D366;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
}

.btn-pago {
    background: #009ee3;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
}

/* ===== SLIDER ===== */
.galeria-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px 0;
}

.contenedor-img {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
}

.contenedor-img::-webkit-scrollbar {
    display: none;
}

.contenedor-img img {
    min-width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    transition: 0.3s;
}

.contenedor-img img:hover {
    transform: scale(1.05);
}

/* ===== FLECHAS ===== */
.flecha {
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 25px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.flecha:hover {
    background: #ff00e6;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .contenedor-img img {
        min-width: 100px;
        height: 100px;
    }
}
/* FORZAR TAMAÑO REAL */
.contenedor-img img {
    min-width: 140px !important;
    height: 140px !important;
}
/* ===== GALERIA TIPO TIENDA (ESTILO ADIDAS) ===== */
.galeria-tienda {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin: 30px 0;
    padding: 0 20px;
}

.galeria-tienda img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

/* EFECTO HOVER PRO */
.galeria-tienda img:hover {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
    .galeria-tienda {
        grid-template-columns: repeat(2, 1fr);
    }

    .galeria-tienda img {
        height: 130px;
    }
}
/* ===== ARREGLO CATALOGO (VARIAS COLUMNAS) ===== */
.catalogo .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 768px) {
    .catalogo .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ===== UNIFICAR TAMAÑO CON CATALOGO ===== */
.detalle-producto {
    max-width: 1100px;
    margin: auto;
    padding: 120px 20px 40px;
}

/* TITULO */
.titulo-producto {
    font-size: 26px;
    margin-bottom: 10px;
}

/* PRECIO */
.precio {
    font-size: 22px;
    margin-bottom: 20px;
}

/* DESCRIPCION */
.descripcion {
    max-width: 600px;
    margin: 20px auto;
    font-size: 15px;
    line-height: 1.5;
}

/* GALERIA IGUAL AL CATALOGO */
.galeria-tienda {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.galeria-tienda img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

/* BOTONES */
.botones-compra {
    max-width: 400px;
    margin: 30px auto;
}
/* ===== ARREGLO IMAGENES GALERIA (NO RECORTAR) ===== */
.galeria-tienda img {
    width: 100%;
    height: 180px;
    object-fit: contain; /* muestra la imagen completa */
    background: #111; /* fondo prolijo si sobra espacio */
}
/* ===== IMAGENES CATALOGO COMPLETAS ===== */
.catalogo .card img {
    width: 100%;
    height: 200px; /* podés ajustar */
    object-fit: contain; /* 👈 NO RECORTA */
    background: #111; /* relleno prolijo */
}
/* =========================
   BOTONES REDES MODERNOS
========================= */

.redes-fila {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.red-btn {
  padding: 10px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  background: #ffffff;
  color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.red-btn:hover {
  transform: translateY(-3px);
  background: #f5f5f5;
}

/* =========================
   QUIÉNES SOMOS LAYOUT
========================= */

.quienes-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.quienes-texto {
  flex: 1;
  min-width: 280px;
}

.quienes-img {
  flex: 1;
  min-width: 280px;
}

.quienes-img img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* =========================
   BLOQUE ENVÍOS (PASTEL)
========================= */

.envios-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background: linear-gradient(135deg, #ffe6f0, #e6f7ff);
  padding: 25px;
  margin: 40px 20px;
  border-radius: 15px;
  text-align: center;
  font-weight: 600;
  color: #444;
  gap: 15px;
}

.envios-box div {
  padding: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.6);
}

/* =========================
   RESPONSIVE CELULAR
========================= */

@media (max-width: 768px) {

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hero-contenido {
    padding: 20px;
  }

  .quienes-container {
    flex-direction: column;
    text-align: center;
  }

  .red-btn {
    width: 100%;
    text-align: center;
  }

}
/* =========================
   BOTONES CONTACTO FINAL
========================= */

.contacto-botones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.btn-contacto {
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: white;
  transition: 0.3s;
}

.btn-contacto:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* colores */
.whatsapp { background: #25D366; }
.facebook { background: #1877F2; }
.tiktok { background: #000000; }

/* =========================
   FIRMA FINAL
========================= */

.firma {
  text-align: center;
  margin-top: 40px;
  padding: 25px;
  background: #ffe6f0;
}

.firma h3 {
  color: #ff4fa3;
  font-size: 22px;
  letter-spacing: 1px;
}
/* =========================
   AJUSTE HERO (BAJA TÍTULO EN CELULAR)
========================= */

.hero {
  padding-top: 120px;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 140px;
  }
}

/* =========================
   IMÁGENES DEL CATÁLOGO (NO CORTADAS)
========================= */

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* =========================
   BOTONES REDES MODERNOS
========================= */

.redes-fila {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.red-btn {
  padding: 10px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  background: #ffffff;
  color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.red-btn:hover {
  transform: translateY(-3px);
  background: #f5f5f5;
}

/* =========================
   QUIÉNES SOMOS (LAYOUT)
========================= */

.quienes-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.quienes-texto {
  flex: 1;
  min-width: 280px;
}

.quienes-img {
  flex: 1;
  min-width: 280px;
}

.quienes-img img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* =========================
   BLOQUE ENVÍOS (PASTEL)
========================= */

.envios-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background: linear-gradient(135deg, #ffe6f0, #e6f7ff);
  padding: 25px;
  margin: 40px 20px;
  border-radius: 15px;
  text-align: center;
  font-weight: 600;
  color: #444;
  gap: 15px;
}

.envios-box div {
  padding: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.6);
}

/* =========================
   BOTONES CONTACTO FINAL
========================= */

.contacto-botones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.btn-contacto {
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: white;
  transition: 0.3s;
}

.btn-contacto:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.whatsapp { background: #25D366; }
.facebook { background: #1877F2; }
.tiktok { background: #000000; }

/* =========================
   FIRMA FINAL
========================= */

.firma {
  text-align: center;
  margin-top: 40px;
  padding: 25px;
  background: #ffe6f0;
}

.firma h3 {
  color: #ff4fa3;
  font-size: 22px;
  margin-bottom: 5px;
}

.firma p {
  font-size: 13px;
  color: #666;
  margin: 2px 0;
}

/* =========================
   EXTRA MOBILE CLEAN (OPCIONAL PERO RECOMENDADO)
========================= */

@media (max-width: 768px) {
  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hero-contenido {
    padding: 20px;
  }

  .quienes-container {
    flex-direction: column;
    text-align: center;
  }
}
/* =========================
   FIX SOLO CELULAR (TÍTULO + CATALOGO)
========================= */

@media (max-width: 768px) {

  /* evita que el header tape el título */
  .hero {
    padding-top: 170px;
  }

  /* baja tamaño del título para que no se corte */
  .titulo-color span {
    font-size: 30px;
  }

  /* mejora visual del catálogo en celular */
  .catalogo-preview .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* evita imágenes “cortadas raras” en móvil */
  .card img {
    height: 180px;
    object-fit: cover;
  }
}


/* =========================
   FIRMA FINAL (DERECHOS RESERVADOS PRO)
========================= */

.firma {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  background: transparent; /* sin barra rosa */
  border-top: 1px solid rgba(255,255,255,0.1);
}

.firma h3 {
  color: #ff4fa3;
  font-size: 18px;
  margin-bottom: 6px;
}

.firma p {
  font-size: 12px;
  color: #aaa;
  margin: 2px 0;
}
/* =========================
   AJUSTE FINAL CELULAR
========================= */

@media (max-width: 768px) {

  /* BAJA MÁS EL TÍTULO */
  .hero {
    padding-top: 200px; /* lo baja más para que no quede pegado arriba */
  }

  /* MEJOR VISTA DEL CATÁLOGO (NO SE VE CORTADO A LA MITAD) */
  .card img {
    height: 240px;        /* un poco más alto */
    object-fit: cover;    /* mantiene estética */
    object-position: top; /* muestra más la parte superior de la cama */
  }

}
