/* header */
  body {
  font-family: "Fira Sans", sans-serif !important;
}

.navbar {
  background-color: #dd2a2aff;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .navbar {
    padding: 36px 0;
  }

}
.navbar a {
  color: white !important;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
}

.custom-toggler {
  border: 2px solid white;
  border-radius: 5px;
  padding: 6px 10px;
}

.custom-toggler i {
  color: #ffffff;
  font-size: 1.8rem;
}
  .offcanvas-custom {
    background-color: #ff0000 !important; /* Rojo */
    width: 50% !important;
  }
  .offcanvas-custom .nav-link {
    color: white !important;
  }
  .offcanvas-custom .offcanvas-title {
    color: white !important;
  }
/* index */

  video {
    width: 95%;
    display: block;
    padding:10px 0 10px 0;
  }
.sidebar {
  padding: 1rem;
  border-radius: 12px;
  
}

.sidebar h5 {
  font-weight: bold;
  color: #343a40;
  margin-bottom: 1rem;
  border-bottom: 2px solid #FF3C38;
  padding-bottom: 8px;
}

.categoria-titulo {
  cursor: pointer;
  color: #212529 !important;
  padding: 8px 12px;
  border-bottom:1px solid red;
  transition: background-color 0.3s ease;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.subcategoria a {
  text-decoration: none;
  color: #495057;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 5px;
  display: block;
  transition: all 0.2s ease-in-out;
  position: relative;
}

.subcategoria a:hover::before {
  transform: translateX(3px);
}

h1{
  border-left: 10px solid red;
  padding-left:10px;
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sidebar {
  padding: 1rem;
  border-radius: 12px;
  animation: slideInLeft 2.5s ease forwards;
}

.carda {
  animation: fadeUp 1.8s ease;
}

.carda:nth-child(1) { animation-delay: 0.1s; }
.carda:nth-child(2) { animation-delay: 0.2s; }
.carda:nth-child(3) { animation-delay: 0.3s; }
.card-title{
   font-size:16px;
}
p{
  font-size:14px;
  font-weight:300 ;
  padding-top:10px;
}
 .btn-red{
  color: black;
  border:none;
  width: 90%;
  height:5vh ;
  background-color: white;
  color: #838181d8;
  border-top:1px solid rgba(255, 22, 22, 0.38);
  }
  .description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    max-height: 4em;
  }
  .description {
    color: #333;
  }
.verti {
  background-color: rgba(255, 22, 22, 0.38)
 ;
  width: 1px;        /* Grosor de la línea */
  height: 100%;     /* Largo de la línea hacia abajo */
}
.bi-info-circle{
  color:red;
}








/* nosotros */
  @keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }

  @keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }

  @keyframes slideInBottom {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .anim-left, .anim-bottom, .anim-right {
    opacity: 0; /* Oculta al inicio */
    animation-duration: 1.2s;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
  }

  .anim-left {
    animation-name: slideInLeft;
  }

  .anim-bottom {
    animation-name: slideInBottom;
  }

  .anim-right {
    animation-name: slideInRight;
  }

  /* Contactanos */
      .formulario-contacto {
    width: 100%;
    max-width: 500px;
    margin: auto;
    font-family: Arial, sans-serif;
    }

    .form-group {
    position: relative;
    margin-bottom: 30px;
    }

    .form-group input,
    .form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid black;
    outline: none;
    padding: 8px 0;
    background: transparent;
    font-size: 16px;
    transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
    border-bottom: 2px solid #007bff;
    }

    .form-group label {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    font-size: 14px;
    color: #666;
    transition: 0.3s ease all;
    }

    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:focus + label,
    .form-group textarea:not(:placeholder-shown) + label {
    transform: translateY(-20px);
    font-size: 12px;
    color: #999;
    }

    .contacto-info p {
    margin: 8px 0;
    }

    .contacto-info .titulo-seccion {
    font-size: 18px;
    font-weight: 600;
    color: #BE1704;
    }


@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.anim-izquierda {
  animation: slideInLeft 1s ease-out forwards;
}

.anim-derecha {
  animation: slideInRight 1s ease-out forwards;
}

 h2{
    font-size:50px;
    font-weight:600 ;

 }
 h3{
    font-weight:200;
    font-size:16px;
  }

 h4{
    font-size:18px;
    padding:10px 0px 10px 0px;
    font-weight: 600;
 }
 .button{
    background-color: #dd2a2aff;
    border: none;
    width: 50%;
    color: white;
    padding: 5px;
    border-radius: 10PX;
}
.contactanos-btn{
    position: relative;
    text-align: center;
}