:root {
  --rosado: #a11076;
  --verde: #a5ca18;
  --gris: #8e8e8e;
  --fondogris: #a6a6a6;
  --grisbajo: #eaeaea;
  --fuente: Montserrat;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
    font-family: 'Barcelony';
    src: url('/assets/stylesheets/fonts/Barcelony.ttf');
}

body {
  font-family: var(--fuente);
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.iconomenu {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.ancho {
  max-width: 1200px;
  margin: auto;
}
header {
  top: 0;
  position: sticky;
  z-index: 10;
  box-shadow: 0px 2px 20px #333;
}
.contenedormenu {
  display: none;
}
.logomenu {
  width: 220px;
}
#menubarras {
  color: white;
}
nav {
  padding: 10px;
}
nav ul {
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
nav ul li {
  margin: 10px;
  display: block;
}
.link {
  display: block;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  transform: scale(1);
  transition: all 0.5s;
}
.link:hover {
  transform: scale(1.2);
}
.btn_registrate {
  padding: 5px 20px;
  border-radius: 40px;
  font-size: 14px;
  transition: all 0.5s;
  text-decoration: none;
  color: white;
}
.btn_registrate:hover {
  background-color: black;
}
.btn_requisitos {
  padding: 5px 20px;
  border-radius: 40px;
  font-size: 14px;
  transition: all 0.5s;
  text-decoration: none;
  color: white;
  display: inline-block;
}
.btn_requisitos:hover {
  background-color: black;
}
.contenedor_principal {
  height: 100vh;
  background-image: url(../images/foto_rebeca.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 15px;
  position: relative;
}
.contenedor_redes {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 95%;
  margin: auto;
  position: absolute;
  top: 30px;
}
.contenedor_redes a img {
  transform: scale(1);
  transition: all 0.5s;
}
.contenedor_redes a:hover img {
  transform: scale(1.3);
}
.iconoredes {
  width: 20px;
  height: 20px;
  margin-right: 40px;
}
.iconoredes2 {
  width: 20px;
  height: 20px;
}
.whatsapp {
  position: fixed;
  z-index: 200;
  width: 100px;
  height: 40px;
  border-radius: 10px 0px 0px 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10px;
  right: -50px;
  transition: all 0.5s;
  top: 50%;
  background-color: #1bd741;
}
.whatsapp:hover {
  right: -20px;
}
.iconowhatsapp {
  font-size: 25px;
  color: white;
  text-decoration: none;
}
.logotransparente {
  max-width: 550px;
  position: absolute;
  bottom: 50px;
  padding: 10px;
}
.logotransparente img {
  width: 100%;
}
.bienvenida {
  min-height: 300px;
  /* border: 1px red solid; */
  background: linear-gradient(
    180deg,
    rgba(250, 250, 250, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.titulobienvenida {
  font-weight: normal;
  color: var(--rosado);
  text-align: center;
  padding-top: 15px;
}
.abrazo{
  font-family: Barcelony;
  font-size: 35px;
  text-align: center;
}

.bienvenida p {
  text-align: center;
}
.rosado {
  color: var(--rosado);
}
.gris {
  color: var(--gris);
}
.verde {
  color: var(--verde);
}
.fondorosado {
  background-color: var(--rosado);
}
.fondoverde {
  background-color: var(--verde);
}
.fondogris {
  background-color: var(--fondogris);
}
.titulos {
  font-weight: bold;
  font-size: 25px;
  text-align: center;
  color: var(--rosado);
}
hr {
  height: 5px;
  background-color: var(--verde);
  width: 50px;
  margin: auto;
  border: 0;
  margin-top: 15px;
}
.contenedor_quiensoy {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.contenedor_quiensoy figure {
  width: 60%;
  background-image: url(../images/quiensoy.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
}
.contenedor_quiensoy figure img {
  width: 100%;
}
.quien {
  background-color: var(--rosado);
  color: white;
  padding: 15px;
  width: 40%;
}
.quien p {
  margin-top: 20px;
}
.acordeon_titulo {
  cursor: pointer;
  padding: 5px;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.acordeon_contenido {
  padding: 5px;
  display: none;
}
.rotarflecha {
  transition: all 0.5s;
  transform: rotateX(180deg);
}
.contenedorcursos {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
}
.nuevoscursos {
  display: block;
}
.contenedorcursos article {
  border: 1px var(--grisbajo) solid;
  box-shadow: 0px 0px 10px var(--grisbajo);
  margin-bottom: 20px;
  max-width: 330px;
}
.contenedorcursos article figure img {
  width: 100%;
}
.contenedorcursos article h2 {
  padding: 15px 0px;
  color: var(--rosado);
  font-size: 20px;
  padding: 15px;
}
.contenedorcursos article p {
  padding: 15px;
  font-size: 15px;
}
.leermas {
  border-radius: 40px;
  background-color: var(--verde);
  padding: 10px 30px;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-left: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  transition: all 0.5s;
}
.leermas:hover {
  background-color: var(--rosado);
}
footer {
  border-top: 10px var(--rosado) solid;
  padding: 20px;
  text-align: center;
}
.iconofooter {
  margin: auto;
  max-width: 500px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
footer a img {
  transform: scale(1);
  transition: all 0.5s;
}
footer a:hover img {
  transform: scale(1.3);
}
footer p {
  font-size: 14px;
}
.copy {
  text-align: center;
}
