*{
    /*margin: 0px;
    padding: 0px;*/
    box-sizing: border-box;
    font-family: "Roboto", Arial, Tahoma, sans-serif;
}
body{
    margin: 0 auto;             /* Para centrar el formulario si es el caso */
    /*width: 100vw;*/               /* 100% del ancho de la ventana gráfica */
    /*height: 100vh;*/              /* 100% de la altura de la ventana gráfica */
}

/* Header and Nav */
header {
    /*position: fixed;*/            /* Fija el menú en la ventana */
    top: 0;                     /* Lo pega a la parte superior */
    left: 0;                    /* Lo alinea a la izquierda */
    width: 100%;                /* Ocupa todo el ancho */
    background-image: linear-gradient(to right, #505050, #0d0d0d);  /* Fondo para que sea visible */
    color: white;               /* Color del texto */
    padding: 8px 0;            /* Relleno superior e inferior */
    z-index: 1000;              /* Asegura que esté sobre otros elementos */  
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.logo-container {
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.logo {
    width: 45px; /* Ajusta el tamaño del logo */
    margin-right: 15px;
}
.logo-header{
    color: #e3e4e5;
    font-size: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    margin-right: 15px;
}

nav li {
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    padding: 10px;
    font-weight: bold;
    font-size: 12px;
    position: relative;
    display: inline-block;
}

nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #efb810;
  transform: scaleX(0); /* Oculta la línea por defecto */
  transform-origin: center; /* Define el punto de origen para la animación */
  transition: transform 0.3s ease-in-out; /* Añade una transición suave */
}
nav li a:hover::after {
  color: #c99f5c;  
  transform: scaleX(1); /* Muestra la línea al pasar el ratón */
}

header .fa-bars {
   color: #c99f5c;
   margin-right: 15px;
   font-size: 1.5rem;
   cursor: pointer;
   display: none;
}

header .show-menu {
   opacity: 1;
   visibility: visible;
}

/* Banner de presentacion de imagenes */
.banner{
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("../assets/img/banner-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: cambioBanner 25s linear infinite;
}
.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.3);
}
.banner-content{
    position: relative;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2;
}
.banner-content h1{
    font-size: 50px;
    margin-bottom: 0px;
}
.banner-content h1 span{
    color: white;
}
.banner-content p{
    font-size: 16px;
    width: 60%;
    padding-bottom: 10px;
    text-align: center;
}

@keyframes cambioBanner {
0% { background-image: url("../assets/img/banner-1.jpg"); }
25% { background-image: url("../assets/img/banner-1.jpg"); }
30% { background-image: url("../assets/img/banner-2.jpg"); }
50% { background-image: url("../assets/img/banner-2.jpg"); }
55% { background-image: url("../assets/img/banner-3.jpg"); }
75% { background-image: url("../assets/img/banner-3.jpg"); }
80% { background-image: url("../assets/img/banner-4.jpg"); }
100% { background-image: url("../assets/img/banner-4.jpg"); }
}
/* Seccion de contacto */
.contacto{
  position: relative;
  z-index: 3;
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: linear-gradient(#505050, #0d0d0d);  /* Fondo para que sea visible */background-color: #e3e4e5;
}

.container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-header h2 {
  color: white;
  font-weight: bold;
  font-size: 3em;
  margin-bottom: 20px;
}

.section-header p {
  color: #FFF;
}

.row  {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.contact-info {
  width: 50%;
  padding: 40px;
  width: 48%;
  padding-bottom: 20px;
  padding-top: 20px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
  align-items: center; /* Centra el contenido verticalmente */
}

.contact-info-icon {
  height: 70px;
  width: 70px;
  background-color: white;
  text-align: center;
  border-radius: 50%;
  
}

.contact-info-icon i {
  font-size: 30px;
  line-height: 70px;
  color: black;
}

.contact-info-content {
  margin-left: 20px;
}

.contact-info-content h4 {
  color: white;
  font-size: 1.4em;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: white;
  font-size: 1em;
}

.contact-info-content a{
    color: white;
    text-decoration: none;
}

.contact-form {
  background-color: black;
  padding: 40px;
  width: 48%;
  padding-bottom: 20px;
  padding-top: 20px;
}

.contact-form h2 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 10px;
  color: #efb810;
}

.contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea{
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

.contact-form .input-box span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box textarea:focus ~ span{
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
}

.contact-form .input-box input[type="submit"]
{
  width: 100%;
  background: #efb810;
  color: #FFF;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #efb810;
  transition: 0.5s;
}

.contact-form .input-box input[type="submit"]:hover
{
  background: #FFF;
  color: #00bcd4;
}

/*@media (max-width: 667px) {
  section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .row {
    flex-direction: column;
  }
  
  .contact-info {
    margin-bottom: 40px;
    width: 100%;
  }
  
  .contact-form {
    width: 100%;
  }
}*/

/*seccion de servicios*/
.servicios {
      padding: 5rem 2rem;
      position: relative;
      z-index: 2;
      padding-top: 50px;
      padding-bottom: 80px;
    }

.servicios h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 3rem;
      color: var(--accent);
    }
.servicios h3 {
      text-align: center;
      font-size: .5rem;
      color: var(--accent);
}
    .slider {
  background: #ffffff;
  height: 100px;
  width: 100vw;
  overflow: hidden;
 
}

.slider .move {
  display: flex;
  width: calc(250px * 14);
  animation: animacion 50s linear infinite;
}

@keyframes animacion {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.slider .box {
  height: 100px;
  width: 250px;
  margin-right: 15px;
}

.box img{
  width: 250px;
  height: 100px;
}

/* Fotter*/
footer{
  /*background: black;*/
  background-image: linear-gradient(to right, #0d0d0d, #505050);
  padding: 20px 0;
}

.footer_container{
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap-reverse;
    color: white;
}

.logo-fotter{
    width: 180px;
    font-size: 16px;
    font-weight: bold;
    color: #e3e4e5;
}

.social_media{
  margin: 20px 150px;
}

.social_media a{
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: .6s;
}

.social_media a:hover{
  color: gold;
}



/* Media Query */
/*@media (max-width: 900px) {
    header nav ul {
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(1px);
        border-radius: 1rem;
        position: absolute;
        right: 0px;
        top: 60px;
        width: 100%;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        z-index: 1;
    }
    header nav ul li {
        padding: 1rem;
        text-align: center;
    }
    header .fa-bars {
        display: block;
        font-size: 1 rem;
    }

    .banner-content h1{
        text-align: center;
    }
}
@media (max-width: 500px) {
    header nav {
        display: flex;
        justify-content: center;
    } 
    header nav ul {
        width: 95%;
    }
}*/