@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Poppins:wght@200;300;400;500&display=swap');

:root {

  --azulClaro: rgb(105, 144, 216);
  --azulMedio: rgb(36, 105, 235);
  --azulOscuro: rgb(12, 77, 197);
  --grisClaro: rgb(247, 247, 247);
  --blanco: #ffffff; 
  --negro: #000000;

  --fuente-headings: 'Playfair Display', sans-serif;
  --fuente-parrafos: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--fuente-parrafos);
}

a {
  text-decoration: none;
}

p {
  font-weight: 300;
  margin-bottom: 0px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fuente-headings);
}

h3 {
  font-size: 3.5rem;
  font-weight: 100;
}

/* UTILIDADES */

.resaltar {
  font-weight: 700;
}

.contenedor {
  width: 95%;
  margin: 0 auto;
}

.top {
  object-position: top;
}
.right {
  object-position: right;
}
.bottom {
  object-position: bottom;
}
.left {
  object-position: left;
}


/* HEADER */

.header {
  display: flex;
  justify-content: center;
}

.name-container {
  padding: 2rem 1rem;
  margin-top: 0.5em;
  color: var(--blanco);
  border-radius: 10px;
  background: rgb(18,90,162);
  background: linear-gradient(to top, #5289d0, #0043bc);
}

@media (max-width: 430px) {
  .name-container {
    width: 90%;
  }
}

.name-container h1 {
  font-size: 2.5em;
  font-weight: 200;
  text-align: center;
}

.name-container h3 {
  margin-top: 1rem;
  font-size: 1.5em;
  font-weight: 100;
  text-align: center;
}


/* FLYER */

.flyer {
  padding-block: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.flyer .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background-color: #f1f3ff;
  width: 80%;
  justify-content: center;
}

@media (max-width: 768px) {
  .flyer .container {
    display: block;
  }
}

.flyer .container .image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  max-height: 750px;
  -o-object-fit: cover;
     object-fit: cover;
}
.flyer .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  /*width: 35%;*/
  gap: 1em;
}
.flyer .container .text .top {
  color: #0043bc;
  text-align: center;
  font-size: 1.5em;
}

@media (max-width: 1000px) {
  .flyer .container .text .top {
    font-size: 1.2em;
  }
}

.flyer .container .doctor {
  margin-bottom: 3rem;
}

.flyer .container .doctor h3 {
  text-align: center;
}

@media (max-width: 1000px) {
  .flyer .container .doctor {
    margin-bottom: 4rem;
  }

  .flyer .container .doctor h3 {
    font-size: 2.5em;
  }
}

.flyer .container .text .footer {
  position: absolute;
  bottom: 15px;
  font-weight: 400;
  font-size: 1.5em;
  color: var(--blanco);
  background-color: var(--azulOscuro);
  padding: 5px 8px;
  border-radius: 10px;
}


/* CARDS */

.section-uno {
  padding-block: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2em;
}
.section-uno h2 {
  text-align: left;
  width: 80%;
  font-size: 2em;
  font-weight: 100;
}
.section-uno .cards {
  width: 80%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4em 10%;
}
.section-uno .cards .card {
  min-width: 400px;
  max-width: 700px;
  width: 45%;
  background-color: #f1f3ff;
  display: flex;
  flex-direction: column;
}

.section-uno .cards .card .image {
  width: 100%;
  height: 280px;
  background-color: royalblue;
}
@media (min-width: 1000px) {
  .section-uno .cards .card .image {
    min-height: 400px;
  }
}

.section-uno .cards .card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-uno .cards .card .text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 1.5em;
  gap: 2em;
  text-align: center;
}
.section-uno .cards .card .text .title {
  font-size: 2em;
}
.section-uno .cards .card .text .description {
  line-height: 1.5;
  font-size: 1.15em;
}


/* CURRICULUM */

.section-cv {
  background-color: #2268ea;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-cv h4 {
  width: 80%;
  padding-block: 2em;
  color: white;
  letter-spacing: 2px;
}
.grid {
  width: 95%;
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /*grid-template-rows: repeat(6, 1fr);*/
  /*grid-template-areas: "box1 box1 box2 box2 box2" "box1 box1 box2 box2 box2" "box3 box3 box4 box4 box4" "box5 box5 box4 box4 box4" "box6 box6 box7 box7 box7" "box6 box6 box7 box7 box7";*/
}

@media (max-width: 768px) {
  .grid {
    display: block;
    grid-template-columns: none;
    gap: none;
  }
}

/*.section-cv .grid*/.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  gap: 2em;
  text-align: center;
  line-height: 1.5;
  padding: 1em;
}

.section-cv img {
  width: 80%;
  max-height: 500px;
  object-fit: cover;
}

.ultima-fila {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

#especialidades {
  display: flex;
  align-items: unset;
}

@media (max-width: 768px) {
  .ultima-fila {
    grid-template-columns: 1fr;
  }

  .ultima-fila .text {
    max-width: 500px;
    text-overflow: clip;
  }

  #especialidades {
    display: flex;
    align-items: center;
  }
}

.ultima-fila p {
  text-align: left;
}

.section-cv .grid .box h3 {
  font-size: 2.8rem;
  font-weight: 200;
}

.section-cv .grid .box .subtitle {
  font-weight: 600;
  font-size: 1.2rem;
}

.section-cv .grid .box .text {
  font-size: 1.2rem;
  font-weight: 300;
}

@media (max-width: 1000px) {
  .section-cv .grid .box h3 {
    font-size: 2.4rem;
    font-weight: 100;
  }
  
  .section-cv .grid .box .subtitle {
    font-weight: 600;
    font-size: 1rem;
  }
  
  .section-cv .grid .box .text {
    font-size: 1rem;
    font-weight: 300;
  }
}


/* SECTION HUMAN */

.section-human h4 {
  width: 85%;
  margin: auto;
  font-size: 2em;
  padding-block: 3em 1em;
  font-weight: 100;
}
.section-human h2 {
  font-size: 3em;
  padding-bottom: 1em;
  text-align: center;
}
.section-human .cards {
  width: 85%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3em;
  margin: auto;
  margin-top: 20px;
}
.section-human .cards .card {
  background-color: #f1f3ff;
  width: 320px;
  display: flex;
  flex-direction: column;
  color: black;
}
.section-human .cards .card .image {
  background-color: #511092;
  width: 100%;
  aspect-ratio: 1;
}
.section-human .cards .card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.section-human .cards .card .text {
  text-align: left;
  padding: 0 0.5em;
}
.section-human .cards .card .text .title {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  flex-basis: 25%;
  justify-content: center;
  align-items: center;
  font-size: 1.25em;
  font-weight: 600;
}
.section-human .cards .card .text .description {
  font-size: 1.05em;
  flex-basis: 75%;
  padding: 0 1.5em;
  color: #707070;
  padding-bottom: 1rem;
}


/* INGRESO HUMAN */

.section-ingreso-human {
  color: var(--blanco);
  background: rgb(18,90,162);
  background: linear-gradient(0deg, rgb(105, 144, 216) 0%, rgb(36, 105, 235) 50%);
  margin-top: 4rem;
}

.section-ingreso-human h3 {
  font-size: 2.8rem;
}

.section-ingreso-human h4 {
  font-size: 2rem;
}

.section-ingreso-human-doctor {
  font-family: var(--fuente-parrafos);
  font-size: 1.4rem;
  font-weight: 100;
  padding: 2rem 0rem 2rem 1rem;
}

.section-ingreso-human-titulo {
  text-align: center;
  font-weight: 200;
  padding-bottom: 1rem;
}

.section-ingreso-human .box {
  justify-content: center;
}

.section-ingreso-human .texto {
  font-size: 1.5em;
  font-weight: 100;
}

.section-ingreso-human img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.section-ingreso-human p {
  color: var(--blanco);
  font-size: 1.2rem;
}

.section-ingreso-human button {
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1rem 0.5rem;
  color: var(--azulOscuro);
  background-color: var(--blanco);
  border: none;
  border-radius: 15px;
}

.section-ingreso-human button:hover {
  cursor: pointer;
  background-color: var(--grisClaro);
  color: var(--azulMedio);
}

.texto-resaltado {
  border-radius: 5px;
  padding: 3px;
  color: var(--azulOscuro);
  background-color: var(--blanco);
}

@media (max-width: 1000px) {
  .section-ingreso-human h3 {
    font-size: 1.4em;
    font-weight: 500;
  }
  
  .section-ingreso-human h4 {
    font-size: 1em;
    font-weight: 400;
  }

  .section-ingreso-human p {
    font-size: 1em;
    font-weight: 300;
  }
}


/* FOOTER */

.section-comunicate {
  padding: 3em 1em 0em 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 3em;
}
.section-comunicate h4 {
  color: var(--azulMedio);
  letter-spacing: 8px;
  font-family: var(--fuente-parrafos);
  font-size: 1.4rem;
  font-weight: 400;
  width: 90%;
}
.section-comunicate .title {
  text-align: center;
  font-size: 2em;
}
.section-comunicate img {
  width: 300px;
}
.section-comunicate .subtitle {
  font-size: 2em;
}
.section-comunicate .text {
  color: #707070;
  font-size: 1.25em;
}

#footer {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 3rem;
  margin-top: 1rem;
  background-color: var(--azulOscuro);
}
#footer p {
  font-size: 1.8rem;
  color: var(--blanco);
}/*# sourceMappingURL=style.css.map */