* {
  margin: 0px;
  padding: 10;
  box-sizing: border-box;
}
body, html {
  font-family: 'D-DIN-Bold', sans-serif;
  color: white;
  background: black;
  scroll-behavior: smooth;
}
.header {
  position: fixed;
  top: -5px;
  width: 100%;
  padding: 20px 60px;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 87%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.5s ease, top 0.3s ease;
}
.header.hidden {
  opacity: 0;
  pointer-events: none;
}
.logo {
  height: 40px;
}
.header ul {
  display: flex;
  list-style: none;
}
.header li {
  margin-left: 30px;
}
.header a {
  color: white;
  text-decoration: none;
}
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
}
.hero-text h1 {
  font-size: 5rem;
  margin-bottom: 10px;
}
.section {
  height: 100vh;
  padding: 100px 40px;
  background: black;
}
.section-misiones {
  position: relative;
  background-image: url('img/fondo1.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 5%;
  color: white;
  overflow: hidden;
}

.section-misiones::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.texto-misiones {
  position: relative;
  padding: 40px;
  max-width: 400px;
  z-index: 2;
  animation: fadeInRight 2s ease-in-out;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

.imagen-flotante {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 900px;
  z-index: 2;
  will-change: transform;
}
.section-clientes {
  position: relative;
  background-image: url('img/fondo3.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 5%;
  color: white;
  /* quitar animación aquí */
}

.texto-clientes {  /* coincide con tu HTML */
  padding: 40px;
  max-width: 800px;
  animation: fadeInRight 4s ease-in-out;
}

/* Keyframes solo para animación del texto */
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 3;
  text-align: left;
  color: white;
  font-size: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Overlay film grain ultra realista más notorio */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;

  /* Grano más fuerte y destellos más visibles */
  background: 
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.08) 0px,   /* negro más visible */
      rgba(255,255,255,0.04) 1px  /* blanco más visible */
    ),
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 2px); /* polvo más brillante */

  background-size: 100% 100%, 15px 15px; /* más densidad del polvo */
  mix-blend-mode: soft-light;
  animation: grainUltra 0.4s steps(2) infinite, dustFlicker 1s linear infinite; /* más rápido */
}

/* Movimiento del grano más evidente */
@keyframes grainUltra {
  0% { transform: translate(0,0); }
  10% { transform: translate(-2px,2px); }
  20% { transform: translate(2px,-2px); }
  30% { transform: translate(-2px,-2px); }
  40% { transform: translate(2px,2px); }
  50% { transform: translate(-2px,0); }
  60% { transform: translate(0,2px); }
  70% { transform: translate(2px,-2px); }
  80% { transform: translate(-2px,2px); }
  90% { transform: translate(0,-2px); }
  100% { transform: translate(0,0); }
}

/* Destellos de polvo más visibles */
@keyframes dustFlicker {
  0%, 100% { opacity: 0.05; }
  50% { opacity: 0.25; }
}


.contacto input,
.contacto textarea,
.contacto button {
  display: block;
  width: 100%;
  margin: 20px 0;
  padding: 15px;
  background: #111;
  border: 1px solid #444;
  color: white;
}
.contacto button {
  background: white;
  color: black;
  cursor: pointer;
}
.hero {
  position: relative;
  overflow: hidden;
}

.bg-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}


.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
 
  opacity: 0.2; /* Ajusta la intensidad del grano */
  mix-blend-mode: overlay;
  z-index: 2;
}

.hero-text {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
}
.texto-misiones {
  padding-left: 30px;
  line-height: 1.8; /* ← esto agrega interlineado más amplio */
}
.texto-clientes {
  padding-left: 30px;
  line-height: 1.8; /* ← esto agrega interlineado más amplio */
}

.boton-mas {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  text-decoration: none;
  font-size: 1em;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.boton-mas:hover {
  background-color: white;
  color: black;
}
.section-cohetes {
  position: relative;
  height: 100vh;
  background: url('img/fondo2.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10%;
  color: white;
}

.texto-cohetes {

  padding: 5px;
  max-width: 600px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  animation: fadeInRight 3s ease-in-out;
}

.linea-vertical {
  width: 1px;
  background-color: white;
  height: 100%;
}

.texto-cohetes h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.texto-cohetes p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.boton-saber-mas {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  border: 1px solid white;
  text-decoration: none;
  transition: 0.3s;
}

.boton-saber-mas:hover {
  background-color: white;
  color: black;
}
.footer {
  background-color: #000;
  color: #fff;
  padding: 100px 20px;
  font-family: Helvetica, sans-serif;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.footer-redes {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.icono {
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.icono:hover {
  opacity: 0.6;
}

.footer-divider {
  width: 1px;
  height: 60px;
  background-color: #555;
}

.footer-contacto {
  text-align: left;
}

.footer-contacto i {
  margin-right: 8px;
}



/* Responsivo */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-divider {
    display: none;
  }

  .footer-contacto {
    text-align: center;
  }
}
.section-misiones-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-misiones-video .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  z-index: 0;
}

.frases-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 90%;
  padding: 0 20px;
}

.frase {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  position: absolute;
  opacity: 0;
  animation: slideFadeInOut 30s infinite;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.frase:nth-child(1) { animation-delay: 0s; }
.frase:nth-child(2) { animation-delay: 6s; }
.frase:nth-child(3) { animation-delay: 12s; }
.frase:nth-child(4) { animation-delay: 18s; }
.frase:nth-child(5) { animation-delay: 24s; }

@keyframes slideFadeInOut {
  0%, 10% {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  15%, 25% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  30%, 100% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .frase {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .frase {
    font-size: 1.5rem;
  }
}
.carousel-clientes-bg {
  background: #000;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.carousel-clientes-bg::before,
.carousel-clientes-bg::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel-clientes-bg::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.carousel-clientes-bg::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.carousel-clientes {
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 10px;
  position: relative;
  z-index: 1;
}

.carousel-track-clientes {
  display: flex;
  width: max-content;
  animation: scroll-logos 30s linear infinite;
  will-change: transform;
}

.carousel-item-clientes {
  flex: 0 0 auto;
  width: 150px;
  margin-right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-item-clientes img {
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(70%);
  transition: filter 0.3s ease;
  user-select: none;
  pointer-events: auto;
}

.carousel-item-clientes img:hover {
  filter: grayscale(0%);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}


.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.5rem;
  opacity: 0.8;
}



section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  border-left: 4px solid #fff;
  padding-left: 15px;
}
section h6 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  padding-left: 0px;
}


section p, section ul {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
}
/* Estilos base */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 101;
}

/* Estilos para pantallas pequeñas */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    transition: right 0.3s ease-in-out;
    padding-top: 80px;
    z-index: 100;
  }

  .header nav.open {
    right: 0;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
  }

  .nav-links li {
    margin-bottom: 20px;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
  }
}
.hero-servicio {
  height: 100vh;
  background-image: url('img/servicio1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: white;
  padding: 0 20px;
  background-attachment: fixed;
  overflow: hidden;
}

.contenido-hero {
  max-width: 800px;
  animation: fadeUp 1.8s ease-out both;
}

.hero-servicio h2 {
  font-size: 4rem;
  border-left: 0px;
}

.hero-servicio p {
  font-size: 1.4rem;
  opacity: 0.9;
}

/* Fade-up al cargar */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-servicio h2 {
    font-size: 2.5rem;
  }
  .hero-servicio p {
    font-size: 1rem;
  }
}
.section-servicios {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
}

.panel-negro {
  width: 50%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  padding: 140px;
}

.contenido-panel {
  color: white;
  max-width: 600px;
}

.contenido-panel h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contenido-panel p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.boton-saber-mas {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid white;
  background: transparent;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.boton-saber-mas:hover {
  background: white;
  color: black;
}

/* Responsivo */
@media (max-width: 768px) {
  .panel-negro {
    width: 100%;
    padding: 40px 20px;
  }

  .contenido-panel h2 {
    font-size: 2rem;
  }

  .contenido-panel p {
    font-size: 1rem;
  }
}
form button {
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: black;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  background: #222;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}













