@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body{
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.logo{
    background-color: #000000;
}
nav{
    background-color: #621216;
    height: 3rem;
}
.nav-link{
    font-weight: 400;
    font-size: 12px;
}
.nav-link:hover{
    background-color: #000000;
}
.nav-link.active {
    background-color: black;
    color: white !important;
    height: 3rem;
}

.llama {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente */      
}

.llama input {
    background-color: #d92730;
    color: white;
           
}
.llama input:hover{
   background-color: #c3232b;
   border-color: #ffffff;
   color: white;
}
 
 .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #621216;
    
}

.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-item{
    color: white;
    border-bottom: 1px solid #ffffff;
    width: 14rem;
}

.dropdown-menu .dropdown-item:hover{
    background-color: #000000;
    color: white;
}
.searh {
    background-color: #363738;
    height: 4.5rem;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente */
}

.searh .form-control {
    width: 100%;
    height: 2.5rem;
    border-radius: 50px;
    padding-left: 20px;  /* Espacio a la izquierda para que el texto no quede pegado */
    padding-right: 50px; /* Espacio a la derecha para que el botón no quede pegado */
    box-sizing: border-box;
}

.btn-search {
    position: absolute;
    right: 30px; /* Mantiene el botón a la derecha del input */
    top: 50%;
    transform: translateY(-50%);
    background: #c3232b; 
    border: none;
    cursor: pointer;
    border-radius: 50%; /* Redondear el botón */
    width: 30px;  /* Tamaño fijo del botón */
    height: 30px; /* Tamaño fijo del botón */
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search img {
    width: 20px;  /* Tamaño del icono */
    height: 20px; /* Asegúrate de que el icono tenga altura */
}

/* Asegura que el activador no se vea como un botón */
/* .dropdown-toggle::after {
    display: none;
} */
.msj {
    position: absolute; 
    top: 20%;  
    color: white;
    transform: translate(15%, 25%); /* Combina translateX y translateY */
   
    width: 35%;
}
.msj .row{
    width: 90%;
    font-size: 20px;
}

.msj input{
    background-color: #000000;
    color: white;
    width: 50%;
}


/* Pantallas pequeñas - Celulares verticales (máximo 575.98px) */
@media (max-width: 575.98px) {
    .msj {
        font-size: 2vw;
        width: 40%;
        top: 10px;
    }
    .msj input {
        width: 80%;
        font-size: 2vw;
        color: white;
    }
    .msj .row {
        display: none;
    }
    .msj h1 {
        font-size: 3vw; /* Ajusta el tamaño del título */
    }
    .nav-link.active {
        
        height: 2rem;
    }
}

/* Pantallas medianas - Tablets y celulares grandes (576px a 768px) */
@media only screen and (min-width: 576px) and (max-width: 768px) {
    .msj {
        font-size: 1.5vw;
        width: 45%;
        top: -15px;
    }
    .msj input {
        width: 50%;
        font-size: 1vw;
        color: white;
    }
    .msj .row {
        font-size: 1rem; /* Puedes ajustar el estilo de la fila si lo necesitas */
    }
    .msj h1 {
        font-size: 2.5vw; /* Ajusta el tamaño del título */
    }
    .nav-link.active {
        
        height: 2rem;
    }
}

/* Pantallas medianas grandes - Tablets grandes (768px a 1024px) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .msj {
        font-size: 1rem;
        width: 50%;
        top: -15px;
    }
    .msj input {
        width: 50%;
        font-size: 1vw;
        color: white;
    }
    .msj .row {
        font-size: 1rem;/* Puedes ajustar el estilo de la fila si lo necesitas */
    }
    .msj h1 {
        font-size: 3vw; /* Ajusta el tamaño del título */
    }
    .nav-link.active {
        
        height: 2rem;
    }
}

/* Pantallas grandes - Laptops (1025px a 1440px) */
@media only screen and (min-width: 1025px) and (max-width: 1600px) {
    .msj {
        font-size: 1vw;
        width: 40%;
        
    }
    .msj input {
        width: 50%;
        font-size: 1.5vw;
        color: white;
    }
  
 
}

.lema{
    background-color:#181819;
}
footer .info{
    background-color: #621216;
    color: white;
    font-size:large;
    padding: 20px;
}

.info input{
    width: 40%;
    height: 45%;
    margin-top: 1.5rem;
    margin-left: 1rem;
    background-color: #c3232b;
    color: white;
}
footer .whats{
    background-color: #d92730;
    color: white;
    font-size:large;
    padding: 20px;
}
/* Para pantallas muy pequeñas, las imágenes se harán más pequeñas */
@media (max-width: 575.98px) {
    .img-fluid {
        width: 25%; /* Ajustar el tamaño de la imagen */
        margin: 1rem;
    }
    .info input{
        width: 100%;
        height: 55%;
        margin-left: -1rem;
    }
}


@media (min-width: 576px) and (max-width: 1024px) {
    .img-fluid {
        width: 75%; /* Ajustar el tamaño de la imagen */
    }
    .info input{
        width: 60%;
        height: 50%;
        margin-left: -1rem;
    }
}
.footer {
    background-color: #363738;
    color: #fff;
    font-size: 10px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    color: #fd0000;
}



.footer ul {
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 10px;
}
.mail{
    background-color: #000000;
    width: 100%;
    padding-top: 1rem;
}
.mail span{
    font-size: 15px;
    color: white;
    margin-top: 10px;
    font-weight: 200;
}
.mail h5{
    color:  white;
}
.mail .conta{
    margin-top: 3.5rem;
    
  
}
.mail .conta span{
    font-weight: 500;
}
.sidebar {
    position: fixed;
    top: 35%;
    right: 0; /* Pegado a la derecha */
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.8); /* Blanco semitransparente */
    padding: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 10px 0 0 10px; /* Bordes redondeados */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Para que quede siempre encima */
}

/* Estilo para los ítems del menú */
.menu-item {
    margin: 10px 0px;
    display: block;
    width: 23.5px; /* Tamaño pequeño */
    height: 23.5px;
    border-radius: 0%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Tamaño y ajuste de los íconos */
.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover effect para aumentar un poco el tamaño al pasar el mouse */
.menu-item:hover {
    transform: scale(1.1);
}

/* Específicos para cada ítem */





/* Diseño responsivo */
@media (max-width: 768px) {
    .sidebar {
        top: 30%;
        padding: 5px;
    }

    .menu-item {
        width: 23.5px;
        height: 23.5px;
    }
}

@media (max-width: 480px) {
    .menu-item {
        width: 23px;
        height: 23px;
        margin: 5px;
    }
}

#cotizacionForm input{
    border: none;
}

#cotizacionForm{
    color:black
}

.search-results {
    border: 1px solid #ccc; /* Borde para el contenedor */
    position: absolute; /* Posición absoluta para que se coloque debajo del input */
    width: 100%; /* Asegúrate de que ocupe el ancho del input */
    background-color: white; /* Color de fondo */
    z-index: 1000; /* Para asegurarse de que esté por encima de otros elementos */
    display: none; /* Oculto por defecto */
}

.search-results div {
    padding: 10px; /* Espaciado para los elementos */
    cursor: pointer; /* Cambia el cursor al pasar el mouse */
}

.search-results div:hover {
    background-color: #f0f0f0; /* Color de fondo al pasar el mouse */
}

