@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  font-family: "Roboto";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background-color: aquamarine;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin-bottom: 20px;
}
header .logo {
  width: 100px;
  height: auto;
  margin-left: auto;
}
header h1 {
  font-size: 2rem;
  margin: 0;
  text-align: center;
  flex-grow: 1;
}
header nav ul.nav {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  align-items: center;
}
header nav ul.nav li a {
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 5px 10px;
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  header .logo {
    width: 80px;
  }
  header h1 {
    font-size: 1.5rem;
    text-align: center;
  }
  header nav ul.nav {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  header nav li a {
    font-size: 1rem;
  }
  header .menu-toggle {
    display: block;
  }
}

footer {
  background-color: blanchedalmond;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px;
  flex-wrap: wrap;
  margin-top: auto;
}
footer h2 {
  font-size: 1rem;
}
footer ul {
  display: flex;
  gap: 15px;
  list-style: none;
}
footer li a img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: 0.3s;
}
footer li a img:hover {
  transform: scale(1.2);
}

.whatsapp {
  height: auto;
  width: 5vw;
  position: fixed;
  bottom: 10px;
  right: 20px;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  /* Ajustar tamaño de WhatsApp solo en móviles */
  .whatsapp {
    width: 13vw;
  }
  li a img {
    width: 40px;
    height: 40px;
  }
}
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.main {
  display: flex; /* Usamos flexbox para organizar imagen y texto en una fila */
  align-items: center; /* Centra el contenido verticalmente */
  padding: 20px;
  flex-grow: 1;
}

.content-container {
  display: flex; /* Usa flexbox para alinear imagen y texto horizontalmente */
  align-items: center; /* Alinea verticalmente los elementos */
  justify-content: flex-start; /* Alinea los elementos al principio (a la izquierda) */
}

.home-img {
  width: 40%; /* Ajusta el tamaño de la imagen */
  max-width: 600px;
  border-radius: 12px;
  margin-right: 20px; /* Espacio entre la imagen y el texto */
}

.texto {
  max-width: 600px; /* Asegura que el texto no ocupe más de 600px */
  font-size: 1.2rem; /* Ajusta el tamaño de la fuente */
}

@media (max-width: 768px) {
  .main {
    flex-direction: column; /* Cambia a columna en pantallas pequeñas */
    align-items: center;
  }
  .content-container {
    flex-direction: column; /* Organiza imagen y texto en columna */
    text-align: center; /* Centra el texto */
  }
  .home-img {
    width: 80%; /* Aumenta el tamaño de la imagen en móviles */
    margin-right: 0; /* Elimina el margen derecho */
    margin-bottom: 20px; /* Añade espacio debajo de la imagen */
  }
  .texto {
    font-size: 1rem; /* Ajusta el tamaño del texto en pantallas pequeñas */
    padding: 10px; /* Añade un poco de padding alrededor del texto */
  }
}
/* Media Query para pantallas más pequeñas (como smartphones en modo vertical) */
@media (max-width: 480px) {
  .home-img {
    width: 90%; /* Aumenta aún más el tamaño de la imagen */
  }
  .texto {
    font-size: 0.9rem; /* Ajusta el tamaño del texto para móviles pequeños */
    padding: 15px;
  }
}
.contacto {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background-color: gray;
}
.contacto form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  margin-bottom: 2rem;
}
.contacto form label {
  display: block;
  font-weight: bold;
  margin: 0.5rem 0 0.2rem;
}
.contacto form input,
.contacto form textarea {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.contacto form input:focus,
.contacto form textarea:focus {
  outline: none;
  box-shadow: 0 0 6px rgba(255, 105, 180, 0.3);
}
.contacto form input[type=submit],
.contacto form input[type=reset] {
  width: 48%;
  cursor: pointer;
  color: white;
  font-weight: bold;
  border: none;
  transition: background 0.3s ease;
}
.contacto form input[type=submit] {
  margin-right: 4%;
}
.contacto iframe {
  border: 0;
  border-radius: 10px;
  max-width: 100%;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }
  header nav {
    margin-top: 1rem;
  }
  main form {
    width: 90%;
  }
  main iframe {
    width: 100%;
    height: 300px;
  }
}
#carouselBebes {
  height: auto;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 14px;
}
#carouselBebes .carousel-inner .carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}
#carouselBebes .carousel-indicators button {
  background-color: #ffb6c1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 4px;
  opacity: 0.7;
  transition: all 0.3s ease;
}
#carouselBebes .carousel-indicators button.active {
  background-color: #ff69b4;
  opacity: 1;
}
#carouselBebes .carousel-control-prev,
#carouselBebes .carousel-control-next {
  filter: invert(100%);
  transition: transform 0.3s ease;
}
#carouselBebes .carousel-control-prev:hover,
#carouselBebes .carousel-control-next:hover {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  #carouselBebes {
    max-width: 100%;
    border-radius: 0;
  }
  #carouselBebes .carousel-indicators {
    bottom: -20px;
  }
}

.tienda {
  padding: 2rem;
}
.tienda .tabla-tienda {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.tienda .tabla-tienda .fila-ropa {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
.tienda .tabla-tienda .fila-ropa section {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  padding: 0 1rem;
}
.tienda .tabla-tienda .fila-ropa .ropa {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
}
.tienda .tabla-tienda .fila-ropa h2 {
  margin-bottom: 0.75rem;
  text-align: center;
  color: #ff69b4;
}
.tienda .tabla-tienda .fila-ropa p {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
  color: #333;
}

@media (max-width: 768px) {
  .tienda {
    padding: 1rem;
  }
  .tienda .tabla-tienda .fila-ropa {
    align-items: center;
    text-align: center;
  }
  .tienda .tabla-tienda .fila-ropa section .ropa {
    max-width: 90%;
  }
}
.nosotros {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.nosotros img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.nosotros-texto {
  max-width: 800px;
  margin: 20px auto;
  padding: 10px;
}

.nosotros-texto h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.nosotros-texto p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.nosotros-texto ul {
  list-style: none;
  padding: 0;
}

.nosotros-texto li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .nosotros img {
    max-width: 90%;
  }
  .nosotros-texto {
    margin: 15px;
    padding: 10px;
  }
  .nosotros-texto h2 {
    font-size: 1.5rem;
  }
  .nosotros-texto p {
    font-size: 0.9rem;
  }
  .nosotros-texto ul {
    padding-left: 20px;
  }
  .nosotros-texto li {
    font-size: 0.9rem;
  }
}

/*# sourceMappingURL=style.css.map */
