@import url("https://fonts.googleapis.com/css2?family=Lily+Script+One&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lily+Script+One&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  height: 110px;
}
header nav.barra {
  text-decoration: none;
  background-color: #c8aaaa;
  z-index: 1030;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #574964;
}
header nav a img {
  width: 90px;
  display: block;
  margin: auto;
  transition: transform 1s ease;
  transform-origin: center;
}
header nav a img:hover {
  transform: rotateY(360deg);
}
header nav ul {
  list-style: none;
}

footer p {
  font-weight: 700;
}
footer .parrafopie {
  flex-grow: 3;
  display: flex;
  align-items: center;
}
footer.pie {
  background-color: #c8aaaa;
  height: 70px;
  padding: 2%;
  padding-left: 0%;
  display: flex;
}
footer .enlaces {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
footer img {
  width: 40px;
}

@media (max-width: 480px) {
  .pie {
    height: auto;
    padding: 1rem;
    padding-left: 0.5rem;
  }
  .parrafopie p {
    font-size: 0.8rem;
  }
  .enlaces img {
    width: 30px;
  }
  .enlaces {
    gap: 8px;
  }
}
p {
  font-family: "Poppins", sans-serif;
  white-space: pre-line;
  font-weight: 300;
  text-align: justify;
  padding-left: 3%;
  padding-right: 3%;
  padding-bottom: 1.5%;
  padding-top: 1.5%;
}

body {
  background-image: url("../Recursos/fondo1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
}
body h1 {
  text-decoration: underline;
  text-align: center;
  color: #333;
  text-shadow: -1px -1px 0 #000;
  text-transform: capitalize;
  padding: 1%;
  padding-bottom: 0%;
}
body .intro {
  font-style: italic;
}
body h2,
body h3,
body h4 {
  margin-left: 1rem;
  padding-bottom: 0%;
}
body body ul li {
  font-family: "Poppins", sans-serif;
  font-style: italic;
}
body .meses {
  width: 350px;
  margin-left: 3%;
}

@media (max-width: 480px) {
  .meses {
    align-items: center;
  }
}
ul {
  text-align: justify;
}

.consejos {
  display: grid;
  grid-area: unset;
  padding: 2%;
  padding-top: 0%;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "madre padre" "lista1 lista2";
}
.consejos .madre {
  grid-area: madre;
  text-decoration: underline;
}
.consejos .padre {
  grid-area: padre;
  text-decoration: underline;
}
.consejos .lista1 {
  grid-area: lista1;
}
.consejos .lista2 {
  grid-area: lista2;
}
@media (max-width: 480px) {
  .consejos {
    grid-template-areas: "madre" "lista1" "padre" "lista2";
    grid-template-columns: 1fr;
  }
}

.consejos2 {
  display: grid;
  grid-area: unset;
  padding: 2%;
  padding-top: 0%;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "madre2 bebe2 padre2" "listam listab listap";
}
.consejos2 .madre2 {
  grid-area: madre2;
  text-decoration: underline;
}
.consejos2 .bebe2 {
  grid-area: bebe2;
  text-decoration: underline;
}
.consejos2 .padre2 {
  grid-area: padre2;
  text-decoration: underline;
}
.consejos2 .listam {
  grid-area: listam;
}
.consejos2 .listab {
  grid-area: listab;
}
.consejos2 .listap {
  grid-area: listap;
}
@media (max-width: 480px) {
  .consejos2 {
    grid-template-areas: "madre2" "listam" "bebe2" "listab" "padre2" "listap";
    grid-template-columns: 1fr;
  }
}

.h2lactancia {
  text-align: center;
  margin: 0 auto;
}

.micarousel img {
  max-height: 350px;
  margin-bottom: 2rem;
  object-fit: contain;
}
.micarousel .carousel-control-prev-icon,
.micarousel .carousel-control-next-icon {
  background-color: #574964;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  background-size: 60%;
}

@media (max-width: 480px) {
  .carousel-item img {
    max-height: 250px;
  }
}
.posiciones {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  max-width: auto;
  margin: 1rem auto;
  padding: 0rem;
}
.posiciones p {
  margin: 1rem;
  line-height: 1.5;
}
.posiciones .posicionesimg {
  width: 80%;
  height: auto;
  border-radius: 7px;
  object-fit: contain;
  justify-self: center;
}

@media (max-width: 480px) {
  .posiciones {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  .posiciones .posicionesimg {
    max-width: 90%;
    margin: 0 auto;
  }
  .posiciones p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}
.formulario {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  max-width: 50%;
  margin: 1rem auto;
  padding: 1rem;
  background: #faf9fc;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.formulario h3 {
  text-align: center;
  color: #574964;
  margin-bottom: 0px;
  font-weight: 600;
}
.formulario textarea {
  height: 80px;
  resize: vertical;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.formulario input[type=text] {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.formulario .radio {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 0.5rem;
  margin: 0;
  color: #574964;
  font-weight: 400;
}
.formulario .radio .radioitem {
  display: flex;
  align-items: center;
  gap: 10px;
}
.formulario label {
  font-weight: 500;
  color: #574964;
}
.formulario .enviar {
  background-color: #574964;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  margin-left: 4%;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 90%;
}
.formulario .enviar:hover {
  background-color: #6b5b80;
}

@media (max-width: 480px) {
  .formulario {
    padding: 1.5rem;
    max-width: 80%;
  }
}
.hitos {
  display: grid;
  white-space: pre-line;
  line-height: 1;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.5rem;
  max-width: 1200px;
  margin: 2rem auto;
}
.hitos .vhitoscol {
  grid-column: 1/2;
  grid-row: 1/5;
}
.hitos .vhitoscol .videohitos {
  max-width: 100%;
}
.hitos .vhitoscol .imgbajovideo {
  max-width: 90%;
  opacity: 0.9;
}
.hitos .cold {
  grid-column: 2/4;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0%;
  line-height: 1.5;
  text-align: right;
}
.hitos .coli {
  grid-column: 2/4;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0%;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 480px) {
  .hitos {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
    margin: 1rem;
  }
  .hitos .vhitoscol {
    grid-column: auto;
    grid-row: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hitos .vhitoscol .videohitos {
    width: 100%;
    height: auto;
  }
  .hitos .vhitoscol .imgbajovideo {
    max-width: 100%;
    margin-top: 0.5rem;
  }
  .cold {
    text-align: right;
    grid-column: auto;
    width: 100%;
  }
  .coli {
    text-align: left;
    grid-column: auto;
    width: 100%;
  }
}

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