/* ===== RESETEO GENERAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #fce4ec;
  font-family: 'Quicksand', sans-serif;
}

header {
  background-color: #f8bbd0;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

header .logo img {
  border-radius: 50%;
  padding: 8px;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  width: 140px;
  height: 140px;
  object-fit: contain;
  transition: all 0.4s ease-in-out;
  border: 4px solid #ad1457;
}

header .logo img:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
  border-color: #880e4f;
}

header .logo {
  font-size: 32px;
  font-weight: bold;
  color: #ad1457;
  margin-right: 30px;
}

nav a {
  color: #880e4f;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  margin-left: 30px;
  padding: 10px 18px;
  border-radius: 25px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
  background-color: #e0f2f7;
  color: #ad1457;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
}

/* ===== BANNER ===== */
.banner {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cambiarFondo 18s infinite ease-in-out;
}

@keyframes cambiarFondo {
  0%, 25% {
    opacity: 1;
    background-image: url("../img/banner1.jpg");
  }
  30%, 55% {
    opacity: 1;
    background-image: url("../img/banner2.jpg");
  }
  60%, 85% {
    opacity: 1;
    background-image: url("../img/banner3.jpg");
  }
  90%, 100% {
    opacity: 1;
    background-image: url("../img/banner4.jpg");
  }
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.logo-img {
  width: 850px;
  max-width: 90%;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 170, 220, 0.35);
  z-index: 1;
}

/* === FILA DE CÍRCULOS === */
.fila-circulos {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px 50px;
}

.producto-circular {
  width: 300px;
  text-align: center;
  padding: 10px;
}

.imagen-circular {
  width: 250px;
  height: 250px;
  margin: 0 auto 15px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 5px solid var(--color-principal);
}

.imagen-circular img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.producto-circular h3 {
  color: var(--color-acento-fuerte);
  font-size: 1.5em;
  margin: 10px 0;
}

.producto-circular p {
  color: var(--color-texto-general);
  font-size: 0.9em;
  height: 60px;
}

.btn-ver-mas {
  display: inline-block;
  color: var(--color-acento-fuerte);
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 20px;
  border: 2px solid var(--color-acento-fuerte);
  transition: all 0.3s;
}

.btn-ver-mas:hover {
  background-color: var(--color-acento-fuerte);
  color: var(--fondo-blanco);
}

.divisor-ondulado {
  height: 50px;
  background: var(--color-secundario);
  position: relative;
  margin-top: 50px;
  margin-bottom: -15px;
}

.divisor-ondulado::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--fondo-blanco);
  border-top-left-radius: 100% 50%;
  border-top-right-radius: 100% 50%;
}

.fila-destacados-contenedor {
  background-color: var(--color-secundario);
  padding: 40px 50px 80px;
  text-align: center;
}

.subtitulo-destacados {
  color: var(--color-acento-fuerte);
  font-size: 1.8em;
  margin-bottom: 30px;
}

.fila-destacados {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.producto-destacado {
  width: 23%;
  background-color: var(--fondo-blanco);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.producto-destacado:hover {
  transform: translateY(-5px);
}

.producto-destacado img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.producto-destacado h4 {
  color: var(--color-acento-fuerte);
  font-size: 1.1em;
  margin: 15px 10px 5px;
}

.producto-destacado p {
  color: var(--color-texto-general);
  font-size: 0.8em;
  padding: 0 10px;
  height: 70px;
  line-height: 1.4;
}

.btn-destacado {
  display: block;
  background-color: var(--color-principal);
  color: var(--color-acento-fuerte);
  text-decoration: none;
  font-weight: bold;
  padding: 8px 10px;
  margin: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-destacado:hover {
  background-color: var(--color-acento-fuerte);
  color: var(--fondo-blanco);
}

.flecha {
  background: none;
  border: none;
  font-size: 2em;
  color: var(--color-acento-fuerte);
  cursor: pointer;
  padding: 0 10px;
  align-self: center;
}

.nosotros-contenido {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

.nosotros-texto {
  flex: 1.2;
  min-width: 280px;
}

.nosotros-texto h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 40px;
  color: #ad1457;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: left;
}

.nosotros-texto p {
  font-size: 17px;
  line-height: 1.75;
  color: #444;
  text-align: justify;
  hyphens: auto;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}

.nosotros-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nosotros-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 4px 15px #00000025;
}

:root {
  --color-fondo-seccion: #fce4ec;
  --color-titulo: #ad1457;
  --color-borde-imagen: #ffffff;
  --color-sombra-suave: rgba(0, 0, 0, 0.15);
}

.nosotros {
  background-color: var(--color-fondo-seccion);
  padding: 80px 50px;
}

.nosotros-contenido {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.nosotros-texto {
  flex: 1;
  min-width: 550px;
  max-width: 650px;
}

.nosotros-texto h2 {
  font-size: 40px;
  color: var(--color-titulo);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: left;
}

.nosotros-texto p {
  font-size: 17px;
  line-height: 1.75;
  color: #444;
  text-align: justify;
  hyphens: auto;
}

.nosotros-img {
  flex: 0 0 auto;
  width: 350px;
  background-color: var(--color-borde-imagen);
  border: 1px solid #ccc;
  padding: 15px;
  box-shadow: 5px 5px 15px var(--color-sombra-suave),
              -5px -5px 15px var(--color-sombra-suave);
  transform: rotate(2deg);
  transition: all 0.5s ease;
}

.nosotros-img:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.2);
}

.nosotros-img img {
  width: 100%;
  border-radius: 5px;
}

@media (max-width: 992px) {
  .nosotros-contenido {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
    max-width: 90%;
  }

  .nosotros-texto {
    min-width: unset;
    max-width: 100%;
  }

  .nosotros-texto h2 {
    text-align: center;
  }

  .nosotros-texto p {
    text-align: left;
  }

  .nosotros-img {
    width: 80%;
    transform: rotate(0deg);
  }
}

/* ===== SECCIÓN PRODUCTOS ===== */
.productos {
  padding: 50px;
  text-align: center;
}

.productos h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #c946b8;
}

.galeria {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.item {
  background: #ffe6fa;
  border-radius: 20px;
  padding: 15px;
  width: 260px;
  box-shadow: 0 2px 8px #00000020;
  transition: transform .3s;
}

.item:hover {
  transform: translateY(-5px);
}

.item img {
  width: 100%;
  border-radius: 18px;
}

.item p {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

/* ===== CONTACTO ===== */
.contacto {
  padding: 50px;
  text-align: center;
  background: #ffe2f3;
}

.contacto h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  background: #ff64c4;
  padding: 12px 25px;
  border-radius: 30px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  margin-top: 15px;
}

.btn:hover {
  background: #ff2ea9;
}

/* ===== FOOTER ===== */
.footer-mejorado {
    background-color: #f8bbd0; /* Un rosa medio, similar al header */
    color: #880e4f; /* Rosa oscuro para el texto principal */
    padding: 40px 50px 0; /* Espacio superior e inferior */
    font-family: 'Quicksand', sans-serif;
}

.footer-contenido {
    display: flex;
    justify-content: space-around; /* Distribuye las columnas */
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(136, 14, 79, 0.2); /* Línea divisoria suave */
    flex-wrap: wrap; /* Para que las columnas se apilen en móvil */
}

.footer-columna {
    width: 250px; /* Ancho fijo para las columnas */
    margin: 15px;
}

.footer-columna h3 {
    font-size: 1.4em;
    color: #ad1457; /* Rosa más vibrante para los títulos */
    margin-bottom: 15px;
    border-bottom: 2px solid #ffcdd2; /* Pequeña línea bajo el título */
    padding-bottom: 5px;
}

.footer-columna ul {
    list-style: none;
    padding: 0;
}

.footer-columna ul li {
    margin-bottom: 8px;
}

.footer-columna ul li a {
    color: #880e4f;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block; /* Para aplicar el transform */
}

.footer-columna ul li a:hover {
    color: #ad1457;
    transform: translateX(5px); /* Pequeño movimiento al pasar el ratón */
}

/* Estilos para el botón de WhatsApp en el footer */
.btn-whatsapp-footer {
    display: inline-block;
    background-color: #ff80ab; /* Rosa chicle para el botón */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 25px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.btn-whatsapp-footer:hover {
    background-color: #ad1457; /* Cambio a rosa oscuro al pasar el ratón */
}

/* Estilos para los íconos de redes sociales */
.iconos-redes a {
    color: #ad1457;
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.iconos-redes a:hover {
    color: #880e4f;
    transform: scale(1.15);
}

/* Base del footer (Copyright) */
.footer-base {
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
    color: #880e4f;
}

.footer-base .fa-heart {
    color: #ff64c4;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .footer-contenido {
        flex-direction: column;
        align-items: center;
    }

    .footer-columna {
        text-align: center;
        width: 100%;
        max-width: 300px; /* Limita el ancho de la columna en móvil */
    }

    .footer-columna h3 {
        margin-top: 20px;
    }

    .iconos-redes {
        display: flex;
        justify-content: center;
    }
}

/* ===== AJUSTES SOLICITADOS ===== */
h2 {
  text-align: center;
  color: #F875AA !important;
}
