@charset "UTF-8";
/*Animacion*/
@keyframes entrada-derecha {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "TikTok Sans", sans-serif;
}

body {
  height: 100%;
}

.listaFooter {
  list-style-type: none;
}

.subtitulosInformativos {
  text-transform: uppercase;
  color: #c1c4c4;
}

.textosMedioGeneral {
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}

.TituloPrincipal {
  background-color: #c1c4c4;
  justify-content: left;
  padding: 20px;
  color: #1142a1;
  text-transform: uppercase;
  height: 80px;
}

#paginaCompleta {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  height: 10vh;
  flex: 1;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* HEADER */
#contenedorHeader {
  display: flex;
  width: 100%;
  height: 220px;
  overflow: auto;
}

/* FOOTER */
#contenedorFooter {
  display: grid;
  grid-template-areas: "logo contacto redes";
  width: 100%;
  background-color: #c1c4c4;
}

.cajaFooterLogo {
  grid-area: logo;
  justify-self: start;
}

.cajaFooterContacto {
  grid-area: contacto;
  place-self: center;
}

.cajaFooterRedes {
  grid-area: redes;
  place-self: center;
}

@media (max-width: 768px) {
  #contenedorFooter {
    grid-template-areas: "logo" "contacto" "redes";
    grid-template-columns: 1fr;
    height: auto;
    row-gap: 20px;
    padding: 20px;
    text-align: center;
  }
  .cajaFooterLogo,
  .cajaFooterContacto,
  .cajaFooterRedes {
    justify-self: center;
  }
}
/* SECCIONES */
.contenidoInformativo {
  padding: 3%;
}

#textPricipal {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #1142a1;
  font-size: 28px;
  line-height: 1.425;
  width: 100%;
  padding: 2.5%;
}

/* CAROUSEL */
.contenidoCarousel {
  position: relative;
  height: 700px;
}

.cajaTextoCentrada {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  z-index: 10;
  max-width: 85%;
  overflow: auto;
}

.tituloCarousel {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.textoCarousel {
  font-size: 1.2rem;
  margin: 0;
}

/* ASESORAMIENTO */
.paginaAsesoramiento {
  display: grid;
  grid-template-rows: 1fr 10fr;
  grid-template-areas: "tituloFormulario tituloDatos" "fomulario datos";
  overflow-y: scroll;
}

.titulosAsesoramiento {
  color: #c1c4c4;
  display: flex;
  justify-content: center;
}

.textoDatoAsesoramiento {
  text-decoration: none;
  color: #1142a1;
}

.contenedorTitulofomulario {
  grid-area: tituloFormulario;
  height: auto;
}

.contenedorFomularioAsesoramiento {
  grid-area: fomulario;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.elementoFormulario {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.elementoFormulario label {
  font-weight: bold;
  margin-bottom: 6px;
  color: #343a40;
}
.elementoFormulario input,
.elementoFormulario textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.elementoFormulario textarea {
  resize: vertical;
  min-height: 100px;
}

.contenedorTituloDatos {
  height: auto;
  grid-area: tituloDatos;
}

.contenedorDatosAsesoramiento {
  grid-area: datos;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  justify-content: space-evenly;
}

.datoAsesoramiento {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateX(80px);
  animation: entrada-derecha 0.5s ease-out 1s forwards;
}
.datoAsesoramiento:nth-child(1) {
  opacity: 0;
  transform: translateX(80px);
  animation: entrada-derecha 0.4s ease-out 0.1s forwards;
}
.datoAsesoramiento:nth-child(2) {
  opacity: 0;
  transform: translateX(80px);
  animation: entrada-derecha 0.8s ease-out 0.1s forwards;
}
.datoAsesoramiento:nth-child(3) {
  opacity: 0;
  transform: translateX(80px);
  animation: entrada-derecha 1s ease-out 0.2s forwards;
}
.datoAsesoramiento:nth-child(4) {
  opacity: 0;
  transform: translateX(80px);
  animation: entrada-derecha 1.5s ease-out 0.2s forwards;
}
.datoAsesoramiento:nth-child(5) {
  opacity: 0;
  transform: translateX(80px);
  animation: entrada-derecha 1.8s ease-out 0.2s forwards;
}

/* CONSULTORIO  VIRTUAL*/
.formularioConsultorioVirtual {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin: 30px auto;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  gap: 16px;
}

.formularioConsultorioVirtual label {
  font-weight: bold;
  color: #343a40;
}

.formularioConsultorioVirtual input,
.formularioConsultorioVirtual select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.btnEnviar {
  width: 30%;
}

/* IMÁGENES */
.imgObrasSociales {
  width: 200px;
  height: 200px;
}

.imgCarousel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.imgRedesFooter {
  width: 28px;
  height: 28px;
}

#imgLogoHeader {
  width: 107px;
  height: 96px;
}

#imgLogoFooter {
  width: 240px;
  height: 192px;
}

.imgIconosAsesoramiento {
  height: 20px;
  width: 20px;
}

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