/* INICIO*/
.bg__breadcrumb{
  
    padding: 10px 0;
}
.breadcrumb-item{
    color: #000;

    font-family: 'Roboto';
    font-size: 13px;
    font-style: normal;
    font-weight: 250;
    line-height: normal;
}

.breadcrumb-item .active{
    color: grey !important;
    font-family: 'Roboto';
    font-size: 13px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: normal;
}

.breadcrumb-titulo{
    color: var(--Azul, #00477A);
    font-family: 'Roboto';
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;          
}
.carousel-video-wrapper {
    position: relative;
    width: 100%;
    height: 640px;
}

.carousel-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 640px;
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    mix-blend-mode: multiply;
    z-index: 1;
}

.carousel-video {
    width: 100%;
    height: 640px;
    object-fit: cover;
}
.carousel-imagen{
    width: 100%;
    height: 640px;
    object-fit: cover;
}
.carousel-caption {
    position: absolute;
    bottom: 230px;
 
    z-index: 2;
}

.carousel__titulo {
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 46px;
    font-weight: 600;
    text-transform: uppercase;
}

.carousel__descripcion {
    color: var(--Blanco, #FFF);
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 33px; 
}
.bg-aplicaciones{
    background: #F5F5F5;
}

.categoria-item-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.categoria-item {
    background-size: cover;
    background-position: center;
    height: 300px;
    transition: transform 0.3s ease; /* Efecto de zoom */
    position: relative;
}

.categoria-item-wrapper:hover .categoria-item {
    transform: scale(1.1); /* Zoom al pasar el cursor */
}

.categoria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro con transparencia */
    display: flex;
    align-items: center;
    justify-content: center;
   
background: rgba(0, 0, 0, 0.20);
    transition: opacity 0.3s ease; /* Efecto de desvanecimiento */
}

.categoria-item-wrapper:hover .categoria-overlay {
    opacity: 1; /* Mostrar overlay al pasar el cursor */
}

.categoria-texto {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}


.contenido__titulo{
    color: var(--Negro, #151515);
    font-family: 'Roboto';
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 46px; /* 115% */
}

.contenido__descripcion{
    color: var(--Negro, #151515);
    font-family: 'Roboto';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}



.btn__contacto{
    font-family: 'Roboto';
    font-size: 18px ;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.4px;
    border: 1px solid #AB0000;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    padding: 10px 20px;
    background-color: #AB0000; /* Color base del botón */
    transition: 0.5s ease-in-out; /* Transición suave del efecto de sombra */
}

.btn__contacto:hover{
    font-family: 'Roboto';
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.4px;
    border-radius: 6px;
    border: 1px solid var(--ROJO, #AB0000);
    background: var(--Blanco, #FFF);
    color: #AB0000;
    cursor: pointer;
    padding: 10px 20px;
    background-color: #fff; /* Color base del botón */
    transition: 0.5s ease-in-out; /* Transición suave del efecto de sombra */
}

.titulo-inicio{
    color: var(--Negro, #000);
    text-align: center;
    font-family: 'Roboto';
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
/* APLICACIONES*/
.aplicacion-item-wrapper {
    overflow: hidden;
    border-radius: 8px;
}
    .aplicacion-item {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease; /* Animación suave del zoom */
    border-radius: 8px;
}

.aplicacion-item-wrapper:hover .aplicacion-item {
    transform: scale(1.1); /* Efecto de zoom */
    border-radius: 8px !important;
}

.aplicacion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Añadir un fondo oscuro semitransparente para que el texto sea legible */
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 40px;
    border-radius: 8px !important;
}

.aplicacion-texto {
    color: var(--Blanco, #FFF);
    text-align: center;
    font-family: 'Inter';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 28.8px */
}

.image-container {
    position: relative;
    margin-right: 10px;
    margin-bottom: 10px;
}

.gallery-image {
    max-width: 100%; /* Adjust the size as needed */
}


.info-contact {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Adjust spacing as needed */
}

.item-contact {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.item-contact svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.item-contact a {
    color: #000;
    font-family: 'Roboto';
  font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    text-decoration: none;
}

.item-contact a:hover {
    color: #AB0000;
    font-family: 'Roboto';
  font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    text-decoration: none;
}

.form-label{
    color: var(--Negro, #000);
    font-family: 'Roboto';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }


  .titulo__presupuesto{
    color: var(--000000, #000);
    font-family: 'Roboto';
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-left: 10px; /* Ajusta el espacio entre el SVG y el texto si es necesario */
        line-height: 35px; /* Ajusta la altura de línea para alinear verticalmente con el SVG */
    }

    .contenedor {
        display: flex;
        align-items: center; /* Alinea verticalmente el contenido */
        padding-bottom: 10px; /* Espacio opcional bajo el borde */
        margin-bottom: 20px; /* Espacio opcional debajo del contenedor */
    }

    
    .custom-file-button input[type=file]::-webkit-file-upload-button {
        display: none;
      }
      .custom-file-button input[type=file]::file-selector-button {
          display: none;
      }
      .custom-file-button:hover label {
          cursor: pointer;
      }
        #inputGroupFile {
          /* border-radius: 6px; */
          border-top-left-radius: 6px !important;
          border-bottom-left-radius: 6px !important;
        
          border-right: none !important;
          border-top-right-radius: 0px !important;
          border-bottom-right-radius: 0px !important;
          font-family: 'Roboto';
          font-style: normal;
          font-weight: 400;
          font-size: 15px;

          color: rgba(0, 0, 0, 0.5);
        }