@font-face {
  font-family: "DM Sans";
  src: url("../src/assets/fuentes/dmsans-variable-webfont.woff") format("woff"), url("../src/assets/fuentes/dmsans-variable-webfont.woff2") format("woff2");
}
@font-face {
  font-family: "Winter Holidays";
  src: url("../src/assets/fuentes/winterholidays-webfont.woff") format("woff"), url("../src/assets/fuentes/winterholidays-webfont.woff2") format("woff2");
}
@font-face {
  font-family: "Better Grade";
  src: url("../src/assets/fuentes/bettergrade-webfont.woff") format("woff"), url("../src/assets/fuentes/bettergrade-webfont.woff2") format("woff2");
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1500%);
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  width: 100%;
  height: 100%;
  background: #171A2F;
}

.contenido {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.contenido h1 {
  font-family: "Winter Holidays";
  text-align: center;
  color: #FEFEFD;
  font-size: 2.5rem;
  font-weight: 500;
}

.input-group {
  position: relative;
  display: flex;
  flex-direction: column;
}
.input-group .input {
  width: auto;
  min-width: 280px;
  padding: 1rem;
  font-size: 0.875rem;
  background: transparent;
  outline: none;
  border: 2px solid #F8CF95;
  border-radius: 1.5rem;
  transition: color 0.4s ease-in-out;
  color: #F8CF95;
  font-family: "DM Sans";
}
.input-group .input::placeholder {
  font-size: 0.875rem;
  color: rgba(254, 254, 253, 0.32);
}
.input-group .input:focus {
  color: #fefefd;
}
.input-group .input[type=date]::-webkit-calendar-picker-indicator {
  background-color: #F8CF95;
  border-radius: 50%;
}
.input-group .textarea {
  width: 100%;
  min-width: 280px;
  padding: 1rem;
  font-size: 0.875rem;
  background: transparent;
  outline: none;
  border: 2px solid #F8CF95;
  border-radius: 1.5rem;
  transition: color 0.4s ease-in-out;
  color: #F8CF95;
  max-height: 10rem;
  font-family: "DM Sans";
}
.input-group .textarea::placeholder {
  font-size: 0.875rem;
  color: rgba(254, 254, 253, 0.32);
}
.input-group .textarea:focus {
  color: #fefefd;
}
.input-group .label {
  position: absolute;
  padding: 0 0.5rem;
  margin-left: 1.5rem;
  top: -0.5rem;
  color: #F8CF95;
  font-size: 0.875rem;
  background-color: #171A2F;
  font-family: "DM Sans";
  font-weight: 500;
}

.boton-submit {
  width: max-content;
  display: flex;
  gap: 0.8rem;
  padding: 0.625rem 1rem;
  border: none;
  outline: none;
  background: #2C303E;
  font-size: 1rem;
  color: #FEFEFD;
  font-weight: 600;
  align-items: center;
  border-radius: 1.5rem;
}
.boton-submit i {
  font-size: 1rem;
}
.boton-submit:hover {
  background: linear-gradient(45deg, #FEFEFD 0%, #F8CF95 100%);
  color: #2C303E;
}

.burbuja {
  background: linear-gradient(45deg, #2C303E 0%, #020320 100%);
  border-radius: 50%;
}

.btn {
  width: max-content;
  font-family: "DM Sans";
  font-weight: 500;
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  color: #F8CF95;
  transition: background 0.3s ease;
}

.btn-pq {
  padding: 0.25rem 0.75rem;
  border-radius: 16px;
}

.ctn-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-bd {
  border: 2px solid transparent;
}
.btn-bd::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(45deg, #2C303E 0%, #F8CF95 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.btn-bd:hover {
  background: #FEFEFD;
  color: #2C303E;
  font-weight: 500;
}

header {
  width: 100%;
  height: max-content;
  display: flex;
  position: relative;
  overflow: hidden;
}
header .cont-olas {
  width: 100vw;
  position: relative;
  z-index: 1;
}
header .cont-olas .contenedor-olas {
  position: relative;
  width: 100%;
  height: 0px;
  background-color: #FEFEFD;
  transition: height 0.3s ease-in-out;
}
header .cont-olas .contenedor-olas.active {
  height: 400px;
}
header .cont-olas .wave-img {
  position: relative;
  width: 102%;
  animation: waves 4s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
header .header-content {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  z-index: 2;
  height: max-content;
}
header .header-content .logo {
  font-family: "Winter Holidays";
  font-size: 2.5rem;
  color: #020320;
}
header .header-content .menu-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 12rem;
  display: none;
  justify-content: center;
  align-items: center;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
header .header-content .menu-container .menu {
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
header .header-content .menu-container .menu .item-menu {
  font-family: "DM Sans";
  font-weight: 700;
  font-size: 1.1rem;
}
header .header-content .menu-container .menu .item-menu a {
  color: #2C303E;
}
header .header-content .menu-container .menu .item-menu a:hover {
  color: #F8CF95;
}
header .header-content .menu-container .menu .item-menu.activo {
  padding-bottom: 1rem;
  border-bottom: 4px solid #020320;
  font-weight: 900;
}
header .header-content .menu-container .menu .item-menu.activo a {
  color: #020320;
}
header .header-content .candy-box {
  width: 28px;
  height: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
header .header-content .candy-box .candy-item {
  width: 8px;
  height: 8px;
  background-color: #020320;
  border-radius: 50%;
}
@media (min-width: 769px) {
  header .cont-olas .wave-img {
    width: 102%;
    height: 12rem;
    object-fit: cover;
  }
  header .header-content {
    padding: 2.5rem;
  }
  header .header-content .menu-container {
    display: flex;
    top: 0;
    opacity: 1;
    width: max-content;
    position: relative;
  }
  header .header-content .menu-container .menu {
    flex-direction: row;
    align-items: start;
  }
  header .header-content .candy-box {
    display: none;
  }
}
@media (min-width: 1024px) {
  header .cont-olas .wave-img {
    position: relative;
    width: 105%;
    height: 16rem;
    object-fit: cover;
    top: -2rem;
    left: 0;
  }
  header .header-content {
    padding: 2.5rem 4rem;
  }
  header .header-content .logo {
    font-size: 4rem;
  }
  header .header-content .menu-container {
    display: flex;
    top: 0;
    opacity: 1;
    width: max-content;
    position: relative;
  }
  header .header-content .menu-container .menu {
    flex-direction: row;
    align-items: start;
    gap: 56px;
  }
  header .header-content .candy-box {
    display: none;
  }
}

.footer {
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}
.footer .wave-footer {
  width: 110%;
  height: 100%;
  position: relative;
  display: flex;
}
.footer .wave-footer img {
  position: relative;
  width: 120%;
  height: 12rem;
  object-fit: cover;
  left: -0.5rem;
}
.footer .cont-footer {
  width: 100%;
  height: max-content;
  padding: 1.5rem;
  background-color: #FEFEFD;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.footer .cont-footer .info-footer {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
.footer .cont-footer .info-footer .logo {
  font-family: "Winter Holidays";
  font-size: 3rem;
  color: #020320;
}
.footer .cont-footer .info-footer .contacto-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer .cont-footer .info-footer .contacto-footer h4 {
  font-family: "Winter Holidays";
  font-weight: 500;
  font-size: 1.5rem;
}
.footer .cont-footer .info-footer .contacto-footer .menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer .cont-footer .info-footer .contacto-footer .menu-footer .item-menu-footer {
  font-family: "DM Sans";
  font-size: 1rem;
  font-weight: bold;
}
.footer .cont-footer .info-footer .contacto-footer .menu-footer .item-menu-footer a {
  color: #2C303E;
  transition: color 0.2s ease-in-out;
}
.footer .cont-footer .info-footer .contacto-footer .menu-footer .item-menu-footer a:hover {
  color: #F8CF95;
}
.footer .cont-footer .info-footer .extra-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer .cont-footer .info-footer .extra-footer .download-footer {
  padding: 0.625rem 1rem;
  border: 2px solid #2C303E;
  border-radius: 1.5rem;
  background: transparent;
  transition: all 0.4s ease-in-out;
}
.footer .cont-footer .info-footer .extra-footer .download-footer .ctn-btn {
  font-family: "DM Sans";
  color: #2C303E;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
.footer .cont-footer .info-footer .extra-footer .download-footer:hover {
  border: 2px solid transparent;
  background: linear-gradient(45deg, #020320 0%, #2C303E 100%);
}
.footer .cont-footer .info-footer .extra-footer .download-footer:hover .ctn-btn {
  color: #FEFEFD;
  font-weight: 500;
}
.footer .cont-footer .info-footer .extra-footer .icon-footer {
  display: flex;
  gap: 1.5rem;
}
.footer .cont-footer .info-footer .extra-footer .icon-footer a {
  font-size: 1.5rem;
  color: #2C303E;
  transition: color 0.3s ease-in-out;
}
.footer .cont-footer .info-footer .extra-footer .icon-footer a:hover {
  color: #F8CF95;
}
.footer .cont-footer .copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer .cont-footer .copyright span {
  font-family: "DM Sans";
  font-weight: 600;
  color: #2C303E;
  text-align: center;
}

.vista-previa {
  width: 100vw;
  height: 26rem;
}
.vista-previa .img-previa {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}
.vista-previa .img-previa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
.vista-previa .img-previa .degradado-up {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(23, 26, 47, 0) 80%, rgb(23, 26, 47) 100%);
}
.vista-previa .img-previa .degradado-down {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(23, 26, 47) 0%, rgba(23, 26, 47, 0) 80%);
}
.vista-previa .img-previa .info {
  bottom: 0;
  position: absolute;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vista-previa .img-previa .info h4 {
  color: #FEFEFD;
  font-family: "DM Sans";
  font-weight: 600;
  letter-spacing: 1px;
}
.vista-previa .img-previa .info .valoracion {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.vista-previa .img-previa .info .valoracion i {
  font-size: 0.75rem;
  color: #F8CF95;
}
.vista-previa .img-previa .info .tags {
  display: flex;
  column-gap: 1rem;
  row-gap: 0.5rem;
  flex-wrap: wrap;
}
.vista-previa .img-previa .info .tags span {
  font-family: "DM Sans";
  color: #F8CF95;
  font-weight: 600;
  font-size: 0.875rem;
}

.tabs-proyectos {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100vw;
  height: max-content;
}
.tabs-proyectos .tab {
  display: flex;
  gap: 1rem;
  align-items: start;
  overflow-x: scroll;
  display: flex;
  width: 100%;
}
.tabs-proyectos .tab .tablinks {
  font-family: "DM Sans";
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  color: #FEFEFD;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
  display: flex;
  gap: 0.5rem;
}
.tabs-proyectos .tab .tablinks.active {
  color: #F8CF95;
  padding-bottom: 1rem;
  border-bottom: 2px solid #F8CF95;
  font-weight: 600;
}
.tabs-proyectos .tab::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
  visibility: hidden;
}
.tabs-proyectos .tabcontent {
  width: 100%;
  height: max-content;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}
.tabs-proyectos .tabcontent .proyectos-card {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  flex-wrap: nowrap;
  padding: 1rem;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect {
  min-width: 320px;
  flex: 0 0 auto;
  position: relative;
  box-shadow: 0px 2px 8px #020320;
  transition: box-shadow 0.4s ease-in-out;
  height: auto;
  overflow: hidden;
  min-height: 240px;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect .imagen-card {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect .imagen-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2C303E;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect .imagen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: blur(0);
  transition: filter 0.4s ease-in-out;
  top: 0;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect .card-info {
  position: relative;
  width: calc(100vw - 1.5rem);
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 3;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect .card-info .info-proyect {
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect .card-info .info-proyect h4 {
  font-family: "DM Sans";
  color: #FEFEFD;
  font-size: 1rem;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect .card-info .info-proyect .valoracion {
  display: flex;
  gap: 0.5rem;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect .card-info .info-proyect .valoracion i {
  font-size: 0.75rem;
  color: #F8CF95;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect .card-info .info-proyect p {
  font-family: "DM Sans";
  color: #F8CF95;
  font-size: 0.625rem;
  font-weight: 700;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect .card-info .info-proyect .tags {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect .card-info .info-proyect .tags .btn-tags {
  font-size: 0.625rem;
  background: linear-gradient(45deg, #FEFEFD 0%, #F8CF95 100%);
  color: #020320;
  font-weight: 800;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect .card-info .botones {
  position: relative;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect .card-info .botones a {
  padding: 0.375rem 0.5rem;
  border-radius: 2rem;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect:hover {
  box-shadow: 0px 7px 29px #020320;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect:hover .card-info {
  opacity: 1;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect:hover .imagen-card::before {
  opacity: 0.8;
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect:hover .imagen-card img {
  filter: blur(16px);
}
.tabs-proyectos .tabcontent .proyectos-card .card-proyect.active {
  border: 2px solid #F8CF95;
}
.tabs-proyectos .tabcontent::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
  visibility: hidden;
}

.contenedor {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.contenedor main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.contenedor main .section-perfil {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 1rem;
}
.contenedor main .section-perfil .image-perfil {
  display: flex;
  position: relative;
  height: 19.5rem;
  width: 19.5rem;
}
.contenedor main .section-perfil .image-perfil .burbuja {
  position: absolute;
  width: 5rem;
  height: 5rem;
}
.contenedor main .section-perfil .image-perfil .burbuja:nth-child(1) {
  bottom: 0;
}
.contenedor main .section-perfil .image-perfil .burbuja:nth-child(2) {
  left: 3.5rem;
  top: 3.5rem;
}
.contenedor main .section-perfil .image-perfil .burbuja:nth-child(3) {
  right: 0;
}
.contenedor main .section-perfil .image-perfil .burbuja.cont-imagen {
  display: flex;
  width: 12.5rem;
  height: 12.5rem;
  justify-content: center;
  align-items: center;
}
.contenedor main .section-perfil .image-perfil .burbuja.cont-imagen .fondo-degradado {
  width: 10rem;
  height: 10rem;
  background: linear-gradient(45deg, #2C303E 0%, #F8CF95 100%);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
}
.contenedor main .section-perfil .image-perfil .burbuja.cont-imagen .fondo-degradado img {
  position: absolute;
  width: auto;
  height: 88%;
  object-fit: cover;
  bottom: 0;
}
.contenedor main .section-perfil .info-perfil {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}
.contenedor main .section-perfil .info-perfil span {
  font-family: "DM Sans";
  font-size: 1.25rem;
  color: #FEFEFD;
  font-weight: 500;
}
.contenedor main .section-perfil .info-perfil .nombre-profesion {
  margin-top: 3rem;
  width: 100%;
  height: max-content;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contenedor main .section-perfil .info-perfil .nombre-profesion h1 {
  position: relative;
  font-family: "Winter Holidays";
  font-size: 3.4rem;
  color: #FEFEFD;
  font-weight: 400;
  width: max-content;
}
.contenedor main .section-perfil .info-perfil .nombre-profesion h2 {
  position: relative;
  font-family: "Better Grade";
  font-size: 1.5rem;
  color: #F8CF95;
  font-weight: 400;
  top: -1.2rem;
  left: -1.2rem;
}
@media (min-width: 430px) {
  .contenedor main .section-perfil .info-perfil .nombre-profesion h1 {
    font-size: 4.5rem;
  }
  .contenedor main .section-perfil .info-perfil .nombre-profesion h2 {
    font-size: 2rem;
    top: -1.5rem;
    left: -1.5rem;
  }
}
@media (min-width: 570px) {
  .contenedor main .section-perfil .info-perfil .nombre-profesion h1 {
    font-size: 5rem;
  }
  .contenedor main .section-perfil .info-perfil .nombre-profesion h2 {
    font-size: 2.2rem;
    top: -1.8rem;
    left: -1.8rem;
  }
}
@media (min-width: 1024px) {
  .contenedor main .section-perfil {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 4rem;
    margin-bottom: 2rem;
  }
  .contenedor main .section-perfil .info-perfil span {
    position: absolute;
    left: 6rem;
  }
  .contenedor main .section-perfil .info-perfil .nombre-profesion {
    top: 0;
    left: 0;
    margin-top: 0;
  }
  .contenedor main .section-perfil .image-perfil {
    width: auto;
    height: 22rem;
  }
  .contenedor main .section-perfil .image-perfil .burbuja {
    width: 6rem;
    height: 6rem;
  }
  .contenedor main .section-perfil .image-perfil .burbuja:nth-child(1) {
    bottom: 0;
  }
  .contenedor main .section-perfil .image-perfil .burbuja:nth-child(2) {
    left: 4rem;
    width: 16rem;
    height: 16rem;
    top: 2.5rem;
  }
  .contenedor main .section-perfil .image-perfil .burbuja:nth-child(3) {
    right: 0;
  }
  .contenedor main .section-perfil .image-perfil .burbuja.cont-imagen .fondo-degradado {
    width: 12rem;
    height: 12rem;
  }
}
.contenedor main .stack-slide {
  width: 100%;
}
.contenedor main .stack-slide .slide-cont {
  margin: 0 1.5rem;
  overflow: hidden;
}
.contenedor main .stack-slide .slide-cont .wrapper {
  display: flex;
  height: 128px;
  align-items: center;
  overflow-x: hidden;
  overflow-y: hidden;
}
.contenedor main .stack-slide .slide-cont .wrapper img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin: 0 2rem;
  transform: scale(1);
}
.contenedor main .stack-slide .slide-cont .wrapper img:hover {
  opacity: 1;
  transform: scale(1.1);
}
@media (min-width: 769px) {
  .contenedor main .stack-slide .slide-cont {
    margin: 0 4rem;
  }
  .contenedor main .stack-slide .slide-cont .wrapper img {
    width: 80px;
    height: 80px;
    margin: 0 3.75rem;
  }
}
.contenedor main .cta-curriculum {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contenedor main .cta-curriculum .cta-curriculum_info {
  padding: 1.5rem;
}
.contenedor main .cta-curriculum .cta-curriculum_info .curriculum_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.contenedor main .cta-curriculum .cta-curriculum_info .curriculum_info h3 {
  font-family: "DM Sans";
  color: #F8CF95;
  font-size: 1.25rem;
  text-align: justify;
  line-height: 1.8rem;
}
.contenedor main .cta-curriculum .cta-curriculum_info .curriculum_info p {
  font-family: "DM Sans";
  line-height: 1.5rem;
  text-align: justify;
  color: #FEFEFD;
  font-size: 1rem;
}
.contenedor main .cta-curriculum .cta-curriculum_info .curriculum_info .botones {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.contenedor main .cta-curriculum .cta-curriculum_img {
  width: 100%;
  height: 18.75rem;
  overflow: hidden;
}
.contenedor main .cta-curriculum .cta-curriculum_img img {
  width: 200%;
  height: auto;
}
@media (min-width: 330px) {
  .contenedor main .cta-curriculum .cta-curriculum_img {
    height: 20rem;
  }
}
@media (min-width: 356px) {
  .contenedor main .cta-curriculum .cta-curriculum_img {
    height: 22rem;
  }
}
@media (min-width: 399px) {
  .contenedor main .cta-curriculum .cta-curriculum_img {
    height: 24rem;
  }
}
@media (min-width: 430px) {
  .contenedor main .cta-curriculum .cta-curriculum_info .curriculum_info h3 {
    font-size: 1.5rem;
  }
  .contenedor main .cta-curriculum .cta-curriculum_img {
    height: 28rem;
  }
}
@media (min-width: 500px) {
  .contenedor main .cta-curriculum .cta-curriculum_info .curriculum_info h3 {
    text-align: center;
  }
  .contenedor main .cta-curriculum .cta-curriculum_img {
    height: 30rem;
  }
}
@media (min-width: 540px) {
  .contenedor main .cta-curriculum .cta-curriculum_img {
    height: 34rem;
  }
}
@media (min-width: 610px) {
  .contenedor main .cta-curriculum .cta-curriculum_img {
    height: 39rem;
  }
}
@media (min-width: 703px) {
  .contenedor main .cta-curriculum .cta-curriculum_info .curriculum_info h3 {
    text-align: center;
    max-width: 80%;
  }
  .contenedor main .cta-curriculum .cta-curriculum_info .curriculum_info p {
    text-align: justify;
    max-width: 80%;
  }
  .contenedor main .cta-curriculum .cta-curriculum_img {
    height: max-content;
  }
  .contenedor main .cta-curriculum .cta-curriculum_img img {
    width: 150%;
  }
}
@media (min-width: 1024px) {
  .contenedor main .cta-curriculum {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .contenedor main .cta-curriculum .cta-curriculum_info {
    padding: 4rem;
    padding-right: 0;
    height: max-content;
  }
  .contenedor main .cta-curriculum .cta-curriculum_info .curriculum_info {
    align-items: start;
  }
  .contenedor main .cta-curriculum .cta-curriculum_info .curriculum_info h3 {
    text-align: justify;
    max-width: 100%;
  }
  .contenedor main .cta-curriculum .cta-curriculum_info .curriculum_info p {
    text-align: justify;
    max-width: 100%;
  }
  .contenedor main .cta-curriculum .cta-curriculum_info .curriculum_info .botones {
    flex-direction: row;
    gap: 1rem;
  }
  .contenedor main .cta-curriculum .cta-curriculum_img {
    height: 500px;
    position: relative;
  }
  .contenedor main .cta-curriculum .cta-curriculum_img img {
    position: absolute;
    width: 180%;
    height: auto;
    object-fit: cover;
    top: 0;
  }
}
.contenedor main .proyectos {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contenedor main .proyectos h3 {
  font-family: "DM Sans";
  color: #F8CF95;
  font-size: 1.25rem;
}
.contenedor main .proyectos .contenedor-proyectos {
  width: 100%;
  height: max-content;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}
.contenedor main .proyectos .contenedor-proyectos::-webkit-scrollbar {
  width: 0.5rem;
  height: 4px;
}
.contenedor main .proyectos .contenedor-proyectos::-webkit-scrollbar-thumb {
  background: #FEFEFD;
  border-radius: 4px;
}
.contenedor main .proyectos .contenedor-proyectos::-webkit-scrollbar-thumb:hover {
  background: #F8CF95;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card {
  flex: 0 0 auto;
  display: flex;
  width: max-content;
  gap: 1.5rem;
  vertical-align: top;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect {
  flex: 0 0 auto;
  width: 33.3333333333%;
  min-height: max-content;
  display: flex;
  position: relative;
  box-shadow: 0px 2px 8px #020320;
  transition: box-shadow 0.4s ease-in-out;
  height: auto;
  overflow: hidden;
  max-width: 400px;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect .imagen-card {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect .imagen-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2C303E;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect .imagen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: blur(0);
  transition: filter 0.4s ease-in-out;
  top: 0;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect .card-info {
  position: relative;
  width: calc(100vw - 1.5rem);
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 3;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect .card-info .info-proyect {
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect .card-info .info-proyect h4 {
  font-family: "DM Sans";
  color: #FEFEFD;
  font-size: 1rem;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect .card-info .info-proyect .valoracion {
  display: flex;
  gap: 0.5rem;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect .card-info .info-proyect .valoracion i {
  font-size: 0.75rem;
  color: #F8CF95;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect .card-info .info-proyect p {
  font-family: "DM Sans";
  color: #F8CF95;
  font-size: 0.625rem;
  font-weight: 700;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect .card-info .info-proyect .tags {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect .card-info .info-proyect .tags .btn-tags {
  font-size: 0.625rem;
  background: linear-gradient(45deg, #FEFEFD 0%, #F8CF95 100%);
  color: #020320;
  font-weight: 800;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect .card-info .botones {
  position: relative;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect .card-info .botones a {
  padding: 0.375rem 0.5rem;
  border-radius: 2rem;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect:nth-child(3) {
  background-color: #2C303E;
  display: flex;
  justify-content: center;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect:nth-child(3) a {
  display: flex;
  flex-direction: column;
  color: #F8CF95;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-family: "DM Sans";
  gap: 2rem;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect:nth-child(3) a i {
  font-size: 5rem;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect:hover {
  box-shadow: 0px 7px 29px #020320;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect:hover .card-info {
  opacity: 1;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect:hover .imagen-card::before {
  opacity: 0.8;
}
.contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect:hover .imagen-card img {
  filter: blur(16px);
}
@media (min-width: 430px) {
  .contenedor main .proyectos h3 {
    font-size: 1.5rem;
  }
  .contenedor main .proyectos .contenedor-proyectos .proyectos-card .card-proyect {
    width: calc(100vw - 3rem);
    height: 14rem;
  }
}
@media (min-width: 1024px) {
  .contenedor main .proyectos {
    padding: 0 4rem;
  }
}
.contenedor main .cta-contacto {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.contenedor main .cta-contacto .contenedor-cta {
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #FEFEFD;
  justify-content: center;
}
.contenedor main .cta-contacto .contenedor-cta .texto-cta {
  max-width: 1212px;
  width: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
}
.contenedor main .cta-contacto .contenedor-cta .texto-cta h3 {
  font-family: "Winter Holidays";
  font-size: 1.6rem;
  color: #2C303E;
  font-weight: 500;
  text-align: center;
}
.contenedor main .cta-contacto .contenedor-cta .texto-cta p {
  text-align: justify;
  font-size: 1rem;
  font-family: "DM Sans";
  font-weight: 300;
  color: #2C303E;
  line-height: 1.25rem;
}
.contenedor main .cta-contacto .contenedor-cta .texto-cta .tabs-botones {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}
.contenedor main .cta-contacto .contenedor-cta .texto-cta .tabs-botones a {
  background: linear-gradient(45deg, #2C303E 0%, #2C303E 100%);
  font-size: 1rem;
  color: #FEFEFD;
  font-family: "DM Sans";
  border-radius: 2rem;
  transition: background 0.5s ease-in-out;
  width: max-content;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  outline: none;
  border: none;
}
.contenedor main .cta-contacto .contenedor-cta .texto-cta .tabs-botones a:hover {
  background: linear-gradient(45deg, #2C303E 0%, #020320 100%);
}
.contenedor main .cta-contacto img {
  width: 102%;
  height: 100%;
  position: relative;
  object-fit: cover;
}
.contenedor main .cta-contacto .waveup {
  box-shadow: drop-shadow(8px 8px 16px #B7B7B6);
}
.contenedor main .cta-contacto .wavedown {
  box-shadow: drop-shadow(-8px -8px 16px #FFFFFF);
}
@media (min-width: 481px) {
  .contenedor main .cta-contacto .contenedor-cta .texto-cta h3 {
    font-size: 2rem;
  }
  .contenedor main .cta-contacto img {
    width: 106%;
    height: 16rem;
    object-fit: cover;
    left: -1rem;
  }
}
.contenedor main .formularios {
  width: 100%;
  height: max-content;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-snap-align: start;
}
.contenedor main .formularios .cont_form-proyect,
.contenedor main .formularios .cont_form-contact {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.contenedor main .formularios .cont_form-proyect h4,
.contenedor main .formularios .cont_form-contact h4 {
  font-family: "DM Sans";
  color: #F8CF95;
  font-weight: 900;
  font-size: 1.5rem;
  text-align: center;
  line-height: 2rem;
}
.contenedor main .formularios .cont_form-proyect .form-proyect,
.contenedor main .formularios .cont_form-proyect .form-contact,
.contenedor main .formularios .cont_form-contact .form-proyect,
.contenedor main .formularios .cont_form-contact .form-contact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  align-items: center;
}
.contenedor main .formularios .visible {
  display: flex;
}
@media (min-width: 475px) {
  .contenedor main .formularios {
    padding: 1rem;
  }
}

.seccion-formacion {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  padding: 1.5rem;
}
.seccion-formacion .cuadro-de-informacion {
  width: 100%;
  height: max-content;
  padding: 1.5rem;
  background-color: #2C303E;
}
.seccion-formacion .cuadro-de-informacion .informacion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.seccion-formacion .cuadro-de-informacion .informacion .cont-imagen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
}
.seccion-formacion .cuadro-de-informacion .informacion .cont-imagen .fondo-degradado {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(45deg, #2C303E 0%, #F8CF95 100%);
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.seccion-formacion .cuadro-de-informacion .informacion .cont-imagen .fondo-degradado img {
  width: 96%;
  position: absolute;
  bottom: 0;
}
.seccion-formacion .cuadro-de-informacion .informacion .info-formacion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.seccion-formacion .cuadro-de-informacion .informacion .info-formacion h3 {
  font-family: "DM Sans";
  font-size: 1.5rem;
  color: #F8CF95;
  font-weight: 600;
}
.seccion-formacion .cuadro-de-informacion .informacion .info-formacion .proyecto {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.seccion-formacion .cuadro-de-informacion .informacion .info-formacion .proyecto .proyec-destacado {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.seccion-formacion .cuadro-de-informacion .informacion .info-formacion .proyecto .proyec-destacado h4 {
  font-family: "DM Sans";
  color: #FEFEFD;
  font-weight: 500;
  text-align: center;
}
.seccion-formacion .cuadro-de-informacion .informacion .info-formacion .proyecto .proyec-destacado .icon-proyectos-principales {
  display: flex;
  gap: 1rem;
}
.seccion-formacion .cuadro-de-informacion .informacion .info-formacion .proyecto .proyec-destacado .icon-proyectos-principales a {
  color: #FEFEFD;
  font-size: 1rem;
}
.seccion-formacion .line-time {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  height: max-content;
  background: linear-gradient(0deg, rgba(23, 26, 47, 0) 80%, rgb(23, 26, 47) 100%);
}
.seccion-formacion .line-time .contain_line {
  display: flex;
  gap: 5.5rem;
  position: relative;
}
.seccion-formacion .line-time .contain_line span {
  color: #FEFEFD;
  font-family: "DM Sans";
  font-size: 0.75rem;
  font-weight: bold;
  position: relative;
  margin-top: 0.75rem;
}
.seccion-formacion .line-time .contain_line .info_line {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
  align-items: start;
}
.seccion-formacion .line-time .contain_line .info_line h3 {
  font-family: "DM Sans";
  font-size: 1rem;
  color: #F8CF95;
  font-weight: 600;
  line-height: 1.125rem;
}
.seccion-formacion .line-time .contain_line .info_line .list_line {
  list-style: initial;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1rem;
}
.seccion-formacion .line-time .contain_line .info_line .list_line .item_list {
  position: relative;
  font-family: "DM Sans";
  font-size: 0.875rem;
  color: #FEFEFD;
  line-height: 1.125rem;
  font-weight: 300;
  text-align: justify;
}
.seccion-formacion .line-time .contain_line .info_line .list_line .item_list::marker {
  display: flex;
  position: absolute;
  top: 2rem;
}
.seccion-formacion .line-time .contain_line::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 128%;
  background: #2C303E;
  left: 4.5rem;
}
.seccion-formacion .line-time .contain_line::after {
  position: absolute;
  content: "";
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(45deg, #2C303E 0%, #F8CF95 100%);
  left: 3.5rem;
}
.seccion-formacion .line-time .contain_line:last-child::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background: none;
}

.tabs-certificados {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100vw;
  height: max-content;
}
.tabs-certificados .tab {
  display: flex;
  gap: 1rem;
  align-items: start;
  overflow-x: scroll;
  display: flex;
  width: 100%;
}
.tabs-certificados .tab .tablinks {
  font-family: "DM Sans";
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  color: #FEFEFD;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
  display: flex;
  gap: 0.5rem;
}
.tabs-certificados .tab .tablinks.active {
  color: #F8CF95;
  padding-bottom: 1rem;
  border-bottom: 2px solid #F8CF95;
  font-weight: 600;
}
.tabs-certificados .tab::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
  visibility: hidden;
}
.tabs-certificados .content-certific {
  width: 100%;
  height: max-content;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}
.tabs-certificados .content-certific .certificado-card {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  flex-wrap: nowrap;
  padding: 1rem;
  position: relative;
}
.tabs-certificados .content-certific .certificado-card .card-certific {
  min-width: 350px;
  height: 300px;
  position: relative;
  display: flex;
  overflow: hidden;
}
.tabs-certificados .content-certific .certificado-card .card-certific img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
.tabs-certificados .content-certific .certificado-card .card-certific .tipo-certificado {
  position: absolute;
  right: 0;
  margin: 1.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(45deg, #2C303E 0%, #020320 100%);
  color: #F8CF95;
  font-size: 0.75rem;
  font-family: "DM Sans";
  font-weight: 700;
  border-radius: 1rem;
}
.tabs-certificados .content-certific .certificado-card .card-certific .info-certificado {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -88px;
  background: linear-gradient(45deg, #2C303E 0%, #020320 100%);
  border-radius: 1rem 1rem 0 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: bottom 1s ease;
}
.tabs-certificados .content-certific .certificado-card .card-certific .info-certificado h3 {
  color: #FEFEFD;
  font-family: "DM Sans";
  width: 100%;
  font-size: 1rem;
  position: relative;
  font-weight: 600;
  word-break: break-word;
  white-space: break-spaces;
  line-height: 1.25rem;
}
.tabs-certificados .content-certific .certificado-card .card-certific .info-certificado .info-hidden {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 1s ease;
  position: relative;
}
.tabs-certificados .content-certific .certificado-card .card-certific .info-certificado .info-hidden span {
  font-family: "DM Sans";
  color: #F8CF95;
}
.tabs-certificados .content-certific .certificado-card .card-certific .info-certificado .info-hidden .botones {
  position: relative;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
}
.tabs-certificados .content-certific .certificado-card .card-certific .info-certificado .info-hidden .botones a {
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
}
.tabs-certificados .content-certific .certificado-card .card-certific:hover .info-certificado {
  bottom: 0;
}
.tabs-certificados .content-certific .certificado-card .card-certific:hover .info-certificado .info-hidden {
  opacity: 1;
}
.tabs-certificados .content-certific::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
  visibility: hidden;
}

.page-curriculum {
  background-color: #2C303E;
  height: max-content;
  width: 100vw;
  position: relative;
}
.page-curriculum .fondos-degradados {
  position: absolute;
  display: flex;
  width: 100vw;
  height: 100%;
}
.page-curriculum .fondos-degradados .gradientup {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(23, 26, 47, 0) 80%, rgb(23, 26, 47) 100%);
}
.page-curriculum .fondos-degradados .gradientdown {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(23, 26, 47) 0%, rgba(23, 26, 47, 0) 80%);
}
.page-curriculum .curriculum_content {
  width: 100%;
  height: 33.25rem;
  position: relative;
  padding: 1.5rem;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.page-curriculum .curriculum_content .vista_curriculum {
  width: 100%;
  height: 24rem;
  position: relative;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2C303E;
  cursor: grab;
  margin-top: auto;
  margin-bottom: auto;
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych {
  width: max-content;
  height: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych {
  width: max-content;
  height: max-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: top left;
  transform: scale(1);
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel {
  position: absolute;
  width: 116.74px;
  height: 165.16px;
  z-index: 10;
  perspective: 150%;
  transform-style: preserve-3d;
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel .front {
  z-index: 9;
  backface-visibility: hidden;
  transition: transform 0.8s ease;
  transform: rotateY(0deg);
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel .back {
  z-index: 8;
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.izq .front,
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.izq .back {
  transform-origin: left;
  transform: rotateY(0deg);
  transition: transform 0.8s ease;
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.izq .front img,
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.izq .back img {
  transform: rotateY(0deg);
  transition: transform 0.8s ease;
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.izq.flip-neg .back, .page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.izq.flip-neg .front {
  transform: rotateY(180deg);
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.izq.flip-neg .back img, .page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.izq.flip-neg .front img {
  transform: rotateY(180deg);
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.der .front,
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.der .back {
  transform-origin: right;
  transform: rotateY(0deg);
  transition: transform 0.8s ease;
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.der .front img,
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.der .back img {
  transform: rotateY(0deg);
  transition: transform 0.8s ease;
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.der.flip-pos .back, .page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.der.flip-pos .front {
  transform: rotateY(180deg);
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.der.flip-pos .back img, .page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel.der.flip-pos .front img {
  transform: rotateY(180deg);
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel .front,
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform: rotateY(180deg);
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel .front img,
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel .back img {
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
  transition: transform 0.8s ease;
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych .papel .pagina {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych #p1 {
  z-index: 12;
  order: 1;
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych #p2 {
  z-index: 10;
  order: 3;
}
.page-curriculum .curriculum_content .vista_curriculum .cont-triptych .triptych #p3 {
  z-index: 11;
  order: 2;
}
.page-curriculum .curriculum_content .control-button {
  display: flex;
  position: relative;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.page-curriculum .curriculum_content .control-button .next-back {
  display: flex;
  width: 100%;
  position: relative;
  justify-content: space-between;
}
.page-curriculum .curriculum_content .control-button .zoom {
  position: absolute;
  display: flex;
  gap: 1.625rem;
}
.page-curriculum .curriculum_content .control-button .botones .btn-control {
  background: transparent;
  border: none;
  color: rgba(254, 254, 253, 0.32);
}
.page-curriculum .curriculum_content .control-button .botones .btn-control i {
  font-size: 1.75rem;
}
.page-curriculum .curriculum_content .control-button .botones .btn-control:focus {
  color: #fefefd;
}

.botones-cv {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

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