html{
    height: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
   
  }

  body{
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-size: cover;      /* para que cubra toda la pantalla */
  background-position: center; /* centrada */
  background-attachment: fixed; /* para que no se mueva con el scroll */
  background-repeat: no-repeat;
  background-color: rgb(15 99 148);

  }
  /* .video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; detrás de todo
} */

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* llena la pantalla como background-size: cover */
}


  
  header{
    font-family: "Montserrat", sans-serif;
  }
/*c0fa14*/
/*---------------------------------Titulo Animacion-----------------------------------*/
.titulo-principal-Lets,
.titulo-principal-talk {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1400%;
  display: flex;
  margin: 0;
  position: relative;
  opacity: 0; /* ocultos al inicio */
}

/* Primer título (LET’S) */
.titulo-principal-Lets {
  color: #ffffff;
  justify-content: left;
  align-items: flex-start;
  animation: slideInLeft 0.8s ease-out forwards;
  animation-delay: 0.1s; /* espera antes de animar */
}

/* Segundo título (TALK) */
.titulo-principal-talk {
  color: #c0fa14;
  justify-content: center;
  margin-right: 35%;
  margin-bottom: -6%;
  margin-top: -5%;
  
  /* 🔥 Ambas animaciones juntas */
  animation: 
    slideInLeft 1s ease-out forwards 0.5s, /* animación de entrada con delay */
    cambioColor2 20s infinite ease-in-out; /* cambio de color cíclico */
}

/* Animaciones */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*---------------------------------Titulo Animacion-----------------------------------*/


.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* llena la pantalla como background-size: cover */
}

.contenido {
  position: relative;
  z-index: 1; /* se muestra encima del video */
  color: #fff; /* texto legible sobre el video */
   display: flex;
  flex-direction: column;
  min-height: 100vh;
}
/*Videoo-----------------BACKGROUND-------------------------------*/

  nav {
  display: flex;
  align-items: center;    
  position: relative; 
         
}

  nav img {
  margin-top: 7%;
  margin-left: 20%;
  width: 170px;
  height: auto;
  
}

nav ul {
  display: flex;
  gap: 130px;                 /* espacio entre items */
  list-style: none;          /* quita puntos */
  margin: 0;
  padding: 0;
  font-size: 120%;
  position: absolute;   /* saca el ul del flujo */
  left: 50%;            /* lo lleva al centro */
  transform: translateX(-50%);
}



nav ul li a {
  text-decoration: none;     
  color: #ffffff;              
  font-weight: 1;    
  align-items: center;  
  transition: color 0.7s ease, background-color 0.7s ease; 
}
/* cambia el color del menu y hace sombra */
nav ul li a:hover {
  position: relative;  
  color: #c0fa14;
  border-radius: 5px;         /* opcional: esquinas redondeadas */
  overflow: hidden;             /* oculta lo que sobresalga */
  transition: color 0.7s ease; 
}

  main {
      flex: 1; /* ocupa todo el espacio disponible */
    }



  
  /* footer {
    text-align: center;
    padding: 1px;
    background: transparent;
    color: #c0fa14;
    font-size: small;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
  } */

.contenedor-boton {
  display: flex;
  justify-content: center; /* centra horizontal */
  align-items: center;     /* centra vertical si el contenedor tiene altura */
}

.contenedor-boton-contact {
  display: flex;
  justify-content: center; /* centra horizontal */
  align-items: center;     /* centra vertical si el contenedor tiene altura */
  text-decoration: none;
  color: black;  /* centra vertical si el contenedor tiene altura */
}

/* .contenedor-boton-contact a {
  text-decoration: none;
  color: black;
} */


/* button {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  margin-top: 3%;
  font-size: 120%;
  padding: 10px 20px;
  background-color: #c0fa14;
  color:black;
  transition: color 0.7s ease, background-color 0.7s ease;
  border-radius: none; 
  border-bottom: 0%;
  box-shadow: none;
  border-style: none;
 
} */

.servicios {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 120px;
   justify-content: center;
 
}

.caja {
  width: 23%;
  background: #c0fa1400;
  border-radius: 15px;
  text-align: center;  
  margin-top: -7%;
}

.caja img {
  width: 30%;                   /* la imagen ocupa todo el ancho de la caja */
  height: auto;               /* puedes cambiar este valor */
  object-fit: cover;          /* mantiene proporción recortando si es necesario */
  margin: auto;
  /* opacity: 0.67; */
   border: 3px solid #c0fa14; 
   border-radius: 10%;
}


.caja p {
  font-size: 30px;
  font-weight: 100;
  /* animation: cambioColor 13s infinite ease-in-out; */
  color: #ffffff;
  /* color:white; */
  text-align: center;
   font-family: "Montserrat", sans-serif;
  
}



/*FORMULARIO*/

.contacto {
  
  max-width: 700px;
  margin: 0px auto;
  margin-top: 5%;
  padding: 40px;
  background: rgba(0,0,0,0.6);
  border-radius: 15px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10%;
}

.contacto h2 {
  text-align: center;
  font-weight: 300;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.contacto p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #c0fa14;
}

.form-contacto .campo {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-contacto label {
  margin-bottom: 5px;
  font-weight: 400;
}

.form-contacto input,
.form-contacto textarea {
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}
/* Cambia de color aboutme---------------------------------------------------------------------------- */


@keyframes cambioColor {
  0%   { color: #ffffff; }
  10%   { color: #ecfcbd; }
  20%   { color: #dcf494; } 
  30%   { color: #d6f37d; } 
  40%   { color: #ccfb40; }     
  50%   { color: #c0fa14; }   
  60%  { color: #ccfb40; }   
  70%  { color: #d6f37d; }   
  80% { color: #dcf494; } 
  90%   { color: #ecfcbd;; }
  100%   { color: #ffffff;; }   
} 


.form-contacto input:focus,
.form-contacto textarea:focus {
  border: 2px solid #c0fa14;
  background-color: #111;
  color: #fff;
}

button[type="submit"] {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #c0fa14;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


button[type="submit"]:hover {
  background-color: #a7db10;
}

@media (max-width: 1300px) {
.titulo-principal-Lets {
    font-size: 705%;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 1%;
     position: relative;
    z-index: -1;
  }
  .titulo-principal-talk{
    font-size: 705%;
  }
  .servicios {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 120px;
    justify-content: center;
}
.caja p {
    font-size: 17px;
    font-weight: 100;
    display: flex;
    color: #ffffff;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    justify-content: center;
}
  
}


/* ======================= */
/* EXTRA: MODO 375PX       */
/* ======================= */

@media (max-width: 480px) {
  
  .titulo-principal-Lets {
    font-size: 705%;
    position: relative;
    z-index: -1;

  }
  .titulo-principal-talk{
    font-size: 705%;
    margin-left: 170px;
  }
  .caja{
    width: 36%;
  }

.servicios {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 120px;
    justify-content: center;
}
.caja p {
    font-size: 17px;
    font-weight: 100;
    display: flex;
    text-decoration: none;
    color: #ffffff;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    justify-content: center;
}
.numero{
    margin-top: 10%;
    margin-bottom: 10%;
    font-size: 17px;
    font-weight: 100;
    text-decoration: none;
    color: #ffffff;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    display: flex;
    justify-content: center;
}
  
  .contenedor-boton a{
  text-decoration: none;
  color: inherit;  /* centra vertical si el contenedor tiene altura */
}
.contenedor-boton-contact a{
  text-decoration: none;
  color: black;  /* centra vertical si el contenedor tiene altura */
}
}
