@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Special+Gothic+Expanded+One&display=swap");
@font-face {
  font-family: "Heading Now Trial";
  src: url("../fonts/HeadingNowTrial-46Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
/*  body  */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: #080808;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 200;
  font-optical-sizing: auto;
  color: white;
  max-width: 100%;
  overflow-x: hidden;
}

h1 {
  text-align: center;
  font-size: 8rem;
  font-family: "Heading Now Trial", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-optical-sizing: auto;
}

h2 {
  font-size: 2.2rem;
  font-weight: 500;
}

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

/*  header  */
header #navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 50px 20px 50px;
  background-color: transparent !important;
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: none;
  transition: all 0.3s ease;
  z-index: 1000;
}
header #navbar.scrolled {
  background-color: #080808 !important;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.5);
}
header #navbar #logo-header {
  width: 100px;
}
header #navbar #menu-hamburguesa {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
header #navbar #navbar-desplegable {
  background-color: #080808;
  display: flex;
  margin-left: auto;
  gap: 5px;
}
header #navbar #navbar-desplegable a {
  color: white;
  position: relative;
  padding-bottom: 5px;
  text-decoration: none;
}
header #navbar #navbar-desplegable a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background-color: white;
  transition: width 0.3s ease;
}
header #navbar #navbar-desplegable a:hover::after {
  width: 100%;
}

.titulos {
  height: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 60px;
  padding-right: 60px;
}
.titulos .flecha-link img {
  width: 25px;
  height: auto;
  cursor: pointer;
  display: block;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.titulos .flecha-link img:hover {
  transform: scale(1.2);
}

.descripcion {
  padding: 0 60px 70px 60px;
}

/*  page - index  */
/*  pantalla principal del logo  */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #080808;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}
#splash-screen #splash-logo {
  width: 150px;
  margin-bottom: 2rem;
}
#splash-screen #boton-visit {
  cursor: pointer;
  background-color: #080808;
  color: white;
  transition: background-color 0.3s ease;
  border: 1px solid rgba(111, 111, 111, 0.3);
  border-radius: 5px;
  margin-top: 20px;
  width: 10%;
  font-size: 1.6rem;
  font-weight: 100;
}
#splash-screen #boton-visit:hover {
  color: white;
  background-color: black;
  border-color: black;
  border: 1px solid black;
}

#portada {
  height: 100vh;
}
#portada .portada-texto {
  height: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 2.15rem;
}
#portada .portada-texto h1 {
  font-size: 9rem;
}

/*  section - proyectos */
#proyectos {
  height: 90vh;
}

.contenedor-proyectos {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.contenedor-proyectos .div-proyectos {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
  border-top: 1px solid rgba(111, 111, 111, 0.3);
  border-bottom: 1px solid rgba(111, 111, 111, 0.3);
}
.contenedor-proyectos .div-proyectos a {
  width: 100%;
  margin-left: 70px;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
}
.contenedor-proyectos .div-proyectos:hover {
  background-color: #141414;
}

/*  section - sobre mí */
.contenedor-grid {
  display: grid;
  grid-template-areas: "imagen1 texto1 imagen2";
  grid-template-columns: minmax(200px, 1fr) minmax(250px, 1fr) minmax(200px, 1fr);
  column-gap: 5vw;
  width: 100vw;
  padding-top: 20px;
  padding-bottom: 150px;
  align-items: center;
  justify-items: center;
}
.contenedor-grid .texto-grid-1 {
  grid-area: texto1;
}
.contenedor-grid .contenedor-img-grid1 {
  grid-area: imagen1;
  text-align: center;
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.contenedor-grid .contenedor-img-grid2 {
  grid-area: imagen2;
  text-align: center;
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.contenedor-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/*  page - la opera */
.botones-laopera {
  display: flex;
  justify-content: space-between;
  padding: 0 320px 60px 320px;
  gap: 100px;
  font-size: 1.7rem;
  font-weight: 500;
  cursor: pointer;
}
.botones-laopera .boton-videos {
  display: flex;
  flex: 1;
  height: 50px;
  background-color: #080808;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(111, 111, 111, 0.3);
  border-radius: 5px;
}
.botones-laopera .boton-videos.active {
  border: 1px solid white;
}
.botones-laopera .boton-videos:hover {
  border: 1px solid white;
}

.grid-anuncios,
.grid-reels {
  display: none;
  width: 100vw;
  gap: 15px;
  padding: 15px;
  box-sizing: border-box;
}
.grid-anuncios.visible,
.grid-reels.visible {
  display: grid;
}

.grid-anuncios video,
.grid-reels video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: auto;
}

.grid-anuncios {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
}

.grid-reels {
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
}

#btn-ver-mas {
  display: flex;
  margin: auto;
  flex: 1;
  height: 40px;
  width: 100px;
  font-weight: 400;
  background-color: #080808;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(111, 111, 111, 0.3);
  border-radius: 5px;
}
#btn-ver-mas:hover {
  border: 1px solid white;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow: hidden;
}
.video-modal.visible {
  display: flex;
}
.video-modal .cerrar-modal {
  position: fixed;
  top: 3vh;
  right: 3vw;
  font-size: 7rem;
  color: white;
  cursor: pointer;
  z-index: 1001;
}
.video-modal .video-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-modal .video-modal-content video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background-color: black;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.video-modal-vertical .video-modal-content {
  width: auto;
  height: 100vh;
}
.video-modal-vertical .video-modal-content video {
  width: auto;
  height: 90%;
  aspect-ratio: 9/16;
}

.nav-video {
  all: unset;
  color: white;
  font-size: 7rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  user-select: none;
}

.nav-video.prev-video {
  left: 3vw;
}

.nav-video.next-video {
  right: 3vw;
}

.video-titulo {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: white;
  text-align: center;
  max-width: 90%;
  z-index: 1001;
  pointer-events: none;
  font-weight: 300;
}

/*  page - crecer con memoria */
.video-ccm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.video-ccm video {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 8px;
}

/*  footer  */
footer {
  width: 100%;
  height: 200px;
  background-color: #080808;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footer-contenido {
  width: 100%;
  padding: 0 60px 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 210px;
}
footer .footer-contenido .footer-placeholder {
  width: 100px;
  height: auto;
}
footer .footer-contenido .redes-sociales {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
footer .footer-contenido .redes-sociales .iconos-redes {
  display: flex;
  gap: 10px;
}
footer .footer-contenido .redes-sociales .iconos-redes img {
  width: 30px;
}
footer .footer-contenido .redes-sociales .email-link {
  text-decoration: none;
  color: white;
}
footer .footer-contenido .redes-sociales .email-link:hover {
  color: dodgerblue;
}
footer .footer-contenido .redes-sociales img {
  width: 35px;
  height: auto;
}
footer .footer-texto {
  background-color: #0e0e0e;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}

/*  media query - mobile ______________________________________________________________________________________________*/
@media (max-width: 575.98px) {
  #splash-screen #boton-visit {
    width: 25%;
  }
  h1 {
    font-size: 7rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  header #navbar {
    padding-left: 20px;
    padding-right: 20px;
  }
  header #navbar #logo-header {
    width: 90px;
  }
  header #navbar #navbar-desplegable {
    margin-top: 20px;
    gap: 15px;
  }
  .titulos {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }
  #portada .portada-texto h1 {
    font-size: 4.5rem;
    flex-direction: column;
  }
  #portada .portada-texto p {
    font-size: 1.6rem;
  }
  #sobre-mi .titulos {
    height: 80px;
  }
  .contenedor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "texto1 imagen1" "texto1 imagen2";
    margin: auto;
    width: 90%;
    height: 95vh;
    padding-bottom: 100px;
  }
  .contenedor-grid .contenedor-img-grid1 {
    grid-area: imagen1;
    transform: translateY(18px);
  }
  .contenedor-grid .contenedor-img-grid2 {
    grid-area: imagen2;
    transform: translateY(-25px);
  }
  .contenedor-grid .texto-grid-1 {
    grid-area: texto1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.3rem;
  }
  .contenedor-grid img {
    aspect-ratio: 3/4;
    height: auto;
    display: block;
  }
  #proyectos {
    height: 60vh;
  }
  #proyectos .titulos {
    height: 200px;
  }
  .contenedor-proyectos .div-proyectos {
    height: 40px;
  }
  .contenedor-proyectos .div-proyectos a {
    margin-left: 27px;
  }
  #laopera .titulos {
    margin-top: 100px;
    height: 150px;
    position: relative;
  }
  #laopera .titulos .flecha-link {
    position: absolute;
    top: 27px;
    right: 37px;
  }
  #laopera .titulos .flecha-link img {
    width: 15px;
  }
  #laopera .descripcion {
    padding-bottom: 50px;
  }
  .botones-laopera {
    padding-left: 0;
    padding-right: 0;
    width: 80%;
    margin: auto;
    gap: 50px;
    font-size: 1.3rem;
  }
  .grid-anuncios {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .grid-reels {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  #btn-ver-mas {
    display: block;
  }
  .grid-reels video,
  .grid-anuncios video {
    display: none !important;
  }
  .grid-reels video.visible,
  .grid-anuncios video.visible {
    display: inline-block !important;
  }
  #crecerconmemoria .titulos {
    margin-top: 100px;
    height: auto;
    position: relative;
  }
  #crecerconmemoria .titulos h1 {
    font-size: 6.3rem;
  }
  #crecerconmemoria .titulos .flecha-link {
    position: absolute;
    top: 60px;
    right: 37px;
  }
  #crecerconmemoria .titulos .flecha-link img {
    width: 15px;
  }
  #crecerconmemoria .descripcion {
    padding-top: 60px;
  }
  #crecerconmemoria .video-ccm .titulo-video {
    font-size: 1.3rem;
  }
  #modal-anuncios .video-titulo {
    top: 200px;
    font-size: 1.3rem;
    width: 100%;
  }
  #modal-reels .video-titulo {
    font-size: 1.3rem;
    width: 100%;
  }
  footer {
    height: 150px;
  }
  footer .footer-contenido {
    padding-right: 37px;
  }
}
/*  media query - tablet ______________________________________________________________________________________________*/

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