@import url('https://fonts.googleapis.com/css2?family=Bacasime+Antique&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quattrocento:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');


/*--------------------- Navbar-----------------------------*/
body {
  /*font-family: 'Roboto', sans-serif;/*
  margin: 0;
  background-color: #ffffff;
  /* Color de fondo general */
  color: rkred;
  /* Color del texto */
  line-height: 1.6;
  overflow-x: hidden !important;
  /* Evita scroll horizontal */
}


header {
  top: 0;
  z-index: 10;
  /*background-color: rgba(241, 237, 231, 0.992); /* Color de fondo de la cabecera */
  /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);*/
  /*padding: 10px 0;*/
}

h4{
  color: #000;
}

/*-------NAVBAR----------*/

.logo_link{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.navbar-nav .nav-link {
  color: #ffffff;
  transition: color 0.3s;
  font-weight: 600;
}

.navbar-nav .nav-link:hover {
  color: #f1c40f;
  /* Color del texto del menú al pasar el ratón */
}

.navbar-toggler {
  background-color: rgb(0, 0, 0) !important;
}

#icon {
  color: white;
  font-size: 2.2rem;
}


h1,
h3,
h5 {
  margin: 15px 0;
  color: #c02229;
  /*text-shadow: 1px 1px 5px rgba(55, 51, 51, 0.2);*/
  /* Sombra de texto */
}


/*------------------------------------------------*/
/*-------EFECTO AL PASAR A LA OTRA PAGINA --------*/
/*------------------------------------------------*/
.ripple-wrap {
  display: none;
  overflow: hidden;
  position: fixed;
  font-size: 0;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@keyframes RIPPLER {
  0% {
    border-width: 0;
  }

  40% {
    height: 0;
    width: 0;
    border-width: 1500px;
    margin-top: -1500px;
    margin-left: -1500px;
    border-color: #ca0b0b;
  }

  41% {
    height: 0;
    width: 0;
    border-width: 1500px;
    margin-top: -1500px;
    margin-left: -1500px;
    border-color: #ac0505;
  }

  100% {
    border-width: 1500px;
    height: 2000px;
    width: 2000px;
    margin-top: -2500px;
    margin-left: -2500px;
    border-color: #8a0808;
  }
}

@keyframes RIPPLER {
  0% {
    border-width: 0;
  }

  40% {
    height: 0;
    width: 0;
    border-width: 1500px;
    margin-top: -1500px;
    margin-left: -1500px;
    border-color: #ca0b0b;
  }

  41% {
    height: 0;
    width: 0;
    border-width: 1500px;
    margin-top: -1500px;
    margin-left: -1500px;
    border-color: #ac0505;
  }

  100% {
    border-width: 1500px;
    height: 2000px;
    width: 2000px;
    margin-top: -2500px;
    margin-left: -2500px;
    border-color: #8a0808;
  }
}

.ripple {
  display: block;
  height: 0;
  width: 0;
  border-width: 0px;
  border-style: solid;
  border-color: #8a0808;
  border-radius: 100%;
  position: absolute;
  top: 300px;
  left: 300px;
  -webkit-animation: none;
  animation: none;
}

.ripple-wrap.goripple {
  display: block;
}

.ripple-wrap.goripple .ripple {
  -webkit-animation-name: RIPPLER;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-name: RIPPLER;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}


/*--------------------- Navbar-----------------------------*/


/*-------reveal while scroll--------*/
@keyframes reveal {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.fadein {
  opacity: 0;
  /* Invisible inicialmente */
  transition: opacity 0.9s ease-in-out;
  /* Suavizado de la opacidad */
}

.fadein.visible {
  opacity: 1;
  /* Visible cuando se activa */
}


/*------------------------Nosotros-----------------*/

/* Estilos para la sección Nosotros */
.nosotrosheader {
  text-align: center;
  position: relative;
  background-image: linear-gradient(0deg, #000000e0 10%, transparent 100%), url(../img/imgSeccion/IMG_9035.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /*background-position: center r;*/
  /* Efecto parallax */
  width: 100%;
  height: 100vh;
  overflow: hidden;
  animation: fadeIn 1s ease forwards;
  background-position: bottom;
}

.titlenosotros {
  position: absolute;
  bottom: 15% !important;
  font-size: 30px;
  padding: 0 5rem;
}

.nosotrosheader h1 {
  color: #ffc107;
  font-size: 60px;
  font-family: 'Oswald', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

.nosotrosheader p {
  color: #fff5f5;
  font-size: 1rem !important;
  font-family: 'Open-sans', sans-serif;
  padding: 0 5rem;
}


/* Estilos generales para secciones */
#nosotros {
  background-color: #ebebeb;
  padding: 0 0 3rem 0;
  color: #000;
}

.bgnosotros{
  margin-bottom: 2rem;
}


/* Texto de presentación */
.nosotrostext {
  padding: 2rem 0 0 0;
  max-width: 90%;
  margin: auto;
  text-align: center;
}

.nosotrostext h1 {
  font-family: 'Oswald', sans-serif !important;
  font-size: 2.5rem;
  font-weight: bold;
  color: #c02229;
  margin-bottom: 60px;
  position: relative;
  margin-bottom: 1.2rem;
}

.nosotrostext p {
  font-family: 'Open-Sans', sans-serif !important;
  font-size: 0.9rem;
  text-align: justify;
  line-height: 1.6;
}

/* Contenedor general para Misión y Visión */
.mision-vision-container {
  display: flex;
  flex-wrap: wrap;
  /*gap: 2rem;*/
  max-width: 100%;
  margin: 1.5rem auto;
  justify-content: center;
}

.comtenedor-mision-vision {
  flex: 1 1 50%;
  /* Asegura que cada sección ocupe el 45% del espacio */
  display: flex;
  flex-direction: column;
  align-items: center;
  /*overflow: hidden;*/
}


/* Estilos de las secciones individuales*/
.mision,
.vision {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  transition: box-shadow 0.5s ease;
}

.misionimg,
.visionimg {
  width: 100%;
  /*height: 218px;*/
  overflow: hidden;
}

.misionimg img,
.visionimg img {
  width: 100%;
  height: 15.625rem;
  object-fit: cover;
}

.mision:hover,
.vision:hover {
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

/* Texto de Misión y Visión */
.misiontext,
.visiontext {
  padding: 1rem;
  text-align: center;
}

.misiontext h1,
.visiontext h1 {
  font-family: 'Open-Sans', sans-serif !important;
  font-weight: bold;
  color: #000000;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.misiontext p,
.visiontext p {
  font-family: 'Open-Sans', sans-serif !important;
  color: #333;
  text-align: justify;
  font-size: 0.9rem !important;
  line-height: 1.5;
}

@media (min-width: 1200px) {
  .mision-vision-container {
    max-width: 1140px;
  }
}

/* Responsivo para pantallas medianas */
@media (max-width: 992px) {
  .mision-vision-container {
    max-width: 960px;
  }

  .nosotrosheader {
    height: 80vh;
  }

  .nosotrosheader h1 {
    font-size: 3rem;
  }

  .nosotrosheader p {
    font-size: 1rem;
  }

  .nosotrostext p {
    font-size: 1rem;
  }

  .comtenedor-mision-vision {
    flex: 1 1 45%;
  }

  .mision,
  .vision {
    width: 90%;
  }

  .misiontext p,
  .visiontext p {
    font-size: 1rem;
  }

  .misionimg,
  .visionimg {
    width: 100%;
    /*height: 218px;*/
    overflow: hidden;
  }

  .misionimg img,
  .visionimg img {
    width: 100%;
    height: 14.554rem;
    object-fit: cover;
    transition: transform 0.5s;
  }
}

/* Responsivo para pantallas de tamaño medio-pequeño */
@media (max-width: 768px) {
  .mision-vision-container {
    max-width: 720px;
    gap:2rem;
  }

  .titlenosotros{
    bottom: 10% !important;
  }

  .nosotrosheader {
    height: 70vh;
  }

  .nosotrosheader h1 {
    font-size: 2.8rem;
  }

  .nosotrosheader p {
    font-size: 1.25rem;
  }

  .nosotrostext p {
    font-size: 1rem;
  }

  .comtenedor-mision-vision {
    flex: 1 1 100%;
  }

  .mision,
  .vision {
    flex: 0 0 auto;
    width: 60%;
  }

  .misionimg,
  .visionimg {
    width: 100%;
    /*height: 218px;*/
    overflow: hidden;
  }

  .misionimg img,
  .visionimg img {
    width: 100%;
    height: 14.554rem;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .redes{
    visibility: hidden;
  }
}

@media (max-width: 600px){
  .nosotrosheader h1 {
    font-size: 2rem;
  }
  .nosotrosheader p {
    font-size: 1rem !important;
  }
  .titlenosotros {
    bottom: 5% !important;
  }
}

/* Responsivo para pantallas pequeñas */
@media (max-width: 576px) {
  .mision-vision-container {
    max-width: 540px;
  }

  .titlenosotros{
    padding: 0 1rem;
  }

  .nosotrosheader p {
    font-size: 1rem;
    padding: 0;
  }

  .comtenedor-mision-vision {
    flex: 1 1 100%;
  }

  .mision,
  .vision {
    flex: 0 0 auto;
    width: 70%;
  }

  .nosotrostext p {
    font-size: 1rem;
  }

  .misionimg,
  .visionimg {
    width: 100%;
    /*height: 218px;*/
    overflow: hidden;
  }

  .misionimg img,
  .visionimg img {
    width: 100%;
    height: 12.554rem;
    object-fit: cover;
    transition: transform 0.5s;
  }
}


/* Estilos de la sección SIG */

#sig {
  background-color: #ffffff;
  position: relative;
  /*box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);*/
  /*transition: background 0.3s ease;*/
  padding: 3rem 0;
  overflow: hidden;
}

#sig .section-header {
  text-align: center;
}

#sig .section-header h3 {
  font-family: 'Oswald', sans-serif !important;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 60px;
  position: relative;
  margin-bottom: 1rem;
}


#sig .section-header p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: rgb(255, 255, 255);
}

.gradient-line {
  background: linear-gradient(45deg, #ff0018, #ff5e5e);
  width: 18%;
  height: 0.2rem;
  border-radius: 1.25rem;
  margin: auto;
}

/* Estilos de las tarjetas */
.card {
  width: 75%;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

.card:nth-child(odd) {
  animation-delay: 0.2s;
}

.card:nth-child(even) {
  animation-delay: 0.4s;
}
/*
.card:hover {
  transform: translateY(-5px);
}
*/
.card-body label {
  font-size: 1.2rem;
  color: #373737;
  font-weight: 600;
  font-family: 'Open-Sans', sans-serif;
}

.counters {
  margin: 2rem 0;
}

.counters div {
  padding: 1rem;
}

/* Estilos para listas */
ul {
  list-style-type: none;
  padding: 0;
}

/* Estilos para firmas */
.signature {
  margin: 2rem 0;
  text-align: center;
}

.signature p {
  font-size: 1rem;
  color: rgb(0, 0, 0);
}

/* Ocultar elementos inicialmente */
.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Mostrar elementos cuando son visibles */
.show {
  opacity: 1;
  transform: translateY(0);
}

#toggleButton {
  justify-content: center;
  display: flex;
  margin: auto;
  background-color: #ffffff;
  color: #c70000;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: underline;
  font-weight: 600;
}

/* Animación de latido */
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@media (max-width: 992px) {

  #sig .section-header {
    max-width: 960px;
    margin: auto;
  }

  #sig .section-header h3 {
    font-weight: 700;
    margin-bottom: 1rem;
  }

  #sig .section-header p {
    font-size: 1rem;
  }

  #sig .proyectos-container {
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 2rem;
    gap: 2rem;
    row-gap: 2rem;
    /*background-color: #efeeee;*/
    /*border-radius: 20px;*/
  }
}

@media (max-width: 768px) {

  #sig .section-header {
    max-width: 720px;
    margin: auto;
  }

  #sig .section-header h3 {
    font-weight: 700;
    margin-bottom: 1rem;
  }

  #sig .section-header p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {

  #sig .section-header {
    max-width: 540px;
    margin: auto;
  }

  #sig .section-header h3 {
    font-weight: 700;
    margin-bottom: 1rem;
  }

  #sig .section-header p {
    font-size: 1rem;
  }
}

/*-------------------------------------------------------------------*/

/*---------------------------HISTORIA----------------------------------------*/

#timeline {
  background-color: #f0f0f0;
  padding: 5rem 0;
  overflow: hidden;
}

#timeline .section-header {
  text-align: center;
  margin-bottom: 1rem;
}

#timeline .section-header h3 {
  font-size: medium;
  color: #c02229;
  position: relative;
  font-style: italic;
}

#timeline .section-header h4{
  font-size: 2.5rem;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 2rem;
}



/*---------Otro timeline--------*/

.time{
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-container {
  display: flex;
  width: 95%;
  height: 90vh;
}
.years {
  width: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
  border-right: 2px solid #ddd;
  user-select: none;
}
.year {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #888;
  margin: 5px 0;
  cursor: pointer;
}

.year-text{
  width: 40%;
}
.year.active {
  color: #3f3f3f;
  font-weight: bold;
}
.contenidoo{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
.content-year {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px 0 5rem;
  text-align: left;
}
.year-text h1 {
  font-size: 5.2rem;
  margin: 0;
  color: #ffc107;
  font-family: Oswald, sans-serif;
  text-shadow: 3px 2px 0px rgb(0 0 0 / 84%);
}
.year-text h4{
  font-size: 2rem;
  margin: 2rem 0 1rem 0;
  font-family: 'Open-Sans', sans-serif;
  font-weight: 550;
  color: #c10000;
}
.year-text p {
  font-family: 'Open-Sans', sans-serif;
  font-size: 1rem;
  margin-top: 10px;
  color: #666666;
}
.image-contenido {
  width: 55%;
  display: flex;
  align-items: center;
}
.image-contenido img {
  width: 100%;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.year-content {
  display: none;
  opacity: 0;
  transition: opacity .8s ease-in-out;
}

.year-content.active {
  display: block;
  opacity: 1;
}

/* 📱 Diseño responsive para tablets */
@media (max-width: 1024px) {
  .timeline-container {
      flex-direction: column;
      align-items: center;
      height: auto;
      width: 90%;
      /*padding: 20px;*/
  }
  .years {
      display: flex;
      flex-direction: row;
      width: 100%;
      justify-content: space-between;
      border-right: none;
      border-bottom: 2px solid #ddd;
      padding: 7px 0;
  }
  .year {
      margin: 0 10px;
      font-size: 16px;
  }
  .content-year {
      width: 100%;
      padding: 20px 0;
  }
  .contenidoo {
      flex-direction: column;
      text-align: center;
  }
  .year-text {
      width: 100%;
  }
  .image-contenido {
      width: 100%;
      margin-top: 20px;
  }
}

/* 📱 Diseño responsive para móviles */
@media (max-width: 600px) {
  .year-text h1 {
    font-size: 4.5rem;
  }
  .year-text h4 {
      font-size: 1.5rem;
  }
  .year-text p {
      font-size: 0.9rem;
  }
  .year {
      font-size: 14px;
      margin: 0 5px;
  }
}




/* -------------------------------------------*/



/*----------------- FOOTER ------------------*/

footer {
  /*background: url(../img/imgSeccion/red\ gradient\ 1.png);*/
  color: #dcdcdc !important;
  background: #000000 !important;
  padding: 2rem 0;
  /* border-top: 1px solid #ffc107; */
}

.footer-top {
  text-align: center;
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-contact a {
  font-size: 14px;
  color: #dcdcdc !important;
}

.footer-colored-line {
  background: linear-gradient(45deg, #a31321, #ab8d8d);
  width: 25%;
  height: 0.125rem;
  border-radius: 1.25rem;
  margin: 0.5rem auto;
}

.footer-line {
  width: 25px;
  background: linear-gradient(329deg, #ff81008a, #ffc107);
  border-radius: 0;
  height: 2px;
  margin: 15px auto;
}

.text-white {
  color: #ffffff;
}

footer ul {
  padding: 0;
  list-style-type: none;
}

@media (max-width: 1025px) {
  .fastlinks {
    gap: 0 !important;
  }
}

@media (max-width: 992px) {
  .footer-contact {
    width: 32% !important;
  }
}

@media (max-width: 884px) {
  .fastlinks {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}

@media (max-width: 820px) {
  .fastlinks .link {
    margin-bottom: 2rem;
    padding: 0 2rem 0 0;
  }
}

@media (max-width: 768px) {
  .fastlinks {
    justify-content: center !important;
    margin: 0 3rem !important;
  }

  .footer-contact {
    margin-bottom: 1rem;
    width: 100% !important;
  }
}

@media (max-width: 724px) {
  .fastlinks {
    column-gap: 1rem;
  }

  .fastlinks .link {
    width: 23%;
  }
}

@media (max-width: 696px) {
  .fastlinks .link {
    width: 40%;
    text-align: center;
  }
}

@media (max-width: 590px) {
  .fastlinks {
    column-gap: 0;
  }

  .fastlinks .link {
    width: 45%;
  }
}

@media (max-width: 450px) {

  .fastlinks {
    margin-left: 2rem !important;
    margin-right: 1rem !important;
  }


  .fastlinks .link {
    margin-bottom: 2rem;
    padding: 0 2rem 0 0;
    text-align: left;
  }
}

/*-------------------Efecto para icono de redes sociales--------------------*/


.redes a:hover {
  transform: scale(1.1);
  /* Efecto de aumento al pasar el mouse */
  color: #0077b5;
  /* Cambia el color al pasar el mouse (por ejemplo, azul para LinkedIn) */
}

/* Colores personalizados para cada red social */
.redes a.facebook:hover {
  color: #3b5998;
  /* Azul de Facebook */
}

.redes a.linkedin:hover {
  color: #0077b5;
  /* Azul de LinkedIn */
}

.redes a.instagram:hover {
  color: #e4405f;
  /* Rosa de Instagram */
}

.redes a.whatsapp:hover {
  color: #25D366;
  /* Verde de WhatsApp */


}

.redes a.tiktok:hover {
  color: #ffffff;
}

.redes a.youtube:hover {
  color: #b80000;
}

.redes {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 30%;
  left: 20px;
  /*background-color: rgb(255 255 255 / 49%);*/
  padding: 10px;
  border-radius: 50px;
  z-index: 100;
}

.redes a {
  margin: 5px 0;
  /* Espaciado entre los íconos */
  text-decoration: none;
  /* Eliminar subrayado */
  color: #ffffff;
  /* Color inicial */
  transition: transform 0.3s ease, color 0.3s ease;
  /* Efectos de transición */
  font-size: 25px;
  /* Tamaño del ícono, ajustado para encajar mejor en el lado derecho */
}

.redes a:hover {
  transform: scale(1.1);
  /* Efecto de aumento al pasar el mouse */
}


/*---------REDES FOOTER-----------*/
.redes-footer {
  display: flex;
  flex-direction: row;
  position: relative;
  /* Fija la posición */
  justify-content: center;
  background-color: rgba(201, 203, 63, 0);
  padding: 10px;
  /* Espaciado interno */
  border-radius: 5px;
  /* Bordes redondeados (opcional) */
  /*box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Sombra (opcional) */
  z-index: 100;
  gap: 1.8rem;
  margin-bottom: 2rem;
}

.redes-footer a {
  margin: 5px 0;
  /* Espaciado entre los íconos */
  text-decoration: none;
  /* Eliminar subrayado */
  color: #ffc200;
  /* Color inicial */
  transition: transform 0.3s ease, color 0.3s ease;
  /* Efectos de transición */
  font-size: 25px;
  /* Tamaño del ícono, ajustado para encajar mejor en el lado derecho */
}

.redes-footer a:hover {
  transform: scale(1.1);
  /* Efecto de aumento al pasar el mouse */
}

.redes a:hover {
  transform: scale(1.1);
  /* Efecto de aumento al pasar el mouse */
  color: #0077b5;
  /* Cambia el color al pasar el mouse (por ejemplo, azul para LinkedIn) */
}

/* Colores personalizados para cada red social */
.redes-footer a.facebook:hover {
  color: #3b5998;
  /* Azul de Facebook */
}

.redes-footer a.linkedin:hover {
  color: #0077b5;
  /* Azul de LinkedIn */
}

.redes-footer a.instagram:hover {
  color: #e4405f;
  /* Rosa de Instagram */
}

.redes-footer a.whatsapp:hover {
  color: #25D366;
  /* Verde de WhatsApp */
}

.redes-footer a.tiktok:hover {
  color: #ffffff;
}

.redes-footer a.youtube:hover {
  color: #b80000;
}


/* ---------------- LINKS RÁPIDOS --------------- */
.fastlinks {
  display: flex;
  flex-wrap: wrap;
  margin-right: 6rem;
  margin-left: 6rem;
  margin-bottom: 2rem;
  justify-content: center;
  gap: 4rem;

}

.link {
  padding: 0 3rem 0 0;
  text-align: left;
}

.link a {
  color: #dcdcdc !important;
  text-decoration: none;
  font-family: "Instrument Sans", sans-serif;
}

.link li a {
  font-size: 14px;
  font-weight: 100;
}

.link a:hover {
  color: #FFC107 !important;
}

.link ul li {
  list-style-type: none;
}










.slider-wrapper .swiper-pagination-bullet {
  background: #fff;
  height: 13px;
  width: 13px;
  opacity: 0.5;
}

.slider-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.slider-wrapper .swiper-slide-button {
  color: #ff0000;
  /*margin-top: -55px;*/
  transition: 0.2s ease;
}

.slider-wrapper .swiper-slide-button:hover {
  color: #cf0000;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  background: #7f7f7f;

}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 25px !important;
}

.link-portafolio {
  text-decoration: none;
  padding: .10rem .70rem;
  background: #dc0000;
  color: #dcdcdc;
  border-radius: 20px;
  font-size: 10.4px;
  text-align: center;
  border: 1px solid #980000;
}

.link-portafolio:hover {
  color: #4b4b4b;
  text-decoration: none;
  background: #ffc107;
}

@media (max-width: 768px) {
  #port-car .section-header {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .slider-wrapper {
    margin: 0 10px 40px;
  }

  .slider-wrapper .swiper-slide-button {
    display: none;
  }
}


/*----------NUESTRO EQUIPO---------------*/
#equipo {
  padding: 5rem 0;
  background-color: #f3f3f3;
  background: linear-gradient(181deg, #000000a6 100%, transparent 99.04%), url(../img/imgSeccion/camion-radiador.png);
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}
/*
.divide{
  display: flex;
}
*/
#equipo .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

#equipo .section-header h3 {
  font-size: medium;
  color: #ffc107;
  position: relative;
  font-style: italic;
}

#equipo .section-header h4{
  font-size: 2.5rem;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 2rem;
  color: white;
}


/*TEAM DIV*/

.team {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.team-content{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* gap: 3.5rem; */
  row-gap: 3rem;
}

.team .box {
  position: relative;
  width: 12rem;
  height: 17rem;
  overflow: hidden;
}

.team .box:hover .imgBox {
  transform: translate(0rem, 0rem);
}

.team .box:hover .content {
  transform: translate(0rem, -.01rem);
}

.imgBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}

.imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  resize: both;
  border-radius: 4px;
  background-position: center;
  background-size: cover;
}

.content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  padding: 1.5rem 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #1c1c1cb0;
  backdrop-filter:blur(5px);
  z-index: 2;
  align-items: flex-end;
  text-align: center;
  transition: 0.5s ease-in-out;
  border-radius: 0 0 4px 4px;
  /*transform: translate(0, 6.5rem);*/
}

.content h2 {
  display: block;
  font-family: 'Open-Sans', sans-serif;
  font-size: 1rem;
  color: #FFC107;
  font-weight: 500;
  margin-bottom: .2rem;
}

.content p {
  font-family: 'Open-Sans', sans-serif;
  color: #ffffff;
  font-size: .8rem;
  font-weight: 500;
  margin-bottom: .6rem;
}
@media (max-width: 1024px){
  .box .content{
    transform: none;
  }

}

@media (max-width: 600px) {
  #equipo .section-header{
    margin-bottom: 2.2rem;
  }

  #timeline{
    padding: 5rem 0px 4rem;
  }

  .team-content{
    gap:0rem;
  }

  .imgBox img{
    border-radius: 5px 5px 0 0;
  }
  .content h2{
    margin-bottom:.4rem;
  }
  .team .box{
    margin:1.5rem;
  }
}

@media (max-width: 510px){
  .team-content{
    justify-content: center;
  }
}


/*------------ESTILOS VALORES--------------*/


#valores {
  padding: 3rem 0;
  overflow: hidden;
}

#valores .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

#valores .section-header h4{
  font-size: 2.5rem;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 2rem;
  text-transform: capitalize;
}

#valores .section-header h3 {
  font-size: medium;
  color: #c02229;
  /*margin-bottom: 60px;*/
  position: relative;
  font-style: italic;
  /*margin-bottom: 1rem;*/
}

/*#valores .section-header h3::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #c02229;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px #c02229;
}*/

.container {
  text-align: center;
}

.icon{
  cursor: pointer;
}

.icons {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.icon-label {
  font-family: 'Open-Sans', sans-serif !important;
  font-weight: bold;
  /*display: none;*/
  font-size: 1.1rem;
  color: #000000;
  padding: 0 20px;
  line-height: 1.6;
  margin: 0 auto;
  margin-top: 1rem;
}

.icon img {
  width: 90px;
  height: 90px;
  cursor: pointer;
  transition: transform 0.3s;
}

.icon:hover img {
  transform: scale(1.1);
}

.text-container {
  margin-top: 40px;
  padding: 10px;
  background: #e9e9e9a6;
  border-radius: 10px;
}

.text {
  font-family: 'Open-Sans', sans-serif !important;
  display: none;
  font-size: .9rem;
  color: #333;
  padding: 0 20px;
  /*line-height: 1.6;*/
  /*max-width: 500px;*/
  margin: 0 auto;
}

/* Mostrar solo el texto activo */
.text.active {
  display: block;
}

@media (max-width: 992px) {
  .icons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .icons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .icons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    flex-wrap: wrap;
    row-gap:2rem;
  }
}





/*------------------------
------NUESTOS VIDEOS------
------------------------*/
#videos {
  background-color: #f1f1f1;
  padding: 5rem 0;
  overflow: hidden;
}

#videos .section-header {
  text-align: left;
}

#videos .section-header h3 {
  font-size: medium;
  color: #c02229;
  position: relative;
  font-style: italic;
}

#videos .section-header h4{
  font-size: 2.5rem;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 2.6rem;
  text-transform: capitalize;
}

#videos .section-header p {
  font-family: 'Open-Sans', sans-serif !important;
  font-size: .9rem;
  color: rgb(0 0 0 / 80%);
  margin-bottom: 1.5rem;
}

.videos-cont {
  padding:  0 1rem;
  margin: auto;
  display:flex;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 30px;
}

.video{
  width: 50%;
  border-radius: 10px;
  overflow: hidden;
}

.vid{
  position: relative;
  width: 100%;
  height: 20rem;

}

.vid img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.play-btn {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient( rgb(194, 0, 0) 60%, rgba(255, 255, 255, 1) 62%);
  border-radius: 50%;
  display: block;
  box-shadow: 0px 0px 25px 3px rgb(216, 0, 0);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* triangle */
.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, .75);
  top: -25%;
  left: -25%;
  background: rgba(198, 16, 0, 0);
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-content {
  position: relative;
  background: #000;
  padding: 10px;
  border-radius: 8px;
  width: 60%;
  height: 500px;
}

.close-btn {
  position: absolute;
  top: -18px;
  right: -10px;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  width: 35px;
  height: 39px;
  background: #000000;
  border-radius: 50%;
  font-weight: 700;
}

@media (max-width:820px){
  .video-content{
    width: 80%;
  }
}

@media (max-width:500px){
  .video-content{
    width: 80%;
    height: 230px;
  }
}

@media (max-height:500px) and (orientation: landscape){
  .video-content{
    height: 300px;
  }
}


@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

@media (min-width: 1200px) {
   .videos-cont{
    max-width: 1140px;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .videos-cont{
   flex-direction: column;
 }
 .video{
  width: 100%;
 }
}


/*Project section*/
#project {
  padding: 0;
}

.project-carousel {
  display: flex;
  height: 100vh;
}

.degradiant {
  width: 25%;
  background: #1c1c1c;
  position: relative;
}

.degradiant::after {
  content: "";
  position: absolute;
  left: 100%;
  width: 500px;
  height: 100%;
  background: linear-gradient(93deg, #1c1c1c 20%, #1c1c1c 3%, rgba(255, 255, 255, 0) 100%);
}

.image-bg {
  width: 75%;
}

.image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
}

.project-info {
  position: absolute;
  color: white;
  left: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  z-index: 2;
  width: 35%;
  
}

.project-info h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.3rem;
  color: #ffc107;
}

.project-info p {
  font-family: 'Open-Sans', sans-serif;
  color: rgba(255, 255, 255, 0.874);
  font-size: .9rem;
}

.splide__arrow{
  background: #ffffff75 !important;
  opacity: 0.9 !important;
}


@media (max-width: 1024px) {
  .project-carousel{
    height: 50vh;
  }

  .project-info h2 {
    font-size: 1.9rem;
  }
  
  .project-info p{
    font-size: 0.9rem;
  }

  .degradiant::after {
    width: 400px;
    background: linear-gradient(93deg, #1c1c1c 20%, #1c1c1c 3%, rgba(255, 255, 255, 0) 80%);
  }

}

@media (max-width: 820px){
  .project-carousel {
    flex-direction: column-reverse;
    height: 75vh;
  }

  .project-info {
    position: relative;
    background: #1c1c1c;
    color: #ffffff;
    display: flex;
    left:0;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem;
    z-index: 2;
    width: 100%;
    text-align: center;
  }

  .image-bg {
    width: 100%;
  }
}

@media (max-width: 500px){
  .project-carousel{
    height: auto;
  }
  .project-info {
    padding: 1rem;
  }
}

/*------------Navbar dropdown----------*/

.drop-menu-nav{
  background: #000000d7 !important;
  border-radius: 5px !important;
  transform: translate(0, 12px) !important;
  backdrop-filter: blur(7px) !important;
}

.drop-hover{
  color: white !important;
}

.drop-hover:hover{
  color: #ffc107 !important;
  background: #1c1c1cb0 !important;
}

@media (max-width:991px){
  .drop-menu-nav{
    transform: none !important;
  }

  li .drop-hover{
    background: #303030 !important;
  }
  
}