@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
  --color-fuente: #FFFFFF;
}



* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    font-size: 62.5%;
}

body {
    background-color: #3f304f;
}


 .container-video {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   z-index: -2;
 }

.video-background {
  z-index: -2;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 15;
}

.modal-content {
  width: 100%;
  height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 5px;
}

.background-modal {
    width: 100%;
    height: 100vh;
    background: url(asset/opcion-1.jpg)no-repeat;
    background-position: center;
    background-size: cover;
}

.film {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(3px); /* o el valor que desees */
  -webkit-backdrop-filter: blur(3px); /* para compatibilidad en Safari */
  background-color: rgba(0, 0, 0, 0.2); /* oscuro y transparente */
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.5s ease;
}

/*======Texto y titulos======*/

.titulo {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4.8rem;
  color: var(--color-fuente);
}

.titulo-2 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-style: normal;  
}

.subtitulo {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.4rem;
  color: var(--color-fuente);
}

.cuenta {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3.2rem;
  color: var(--color-fuente);
}

.texto-reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(40px);
  transition: all 0.4s ease;
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  font-style: normal;
  color: #444; /* gris tenue al inicio */
  text-align: center;
  line-height: 1.6;
}

.texto-reveal.revelado {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  color: var(--color-fuente);
}

.texto-reveal strong {
  color: #fff;
  text-shadow: 0 0 10px #FFD700;
  font-weight: bold;
}


/*========Divs========*/

.modal-content > .subtitulo {
    text-align: center;
}


.main {
    width: 100%;
    height: 100vh;
}

/*========Secciones========*/

.seccion {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.seccion-3 {
  height: 52vh;
}
/* 
.seccion-1 {
    background: url(asset/bg-scroll_02.jpg)no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.seccion-2 {
    background: url(asset/bg-scroll_03.jpg)no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.seccion-3 {
    background: url(asset/bg-scroll_04.jpg)no-repeat;
    background-position: center;
    background-size: cover;
}

.seccion-4 {
    background: url(asset/bg-scroll_05.jpg)no-repeat;
    background-position: center;
    background-size: cover;
}

.seccion-5 {
    background: url(asset/bg-scroll_06.jpg)no-repeat;
    background-position: center;
    background-size: cover;
} */

/*========Articulo========*/

.articulo {
  width: 100%;
  height: 38vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(40px);  
  position: relative;
  z-index: 3;
}

.articulo-main {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.articulo-grande {
  height: 42vh;
}

/*========= Fotos ========*/

.angelaFoto {
  width: 100%;
}

.ph {
    color: var(--color-fuente);
    font-size: 10rem;
}

.link {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-style: normal;  
    text-decoration: none;
    width: 70%;
    height: 2rem;
    font-size: 2.4rem;
    color: #FFD700;
    border-radius: 24px;
    border: 2.2px solid #FFD700;
    width: 24rem;
    height: 6.5vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}


/*=======Botones======*/

.boton {
  display: inline-block;
  padding: 12px 24px;
  margin: 10px;
  border: 2px solid #FFD700; /* dorado elegante */
  color: var(--color-fuente);
  background-color: rgba(255, 255, 255, 0.05); /* leve fondo transparente */
  border-radius: 30px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px); /* opcional para darle un toque mágico */
}

.boton:hover {
  background-color: var(--color-fuente);
  color: #1a1a1a; /* oscuro pero legible */
  box-shadow: 0 0 12px #FFD700aa;
}

.boton-control {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
  background-color: var(--color-fuente); /* dorado llamativo */
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 999;
  display: none;
}

/* Ícono centrado y blanco */
.boton-control i {
  font-size: 38px;
  color: #fff;
}

/* Animación para el botón cuando está en modo "play" */
.boton-animado {
  animation: attentionPulse 1.5s infinite;
}

@keyframes attentionPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}










/* Modal de alias */
#modal-alias {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

/* Contenido del modal */
.alias-modal {
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #FFD700;
  border-radius: 12px;
  padding: 30px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.alias-texto {
  font-family: "Outfit", sans-serif;
  font-size: 2.6rem;
  margin: 20px 0;
  color: #ffffff;
  text-shadow: 0 0 10px #FFD700;
}

.cerrar-modal {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  color: var(--color-fuente);
  border: 2px solid #FFD700;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.cerrar-modal:hover {
  background-color: var(--color-fuente);
  color: #1a1a1a;
}

footer {
  width: 100%;
  height: 50vh;
  background: #151515;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: relative;
  z-index: 3;
}

.container-links {
  width: 100%;
  height: 15vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.link-footer {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 2.2rem;
  text-decoration: none;
}

.container-berealweb {
  width: 100%;
  height: 15vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.texto-footer {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  text-align: center;
}

.logo-berealweb {
  width: 15rem;
}