
:root {

  /**
   * coloress
   */

  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --yellow: #ecd100;

  /**
   * tipografia
   */

  --ff-archivo: "Archivo", sans-serif;
  
  --headline-lg: 5rem;
  --headline-md: 3rem;
  --headline-sm: 2rem;
  --title-lg: 1.8rem;
  --title-md: 1.5rem;
  --title-sm: 1.4rem;
  
  --fw-500: 500;
  --fw-700: 700;



  --section-padding: 120px;



  --shadow-1: 0px 2px 20px hsla(209, 36%, 72%, 0.2);
  --shadow-2: 0 4px 16px hsla(0, 0%, 0%, 0.06);



  --radius-circle: 50%;
  --radius-12: 12px;
  --radius-6: 6px;
  --radius-4: 4px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}


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

li { list-style: none; }

a,
img,
time,
input,
button,
ion-icon { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-size: 10px;
  font-family: var(--ff-rubik);
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.8;
  overflow: hidden;
  font-family: var(--ff-archivo);
}

body.loaded { overflow-y: visible; }

body.nav-active { overflow: hidden; }




.container { padding-inline: 16px; }

.headline-lg {
  font-size: var(--headline-lg);
  color: var(--white);
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.headline-md {
  font-size: var(--headline-md);
  font-weight: var(--fw-700);
}

.headline-lg,
.headline-md { font-family: var(--ff-oswald); }

.headline-md,
.headline-sm { line-height: 1.3; }

.headline-md,
.headline-sm { color: var(--midnight-green); }

.headline-sm { font-size: var(--headline-sm); }

.title-lg { font-size: var(--title-lg); }

.title-md { font-size: var(--title-md); }

.title-sm { font-size: var(--title-sm); }

.social-list { display: flex; }

.section { padding-block: var(--section-padding); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.btn {
  background-color: var(--verdigris);
  color: var(--white);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--eerie-black);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btn:is(:hover, :focus-visible)::before { transform: translateX(100%); }

.w-100 { width: 100%; }

.grid-list {
  display: grid;
  gap: 40px 28px;
}

.text-center { text-align: center; }

[data-reveal] {
  opacity: 0;
  transition: var(--transition-2);
}

[data-reveal].revealed { opacity: 1; }

[data-reveal="bottom"] { transform: translateY(50px); }

[data-reveal="bottom"].revealed { transform: translateY(0); }

[data-reveal="left"] { transform: translateX(-50px); }

[data-reveal="right"] { transform: translateX(50px); }

[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: translateX(0); }





/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--verdigris);
  display: grid;
  place-items: center;
  z-index: 6;
  transition: var(--transition-1);
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}

.preloader .circle {
  width: 50px;
  height: 50px;
  border: 4px solid var(--white);
  border-radius: var(--radius-circle);
  border-block-start-color: transparent;
  animation: rotate360 1s ease infinite;
}

@keyframes rotate360 {
  0% { transform: rotate(0); }
  100% { transform: rotate(1turn); }
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 16px;
  z-index: 4;
}

.header.active {
  position: fixed;
  background-color: #000;
  animation: headerActive 0.5s ease forwards;
}

@keyframes headerActive {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-open-btn {
  color: var(--white);
  font-size: 4rem;
}

.navbar,
.overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}

.navbar {
  right: -300px;
  max-width: 300px;
  background-color: var(--rich-black-fogra-29);
  z-index: 3;
  transition: 0.25s var(--cubic-in);
  visibility: hidden;
}

.navbar.active {
  transform: translateX(-300px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  position: relative;
  padding-inline: 25px;
  padding-block: 55px 100px;
}

.nav-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--white);
  font-size: 2.8rem;
}

.navbar-list {
  margin-block-end: 30px;
  border-block-end: 1px solid var(--white_a10);
}

.navbar-item { 
  border-block-start: 1px solid var(--white_a10); 
}

.navbar-item > a {
  transition: all 500ms ease;
  font-size: 13px;
}

.navbar-item:hover > a {
  color: var(--yellow);
}

.navbar-link {
  color: var(--white);
  text-transform: uppercase;
  padding: 10px 24px;
}

.social-list {
  justify-content: center;
  gap: 20px;
  color: var(--white);
  font-size: 1.8rem;
}

.overlay {
  right: -100%;
  background-color: var(--black);
  opacity: 0.3;
  visibility: hidden;
  transition: var(--transition-2);
  z-index: 2;
}

.overlay.active {
  transform: translateX(-100%);
  visibility: visible;
}

/*-----------------------------------*\
  #BODY
\*-----------------------------------*/

span {
  color: var(--yellow);
}

.banner-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.texto-container-banner {
  color: #fff;
}

.texto-container-banner > h1 {
  font-size: 70px;
  line-height: 60px;
  font-weight: 500;
  text-align: center;
}

.texto-container-banner > a {
  width: 60%;
  border: solid var(--yellow) 1px;
  padding: 10px 10px;
  text-align: center;
  margin-top: 50px;
  margin-inline: auto;
  transition: all 500ms ease;
  font-size: 13px;
}

.texto-container-banner > a:hover {
  background-color: var(--yellow);
}

.img-container-banner > img {
  width: 100%;
}

.trayectoria-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-container-trayectoria {
  width: 50%;
}

.img-container-trayectoria > img {
  width: 70%;
  margin-inline: auto;
  border: solid var(--yellow) 1px;
}

.texto-trayectoria-container {
  width: 50%;
}

.texto-trayectoria-container > h3 {
  font-size: 25px;
}

.texto-trayectoria-container > h4 {
  font-size: 15px;
  line-height: 17px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 50px;
}

.texto-trayectoria-container > p {
  width: 90%;
  font-size: 15px;
  line-height: 17px;
  margin-top: 80px;
}

.logros-section {
  position: relative;
}

.img-bg-logros {
  position: absolute;
  z-index: -1;
  width: 100%;
}

.first-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  margin-top: 100px;
}

.texto-first-grid {
  margin-inline: auto;
}

.texto-first-grid h2 {
  line-height: 30px;
}

.texto-first-grid p {
  font-size: 15px;
  line-height: 17px;
  margin-top: 40px;
}

.img-first-grid-container > img {
  width: 65%;
  margin-inline: auto;
  border: solid 1px var(--yellow);
}

.second-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  margin-top: 40px;
}

.texto-second-grid h2 {
  line-height: 30px;
}

.texto-second-grid p {
  font-size: 15px;
  line-height: 17px;
  margin-top: 40px;
}

.img-second-grid-container > img {
  width: 65%;
  margin-inline: auto;
  border: solid 1px var(--yellow);
}

.libro-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-libro-container {
  position: relative;
  width: 45%;
}

.img-libro-container > img {
  width: 100%;
}

.img-libro-container .firma-michel {
  position: absolute;
  width: 35%;
  top: 85%;
  left: 55%;
}

.texto-libro-container {
  width: 55%;
}

.texto-libro-container {
  text-align: center;
}

.texto-libro-container > h2 {
  font-size: 70px;
  line-height: 60px;
  font-weight: 500;
}

.texto-libro-container > p {
  width: 80%;
  font-size: 15px;
  line-height: 17px;
  margin-inline: auto;
  margin-block: 30px;
}

.texto-libro-container > a {
  width: 50%;
  border: solid var(--yellow) 1px;
  padding: 10px 10px;
  text-align: center;
  margin-top: 30px;
  margin-inline: auto;
  transition: all 500ms ease;
  font-size: 13px;
}

.active {
  color: var(--yellow);
}

.texto-libro-container > a:hover {
  background-color: var(--yellow);
}

.curso-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.curso-section > h2 {
  text-align: center;
  font-size: 65px;
  font-weight: 500;
}

.img-curso-container {
  width: 35%;
  position: relative;
}

.img-curso-container > img {
  width: 100%;
  border: solid 1px var(--yellow);
}

.texto-curso-absolute {
  position: absolute;
}

.texto-absolute-1 {
  top: 7%;
  left: 50%;
  margin-left: -145px;
  font-size: 24px;
  font-weight: bold;
}

.texto-absolute-2 {
  top: 50%;
  left: 50%;
  margin-top: -10%;
  margin-left: -190px;
  font-size: 35px;
  line-height: 35px;
  font-weight: bolder;
  text-align: center;
}

.texto-absolute-3 {
  width: 80%;
  top: 83%;
  left: 50%;
  margin-left: -150px;
  text-align: center;
  font-size: 15px;
  line-height: 15px;
  font-weight: 600;
}

.texto-curso-container {
  width: 65%;
}

.texto-curso-container > h3 {
  font-size: 25px;
  line-height: 25px;
  font-weight: 500;
}

.texto-curso-container > p {
  font-size: 15px;
  line-height: 17px;
  margin-block: 30px;
}

.texto-curso-container > a {
  width: 55%;
  border: solid var(--yellow) 1px;
  padding: 10px 10px;
  text-align: center;
  margin-top: 15px;
  transition: all 500ms ease;
  font-size: 15px;
}

.texto-curso-container > a:hover {
  background-color: var(--yellow);
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  color: var(--white);
  border-top: solid 1px var(--yellow);
}

.footer-icons-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons-text-container > p {
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
}

.footer-icons-container > a > img {
  width: 40px;
}

.firma-michel-logo > a > img {
  width: 200px;
}

.footer-agendemos-container {
  text-align: end;
  font-size: 15px;
}

.footer-agendemos-container > p:first-of-type {
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-agendemos-container > p:not(:first-of-type) {
  margin-block: -10px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding-block-end: 60px;
}

.powered-container {
  font-size: 12px;
  display: flex;
  gap: 3px;
}

.powered-container > img {
  width: 45px;
}

.aviso-privacidad-container {
  display: flex;
  gap: 70px;
}

.aviso-privacidad-container > a {
  font-size: 12px;
}

.footer-brand {
  background-color: var(--ming);
  padding: 32px;
  border-radius: var(--radius-6);
}

.footer .logo { margin-block-end: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-block-start: 12px;
}

.contact-item .item-icon { font-size: 4rem; }

.contact-link {
  display: inline;
  transition: var(--transition-1);
}

.contact-link:is(:hover, :focus-visible) { color: var(--verdigris); }

.footer-list-title {
  color: var(--white);
  font-weight: var(--fw-700);
  margin-block-end: 20px;
}

.footer .text { opacity: 0.7; }

.footer .address {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-start: 20px;
}

.footer .address ion-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.footer-link {
  margin-block-start: 8px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) { color: var(--verdigris); }

.footer-form .input-field {
  color: var(--white);
  border: 1px solid var(--white_a20);
  border-radius: var(--radius-4);
  padding: 8px 20px;
}

.footer-form .input-field::placeholder { color: inherit; }

.footer-form .btn {
  width: 100%;
  justify-content: center;
  margin-block: 12px 28px;
}

.footer-bottom {
  padding-top: 32px;
  padding-bottom: -10px;
  border-block-start: 1px solid var(--white_a20);
}

.footer-bottom .social-list {
  justify-content: flex-start;
  gap: 8px;
  margin-block-start: 16px;
}

.footer-bottom .social-link {
  font-size: 1.4rem;
  padding: 12px;
  background-color: var(--white_a10);
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.footer-bottom .social-link:is(:hover, :focus-visible) { background-color: var(--verdigris); }





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--verdigris);
  color: var(--white);
  padding: 16px;
  font-size: 2rem;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
  z-index: 3;
}

.back-top-btn:is(:hover, :focus-visible) { background-color: var(--eerie-black); }

.back-top-btn.active {
  transform: translateY(-10px);
  opacity: 1;
}





/*-----------------------------------*\
  #MEDIA 
\*-----------------------------------*/

@media (min-width: 300px) and (max-width: 399px) {
  :root {
    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }
  .container {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }

  .section {
    padding-block: 84px;
  }

  .banner-container {
    display: grid;
    grid-template-columns: none;
  }

  .img-container-banner {
    grid-row: 1 / 2;
  }

  .texto-container-banner > h1 {
    font-size: 40px;
    line-height: 40px;
  }

  .texto-container-banner > a {
    margin-top: 30px;
    width: 90%;
  }

  .trayectoria-container {
    display: block;
  }

  .img-container-trayectoria {
    width: 100%;
  }

  .texto-trayectoria-container {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .texto-trayectoria-container > p {
    text-align: justify;
    margin-inline: auto;
    margin-top: 0;
    white-space: initial;
  }

  .logros-section {
    overflow: hidden;
  }

  .img-bg-logros {
    width: 500%;
  }

  .first-grid {
    display: grid;
    grid-template-columns: none;
  }

  .img-first-grid-container {
    grid-row: 1 / 2;
  }

  .texto-first-grid {
    margin-top: 30px;
  }

  .texto-first-grid > h2 {
    text-align: center;
    font-size: 18px;
    line-height: 18px;
  }

  .texto-first-grid > p {
    text-align: justify;
    white-space: initial;
  }

  .second-grid {
    display: block;
    margin-top: 90px;
  }

  .texto-second-grid {
    margin-top: 30px;
  }

  .texto-second-grid > h2 {
    text-align: center;
    font-size: 16px;
    line-height: 16px;
  }

  .texto-second-grid > p {
    text-align: justify;
    white-space: initial;
  }

  .libro-container {
    display: block;
  }

  .img-libro-container {
    width: 100%;
  }

  .texto-libro-container {
    width: 100%;
  }

  .texto-libro-container > h2 {
    font-size: 35px;
    line-height: 35px;
  }

  .texto-libro-container > p {
    text-align: justify;
    width: 100%;
    white-space: unset;
  }

  .texto-libro-container > a {
    width: 100%;
    margin-top: 0;
  }

  .curso-section > h2 {
    font-size: 35px;
    line-height: 35px;
  }

  .curso-container {
    width: 100%;
    display: block;
  }

  .img-curso-container {
    width: 100%;
    margin-top: 30px;
  }

  .texto-absolute-2 {
    top: 50%;
    left: 50%;
    margin-top: -10%;
    margin-left: -170px;
    font-size: 35px;
    line-height: 35px;
    font-weight: bolder;
    text-align: center;
  }
  
  .texto-absolute-3 {
    width: 90%;
    top: 83%;
    left: 50%;
    margin-left: -45%;
    text-align: center;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
  }

  .texto-curso-container {
    width: 100%;
    text-align: center;
  }

  .texto-curso-container > h3 {
    font-size: 20px;
    line-height: 21px;
    margin-top: 30px;
  }

  .texto-curso-container > p {
    text-align: justify;
    margin-block: 30px;
    white-space: initial;
  }

  .texto-curso-container > a {
    width: 90%;
    margin-inline: auto;
    margin-top: 30px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }

  .footer-agendemos-container {
    text-align: center;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
    

  .header .btn { display: block; }

  .nav-open-btn { margin-inline-start: auto; }

  .header .container { gap: 40px; }



  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1fr 1fr; }

  .footer-brand { grid-column: 1 / 3; }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  /* .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  } */

  .footer-bottom .social-list { margin-block-start: 0; }

}

@media (min-width: 400px) and (max-width: 767px) {
  :root {
    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }
  .container {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }

  .section {
    padding-block: 84px;
  }

  .banner-container {
    display: grid;
    grid-template-columns: none;
  }

  .img-container-banner {
    grid-row: 1 / 2;
  }

  .texto-container-banner > h1 {
    font-size: 40px;
    line-height: 40px;
  }

  .texto-container-banner > a {
    margin-top: 30px;
    width: 90%;
  }

  .trayectoria-container {
    display: block;
  }

  .img-container-trayectoria {
    width: 100%;
  }

  .texto-trayectoria-container {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .texto-trayectoria-container > p {
    text-align: justify;
    margin-inline: auto;
    margin-top: 0;
    white-space: initial;
  }

  .logros-section {
    overflow: hidden;
  }

  .img-bg-logros {
    width: 500%;
  }

  .first-grid {
    display: grid;
    grid-template-columns: none;
  }

  .img-first-grid-container {
    grid-row: 1 / 2;
  }

  .texto-first-grid {
    margin-top: 30px;
  }

  .texto-first-grid > h2 {
    text-align: center;
    font-size: 18px;
    line-height: 18px;
  }

  .texto-first-grid > p {
    text-align: justify;
    white-space: initial;
  }

  .second-grid {
    display: block;
    margin-top: 90px;
  }

  .texto-second-grid {
    margin-top: 30px;
  }

  .texto-second-grid > h2 {
    text-align: center;
    font-size: 16px;
    line-height: 16px;
  }

  .texto-second-grid > p {
    text-align: justify;
    white-space: initial;
  }

  .libro-container {
    display: block;
  }

  .img-libro-container {
    width: 100%;
  }

  .texto-libro-container {
    width: 100%;
  }

  .texto-libro-container > h2 {
    font-size: 35px;
    line-height: 35px;
  }

  .texto-libro-container > p {
    text-align: justify;
    width: 100%;
    white-space: unset;
  }

  .texto-libro-container > a {
    width: 100%;
    margin-top: 0;
  }

  .curso-section > h2 {
    font-size: 35px;
    line-height: 35px;
  }

  .curso-container {
    width: 100%;
    display: block;
  }

  .img-curso-container {
    width: 100%;
    margin-top: 30px;
  }

  .texto-absolute-2 {
    top: 50%;
    left: 50%;
    margin-top: -10%;
    margin-left: -195px;
    font-size: 35px;
    line-height: 35px;
    font-weight: bolder;
    text-align: center;
  }
  
  .texto-absolute-3 {
    width: 80%;
    top: 83%;
    left: 50%;
    margin-left: -40%;
    text-align: center;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
  }

  .texto-curso-container {
    width: 100%;
    text-align: center;
  }

  .texto-curso-container > h3 {
    font-size: 20px;
    line-height: 21px;
    margin-top: 30px;
  }

  .texto-curso-container > p {
    text-align: justify;
    margin-block: 30px;
    white-space: initial;
  }

  .texto-curso-container > a {
    width: 90%;
    margin-inline: auto;
    margin-top: 30px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }

  .footer-agendemos-container {
    text-align: center;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
    

  .header .btn { display: block; }

  .nav-open-btn { margin-inline-start: auto; }

  .header .container { gap: 40px; }



  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1fr 1fr; }

  .footer-brand { grid-column: 1 / 3; }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  /* .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  } */

  .footer-bottom .social-list { margin-block-start: 0; }

}




@media (min-width: 768px) and (max-width: 1199px) {


  .container { max-width: 768px; margin-inline: auto; }

  .trayectoria-container {
    gap: 40px;
  }

  .img-container-trayectoria > img {
    width: 100%;
  }

  .texto-container-banner > h1 {
    font-size: 47px;
    line-height: 47px;
  }

  .texto-container-banner > a {
    width: 80%;
  }

  .texto-trayectoria-container > h4 {
    margin-bottom: 0;
  }

  .texto-trayectoria-container > p {
    width: 100%;
    margin-top: 30px;
    text-align: justify;
  }

  .texto-libro-container > h2 {
    font-size: 45px;
    line-height: 45px;
  }

  .img-first-grid-container > img {
    width: 80%;
  }

  .texto-first-grid {
    width: 90%;
  }

  .texto-first-grid > h2 {
    font-size: 21px;
    line-height: 21px;
  }

  .texto-first-grid > p {
    margin-top: 20px;
  }

  .img-second-grid-container > img {
    width: 80%;
  }

  .texto-second-grid {
    width: 90%;
  }

  .texto-second-grid > h2 {
    font-size: 21px;
    line-height: 21px;
  }

  .texto-second-grid > p {
    margin-top: 20px;
  }

  .texto-libro-container > a {
    width: 90%;
  }

  .curso-section > h2 {
    font-size: 45px;
    margin-bottom: 40px;
  }

  .curso-container {
    gap: 50px;
  }

  .texto-absolute-1 {
    width: fit-content;
    top: 7%;
    left: 50%;
    margin-left: -43%;
    font-size: 17px;
    font-weight: bold;
  }
  
  .texto-absolute-2 {
    top: 50%;
    left: 50%;
    margin-top: -10%;
    margin-left: -50%;
    font-size: 25px;
    line-height: 25px;
    font-weight: bolder;
    text-align: center;
  }
  
  .texto-absolute-3 {
    width: 100%;
    top: 83%;
    left: 50%;
    margin-left: -50%;
    text-align: center;
    font-size: 11px;
    line-height: 13px;
    font-weight: 600;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }


}



@media (min-width: 1200px) {

  .container { max-width: 1200px; margin-inline: auto; }

  * {
    white-space: initial;
  }

  /**
   * HEADER
   */

  .header { padding-block: 10px; }

  .nav-open-btn,
  .overlay,
  .navbar-top,
  .navbar .social-list { display: none; }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
    display: block;
  }

  .navbar { margin-inline-start: auto; }

  .navbar-list {
    display: flex;
    gap: 8px;
  }

  .navbar-item { border-block-start: none; }

  .navbar-link {
    --title-md: 1.8rem;
    font-weight: var(--fw-500);
    padding-inline: 16px;
    text-transform: capitalize;
  }

  .curso-container {
    margin-top: 50px;
  }

  .texto-curso-container > a {
    margin-top: 50px;
  }
  
  .texto-absolute-2 {
    top: 50%;
    left: 50%;
    margin-top: -15%;
    margin-left: -190px;
    font-size: 35px;
    line-height: 35px;
    font-weight: bolder;
    text-align: center;
  }


  /**
   * FOOTER
   */

  .footer { 
    background-size: auto;
    padding-top: 92px;
    padding-bottom: 40px;
  }

  .footer-top { grid-template-columns: repeat(4, 1fr); }

  .footer-brand {
    grid-column: 1 / 5;
    padding: 28px 56px;
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    align-items: center;
  }

  .footer .logo { margin-block-end: 0; }

  .contact-list { justify-content: space-between; }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
  }

  .contact-list::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--white_a20);
  }

  .contact-item { margin-block-start: 0; }

}