@charset "UTF-8";
@import url("https://use.typekit.net/wwf6sdi.css");
/*! ---- RESET ----*/
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "commuters-sans";
}

/*! ----- HEADER -----*/
header nav div a img {
  width: 64px;
}
header nav div span {
  color: #ffffff;
}
header .menu-color {
  background-color: #0e1429;
}
header .nav-link {
  color: #ffffff !important;
}
header .nav-link:hover {
  color: #1ba7a6 !important;
}
header .navbar-toggler {
  border-color: #ffffff;
}

.index-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, minmax(400px, auto));
  /* Altura flexible */
  align-items: center;
  grid-template-areas: "hero hero hero" "metodologia metodologia metodologia" "valores valores valores" "suscripcion suscripcion suscripcion";
}
.index-main .hero {
  background-color: #0e1429;
  color: #ffffff;
  grid-area: hero;
  min-height: 400px;
  display: flex;
  justify-content: center;
  padding-left: 60px;
  padding-right: 20px;
}
.index-main .hero .row {
  align-items: first baseline;
  justify-content: space-evenly;
}
.index-main .hero .row div h2 {
  text-align: left;
  color: #1ba7a6;
  font-weight: 600;
}
.index-main .hero .row div h2 span {
  animation: transformation 1s;
}
@keyframes transformation {
  0% {
    font-size: 0%;
  }
  50% {
    font-size: 150%;
  }
  100% {
    font-size: 100%;
  }
}
.index-main .hero .row div p {
  text-align: left;
  margin-bottom: 15px;
  margin-top: 15px;
}
.index-main .hero .row div a {
  background-color: #1ba7a6;
  text-decoration: none;
  color: #0e1429;
  font-size: 16px;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  transition: 0.5s;
}
.index-main .hero .row div a:hover {
  background-color: #ffff00;
}
.index-main .hero .row div .recursos {
  color: #1ba7a6;
  font-size: 12px;
}
.index-main .hero .row div div img {
  max-width: 500px;
}
.index-main .metodologia {
  grid-area: metodologia;
}
.index-main .metodologia h2 {
  text-align: center;
  color: #0e1429;
  font-weight: 800;
}
.index-main .metodologia .grid-met {
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
}
.index-main .metodologia .grid-met div img {
  width: 333.33px;
  margin: 10px;
}
.index-main .valores {
  grid-area: valores;
  background-color: #1ba7a6;
  display: flex;
  /* Establece el contenedor como un contenedor flexible */
  flex-direction: column;
  /* Organiza los elementos en el eje que estamos trabajando */
  justify-content: center;
  min-height: 400px;
}
.index-main .valores .col-lg-4,
.index-main .valores .col-md-6,
.index-main .valores .col-sm-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.index-main .valores h2 {
  text-align: center;
  margin-top: 20px;
  color: #ffffff;
  font-weight: 800;
}
.index-main .valores div {
  text-align: center;
  padding: 20px;
}
.index-main .valores div div img {
  width: 50px;
}
.index-main .valores div div h3 {
  color: #0e1429;
  width: 100%;
}
.index-main .valores div div p {
  font-size: 14px;
  width: 100%;
}
.index-main .suscripcion {
  grid-area: suscripcion;
  min-width: 400px;
}
.index-main .suscripcion .susc-elementos {
  justify-content: space-evenly;
}
.index-main .suscripcion .susc-elementos .quiero {
  width: 400px;
}
.index-main .suscripcion .susc-elementos .quiero h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1ba7a6;
  text-align: left;
}
.index-main .suscripcion .susc-elementos .quiero h3 {
  color: #0e1429;
  font-size: 18px;
  font-weight: 300;
}

.contacto-items {
  padding: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  background-color: #ffffff;
}
.contacto-items div h1 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #0e1429;
}
.contacto-items div p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.contacto-items div button {
  margin-bottom: 2rem;
}
.contacto-items div h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #0e1429;
}
.contacto-items div form {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.contacto-items div form div {
  margin-bottom: 1.5rem;
}
.contacto-items div form div label {
  display: block;
  margin-bottom: 0.5rem;
}
.contacto-items div form div input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #0e1429;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.contacto-items div form div input:focus {
  border-color: #147b7a;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.contacto-items div .form-floating textarea {
  height: 100px;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #0e1429;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.contacto-items div .form-floating textarea:focus {
  border-color: #147b7a;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.contacto-items div .form-group div button {
  width: 100%;
  padding: 0.75rem;
  background-color: #1ba7a6 !important;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  --bs-btn-border-color: none !important ;
}

@keyframes fadeInBackground {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.curso-presentacion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  background-image: url(../img/barbie-senala-4.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  border-bottom: 4px solid #0e1429;
  opacity: 0;
  animation: fadeInBackground 1s ease-in-out forwards;
}

.caos {
  font-weight: 800;
  font-size: 40px;
  color: #1ba7a6;
  padding-top: 120px;
  text-align: left;
  display: block;
  visibility: hidden;
}

.primer-curso {
  text-align: left;
  font-size: 24px;
  padding-top: 40px;
  padding-left: 150px;
  font-weight: 700;
  color: #0e1429;
}

.el-primer {
  text-decoration: underline;
  text-align: right;
}

.solo {
  max-width: 900px;
  padding-left: 150px;
  text-align: center;
  font-size: 35px;
}

.vivir {
  text-decoration: line-through;
}

.quiero-empren {
  background-color: #1ba7a6;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  padding: 15px;
  margin-left: 150px;
  margin-bottom: 40px;
  border-radius: 5px;
  transition: 0.5s;
}
.quiero-empren:hover {
  background-color: #0e1429;
}

.frase {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  background-image: url(../img/fondo-plan-gestion.png);
  background-repeat: no-repeat;
  background-size: center;
}

.tu-hora {
  max-width: 800px;
  text-align: center;
  font-weight: 800;
  font-size: 40px;
}

.salir {
  background-color: #1ba7a6;
  padding: 2px;
  color: #ffffff;
}

.social-links {
  display: flex;
  flex-direction: column;
}

.titulo {
  text-align: center;
  font-weight: 800;
  font-size: 26px;
  color: #1ba7a6;
  margin: 20px;
}

.escucha {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.spotify, .apple, .yutu {
  font-weight: 600;
  color: #0e1429;
  text-decoration: underline;
  font-size: 16px;
  text-align: center;
  margin: 10px;
}

.yt {
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.laprofe {
  display: flex;
  flex-direction: row;
  justify-content: right;
  margin-top: 40px;
  border-bottom: 4px solid #0e1429;
  background-image: url(../img/profe-con-laptop.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
}

.presentacion {
  margin: 15px;
  padding-right: 80px;
  max-width: 900px;
}

.hola-bienve {
  padding: 15px;
}

.hola {
  color: #1ba7a6;
  text-align: left;
  font-size: 22px;
  font-weight: 800;
}

.trayectoria {
  background-color: #0e1429;
  border-radius: 10px;
  padding: 25px;
}

.foto-laptop {
  visibility: none;
}

.title-trayectoria {
  color: #1ba7a6;
  text-align: left;
  font-size: 22px;
  font-weight: 800;
}

.soy {
  color: #ffffff;
}

p {
  font-weight: 500;
}

.soy-barb {
  font-size: 18px;
  font-weight: 600;
}

.explicacion {
  display: flex;
  gap: 50px;
  justify-content: space-around;
  margin: 40px;
}

.que-encontrar {
  background-color: #1ba7a6;
  border-radius: 10px;
  padding: 45px;
  max-width: 500px;
}

.dirigido {
  background-color: rgba(255, 255, 0, 0.775);
  border-radius: 10px;
  padding: 25px;
  max-width: 500px;
  align-items: center;
}

h4 {
  font-weight: 700;
  color: #0e1429;
}

footer {
  background-color: #0e1429;
  width: 100%;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
footer div ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
footer div li a {
  margin-inline: 20px;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}
footer div li a:hover {
  color: #1ba7a6 !important;
}
footer div li img {
  height: 30px;
  text-decoration: none;
}
footer .decorative-line {
  width: 400px;
  height: 1px;
  /* Altura de la línea */
  background-color: #ffffff;
  /* Color de la línea */
  margin: 10px 0;
  /* Espaciado opcional */
}
footer div a {
  text-decoration-line: none;
}
footer div i {
  font-size: 25px;
  margin-inline: 40px;
  color: #ffffff;
}
footer div i:hover {
  color: #1ba7a6 !important;
}

/*! --- INDEX ----*/
@media (min-width: 768px) {
  .hero {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 991.98px) {
  /* A partir de pantallas md y menores (es decir, hasta 991.98px), se oculta la imagen */
  .content-image {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .valores p {
    max-width: 450px;
  }
}
@media (max-width: 1200px) {
  .metodologia {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .metodologia {
    padding: 40px 0;
  }
}
@media (max-width: 576px) {
  .metodologia {
    padding: 30px 0;
  }
}

@media (max-width: 1200px) {
  .suscripcion {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .suscripcion {
    padding: 40px 30px;
  }
  .suscripcion .susc-elementos {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .suscripcion {
    padding: 30px 30px;
  }
  .suscripcion .susc-elementos {
    flex-direction: column;
  }
  .suscripcion h2 {
    font-size: 1.8rem;
  }
  .suscripcion h3 {
    font-size: 1.1rem;
  }
}

/*! --- EL CURSO ----*/
@media (max-width: 767px) {
  .curso-presentacion {
    padding: 1rem;
    background-image: none;
  }
  .curso-presentacion .caos {
    visibility: visible;
    font-size: 38px;
    text-align: center;
    padding-top: 40px;
  }
  .curso-presentacion .primer-curso {
    font-size: 26px;
    text-align: center;
    padding: 10px;
  }
  .curso-presentacion .solo {
    padding: 5px;
    margin: 0;
  }
  .curso-presentacion .quiero-empren {
    font-size: 14px;
    margin: 0 auto;
    margin-top: 20px;
  }
  .curso-presentacion .quiero-empren:hover {
    background-color: #0e1429;
  }
  .frase {
    padding: 2rem;
  }
  .frase .tu-hora {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .curso-presentacion {
    padding: 1.5rem;
  }
  .curso-presentacion .caos {
    font-size: 32px;
    padding-top: 80px;
  }
  .curso-presentacion .primer-curso {
    font-size: 20px;
  }
  .curso-presentacion .quiero-empren {
    font-size: 15px;
  }
  .curso-presentacion .quiero-empren:hover {
    background-color: #0e1429;
  }
  .frase {
    padding: 1.5rem;
  }
  .frase .tu-hora {
    font-size: 32px;
  }
}
/*! --- LA PROFE ----*/
@media (max-width: 768px) {
  .laprofe {
    background-image: none;
  }
}

@media (max-width: 768px) {
  .presentacion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 10px;
  }
}

@media (max-width: 1200px) {
  .explicacion {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .explicacion {
    display: flex;
    flex-direction: column;
  }
}

/*! --- GRATIS ----*/
@media (max-width: 768px) {
  .escucha {
    flex-direction: column;
    padding-right: 40px;
    padding-left: 40px;
    gap: 20px;
  }
  .yt {
    position: relative;
    padding-bottom: 56.25%;
    margin-top: 20px;
    /* Proporción de 16:9 (altura / ancho * 100) */
    height: 0;
    max-width: 100%;
  }
  .yt iframe {
    margin-top: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
}
/*! --- CONTACTO ----*/
@media (max-width: 768px) {
  .contacto-items {
    flex-direction: column;
    padding: 2rem;
    max-width: 100%;
  }
  .contacto-items div h1,
  .contacto-items div p,
  .contacto-items div h2 {
    font-size: 1rem;
  }
  .contacto-items div form {
    max-width: 100%;
    padding: 0.5rem;
  }
  .contacto-items div form input,
  .contacto-items div form textarea {
    padding: 0.5rem;
  }
  .contacto-items div form .form-group button {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    box-sizing: border-box;
  }
}
/*! --- FOOTER ----*/
@media (max-width: 991.98px) {
  .flex-container {
    flex-direction: column;
    align-items: center;
  }
  .flex-container div {
    flex-direction: column;
    text-align: center;
  }
  .flex-container ul {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .decorative-line {
    width: 100px;
    /* Reducir el ancho de la línea en dispositivos pequeños */
  }
}
/*! --- CONTACTO ----*/
@media (min-width: 768px) {
  .contacto-items {
    flex-direction: row;
    gap: 3rem;
    text-align: left;
  }
  form {
    width: 80%;
  }
}/*# sourceMappingURL=estilos.css.map */