@charset "UTF-8";
/* CSS Document */
 body, html { scroll-behavior:smooth;
	          height: 100%;
              margin: 0;
	          background-color: #08070F;
	          color: white;
	} 
* {
	margin: 0;
	padding: 0;
}
a { 
	text-decoration: none;
	color: white;
	}

#masthead{
	padding: 65px 0;
}

/* 3 columnas: flecha — título — espacio */
.site-brandign {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Centrado perfecto */
.site-title {
 font-family: "Zodiak";
  font-size: 40px;
  font-style: normal;
  font-weight: 100;
  line-height: 90%;
  letter-spacing: -1px;
  max-width: 120px;
  margin: 0 auto;
  text-align: center;
}

/* Flecha alineada a la izquierda */
.flecha_izq {
  font-size: 3em;
  justify-self: start;
  padding-left: 1em;
  transition: padding-left 900ms ease;
  display: inline-block;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

@keyframes moverFlecha {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(-20px); }
  100% { transform: translateX(0); }
}

.flecha_izq:hover {
  animation: moverFlecha 1s ease-in-out infinite;
}

/* Caja vacía solo para equilibrar el centrado */
.right-space {
  justify-self: end;
}



.image-container2 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENEDOR DEL LOGO */
.hover-content2 {
  position: absolute;
  inset: 0;                 /* ocupa todo */
  display: flex;
  justify-content: center;  /* centro horizontal */
  align-items: center;      /* centro vertical */
  z-index: 2;
}

/* LOGO */
.hover-content2 img {
  width: 7vw;             
  height: auto;
}



.content-section {
	padding: 120px 20px;
  text-align: center;
}

.content h2 {
	font-size: clamp(40px, 5vw, 150px);
  font-weight: 300;
  line-height: 90%;
  letter-spacing: -2px;
  margin: 7vw;
  padding-left: 80px;
}

.content h4 {
	font-size: 2vw;
  font-weight: 300;
  line-height: 90%;
  letter-spacing: -2px;
  word-spacing: 5px;
  margin: 7vw;
}

#certificado_piloto {
	width: 40%;
	border-radius: 40px;
}
#inspire {
	width: 40%;
}
.parallax {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.parallax video {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#playBtn {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}
#playBtn.playing {
  background: rgba(0,0,0,0.3);
}

#playBtn.paused {
  background: rgba(0,0,0,0.6);
}

.content2 h1{
	font: oblique;
	font-family: Impact;
	font-size: 5vw;
	padding: 20px;
	margin-right: 40vw;
}

.texto-foto {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3vw;
}

.texto-foto h4 {
	font-weight: lighter;
	font-size: 3vw;
	max-width: 50vw;
	margin-left: 5vw;
}

.content2 img {
  width: 20vw;
  border-radius: 40px;
  margin-right: 10vw;
}

.video-texto {
	display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3vw;
}
.video-wrapper {
  width: 60vw;
  margin-top: 5vw;
}

.video-wrapper video {
  width: 100%;
  border-radius: 20px;
  margin-left: 2vw;
}
.video-texto h3 {
	font-family: impact;
	font-weight: lighter;
	font-size: 3vw;
	max-width: 50vw;
	margin-right: 5vw;
}
.texto-enlace {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 5vw;
}

.texto-enlace a {
  font-family: impact;
  margin-top: 1vw;
  font-size: 2vw;
  
}