@import url('https://fonts.googleapis.com/css?family=Raleway:300&display=swap');
  @import url('https://fonts.googleapis.com/css?family=Monoton&display=swap');
  @import url('https://fonts.googleapis.com/css?family=Poppins:500&display=swap');
 


body{

    background-color: #171717;
    font-family: poppins;
    color: #fff;


 }


 ::-webkit-scrollbar{
  width: 4px;
  color:#cc9933;
  transition: all .4s ease;
}
::-webkit-scrollbar-thumb {
  background: #cc9933; 
  border-radius: 4px;
  width: 4px;
  transition: all .4s ease;
}
::-webkit-scrollbar-track {
  background: #101010; 
  border-radius: 4px;
  width: 4px;
}

 .ima-knt {
    height: 80px;
    position: absolute;
    top: 2%;
    left: 2.5%;
    opacity: .8;
    transition: all .4s ease;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
  z-index: -1; /* Asegura que las partículas estén detrás de otros contenidos */
  pointer-events: none; /* Opcional: para que los clics pasen a través del contenedor de partículas */
  display: block;
}
.active-link {
 
border-radius: 10px;
background-color:#ffffff38;
}

 h1 {
    text-align: center;
    margin: 0 auto 0.5em;
  }
  
  @media (max-width: 999999px) and (min-width: 1221px) {
  .contact {
    display: flex;
    position: fixed;
    width: 10%;
    right: 2%;
    top: 60px;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 3;
}
  




.contact {
  display: flex;
  flex-wrap: wrap;
  
}
  }
.cen-ser{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
}
.contact img {
  margin: 10px;
  height: 30px;
  opacity: .6;
  transition: all .4s ease;
}
  .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Columnas responsivas */
    gap: 10px;
    max-width: 960px;
    margin-left: 1%;
    margin-right: 1%;
    padding: 1em;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
  }

  .container {
    
    color: white;
    font-family: poppins;
  }
  
  .card {
    position: relative;
    z-index: 20;
    width: 100%; /* Ancho del 100% para ocupar el espacio disponible */
    height: 350px;
    padding: 6px;
    margin: 0 1em 2em;
    cursor: pointer;
  }
  
  
  .card img {
    width: 100%; /* Ancho máximo del 100% para ajustarse al contenedor */
    height: 350px; /* Altura fija de la imagen */
    object-fit: cover; /* Ajusta la imagen manteniendo la relación de aspecto y recortando el exceso */
    transition: transform 0.3s ease; /* Añade una transición al efecto de la imagen */
  }
  
  .card:hover img {
    transform: scale(1.1); /* Agranda la imagen al pasar el ratón */
  }
  
  
  .card::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    border: 3px solid #333;
    background: #101010;
    border-radius: 10px;
    transition: all 1s ease-in;
  }
  
  .card::before {
    content: "";
    display: block;
    position: absolute;
    width: 75%;
    height: 75%;
    z-index: -1;
    box-shadow: 0px 0px 50px 0px rgb(255, 217, 1);
    opacity: 0;
    transition: all 3s linear;
    border-radius: 50%;
  }
  
  .cardContents {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 20;
  }
  
  .cardText {
    position: absolute;
    bottom: -51%;
    left: 0;
    right: 0;
    transition: bottom .5s ease-in;

  }
  
  .cardText h2 {
    margin: 0;
  }
  
  .cardText h3 {
    margin: 0;
  }
  
  .cardText p {
    margin: 0.5em 0 0;
  }
  
  .card:hover::after {
    background: #000;
    border-color: #cc9933;
  }
  
  .cardText {
    position: absolute;
    bottom: -50%;
    left: 0;
    right: 0;
    transition: bottom .5s ease-in;
    background: #000000d6;
}


  .card:hover::before {
    opacity: 1;
    -webkit-animation-name: glowSpin;
            animation-name: glowSpin;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  
  .card:hover .cardText {
    bottom: 0;
  }
  
  @-webkit-keyframes glowSpin {
    0% {
      top: 10px;
      left: 25%;
    }
    25% {
      top: 25px;
      left: 10px;
    }
    50% {
      top: 15%;
      left: 25%;
    }
    75% {
      top: 25%;
      left: 15%;
    }
    100% {
      top: 10px;
      left: 25%;
    }
  }
  
  @keyframes glowSpin {
    0% {
      top: 10px;
      left: 25%;
    }
    25% {
      top: 25px;
      left: 10px;
    }
    50% {
      top: 15%;
      left: 25%;
    }
    75% {
      top: 25%;
      left: 15%;
    }
    100% {
      top: 10px;
      left: 25%;
    }
  }
  
  @media only screen and (max-width: 430px){

    .card {
      position: relative;
      z-index: 20;
      width: 82%;
      height: 350px;
      padding: 6px;
      margin: 0 2em 2em;
      cursor: pointer;
    }
    .cardText {
      position: absolute;
      bottom: -50%;
      left: 0;
      right: 0;
      transition: bottom .5s ease-in;
      background: #000000d6;

  }
    
  }

  @media only screen and (max-width: 540px) and (min-width: 431px) {

    .cardText {
      position: absolute;
      bottom: -39%;
      left: 0;
      right: 0;
      transition: bottom .5s ease-in;
  }
  .card {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 350px;
    padding: 6px;
    margin: 0 0em 2em;
    cursor: pointer;
}
.card {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 350px;
  padding: 6px;
  margin: 0 0em 2em;
  cursor: pointer;
}

 
  }
  @media only screen and (max-width: 720px) and (min-width: 541px)  {
    /* Estilos adicionales para pantallas más pequeñas */
    .card {
      margin: 0 0.5em 2em; /* Reducir el margen horizontal */
    
    }
    .cardText {
      position: absolute;
      bottom: -48%;
      left: 0;
      right: 0;
      transition: bottom .5s ease-in;
      background: #000000d6;


  }

  .cardText p {
    margin: 0.9em 0 0;
}

.ser-espa{

  display: none;
}
.card {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 350px;
  padding: 6px;
  margin: 0 0em 2em;
  cursor: pointer;
}
    
  }
  
  
  
  /* Estilos para el botón */
  .button {
    display: block;
    width: 100%;
    height: 50%;
    padding: 10px;
    background-color: #cc9933;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color:#ecae32; /* Cambia de color al pasar el ratón */
  }

/* Estilos menu */
 #barra-navegacion {
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
   text-transform: uppercase;
  
}

.enlaces-navegacion {
    display: flex;
  
}

.enlaces-navegacion a {
    color: white;
    text-decoration: none;
    padding: 10px ;
    transition: background 0.3s;
}


.enlaces-navegacion a:hover { 
  color: #cc9933;
}



.boton-menu {
    font-size: 30px;
    color: white;
    display: none;
    text-align: right;
}
#verificar{
        display: none;

    }


/* Estilos para el menú hamburguesa */
@media (max-width: 720px) {
    .boton-menu {
        display: block;
    }
    #verificar{
        display: none;

    }
    #barra-navegacion {
        display: flex;
        justify-content: right;
        align-items: center;
        padding: 10px 20px;
        background-color: transparent;
        color: #fff;
    }

    .enlaces-navegacion {
        position: fixed;
        width: 100%;
        height: 100vh;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px); /* Soporte para Safari */
        top: 0;
        left: -100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        z-index: 21;
        text-transform: uppercase;
    }

    .enlaces-navegacion a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 20px;
    }

    #verificar:checked ~ .enlaces-navegacion {
        left: 0;
    }

 
    .boton-cerrar {
      display: block;
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 30px;
      color: white;
      background: none;
      border: none;
  }


    .titulo-ser{
      text-align: center;
      font-size: 38px;
      text-transform: uppercase;
    }
    

}

/* Ocultar el botón de cerrar por defecto */
.boton-cerrar {
    display: none;
}

/* Mostrar el botón de cerrar cuando el menú está abierto */
#verificar:checked ~ .enlaces-navegacion .boton-cerrar {
    display: block;
}




/* Estilos menu */



/* css menu */



































/* css  */
@media (max-width: 1220px) {
.contact {
  display: flex;
  /* position: fixed; */
  /* width: 100%; */
  /* right: 2%; */
  /* top: 60px; */
  /* height: 100%; */
  /* align-items: center; */
  justify-content: center;
  /* flex-direction: column; */
  z-index: 3;
}
}

/* css fin */










/* css  */


/* css fin */









/* css  */


/* css fin */








/* css  */


/* css fin */



  /**/
  .modal-ws {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 9999;
  }
  
  .modal-content-whatSapp {
    background-color: black;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    text-align: center;
    border-radius: 10px;
    color: white;
    position: relative;
    z-index: 9999;
  }
  
  #title-modal {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #cc9933;
  }
  
  #message-area {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: white;
    margin: 20px 0;
  }
  
  .message-fade {
    opacity: 0;
    animation: fade-in 2s ease-in-out forwards;
  }
  
  @keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .whatsapp-button {
    background-color: #17853f;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
  }
  
  .whatsapp-button:hover {
    background-color: #1DA151;
  }
  
  .whatsapp-button i {
    font-size: 24px;
    margin-right: 10px;
  }
  
  .whatsapp-button span {
    vertical-align: middle;
  }
  

      
.cerrar-modal{
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  padding: 10px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  float: right;
    cursor: pointer;
  
  
  }
  
  
  .cerrar-modal:hover{
    color:#cc9933;
  }



    .footer {
        background: #080808;
        width: 100%;
        padding: 20px;
        color: whitesmoke;
        display: flex;
        flex-direction: row;
        font-family: poppins;
        align-items: center;
        justify-content: center;
    }

    .footer .footer-text {
        position: relative;
        display: inline;
        font-size: 18px;
        font-weight: 400;
        opacity: 1;
    }






    @media (max-width: 9999px) and (min-width: 721px) {
        #barra-navegacion {
            display: flex;
            justify-content: right;
            align-items: center;
            background-color: transparent;
            color: #fff;
            text-transform: uppercase;
            padding: 10px 20px;
        }

        .enlaces-navegacion {
            display: flex;
            align-items: center;
            justify-content: right;
            font-family: poppins;
        }


        .enlaces-navegacion {
            text-decoration: none;
            color: #fff;
            font-size: 14px;
            opacity: .7;
            transition: all .4s ease;
        }
        .titulo-ser{
          text-align: center;
          font-size: 4vw;
          text-transform: uppercase;
        }





    }
