@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Bebas Neue", sans-serif;
}

.header-top {
    background-color: #007bff;
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 5px;
}

.hero-section {
    background: url('../../img/fondo-reciclaje.jpg') center/cover no-repeat;
    color: white;
    padding: 40px 20px;
    position: relative;
}
.hero-section {
    background: url('../../img/fondo-reciclaje.jpg') center/cover no-repeat;
    color: white;
    padding: 40px 20px;
    position: relative;
}

.logo img {
    max-width: 180px;
}

.contact-btn {
    background-color: #00bfff;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.menu-icon {
    font-size: 30px;
    color: white;
}

.info-card {
    border: 1px solid #00b4ff;
    border-radius: 8px;
    padding: 16px;
    background-color: white;
}

.info-icon {
    font-size: 35px;
    color: #007bff;
}

.whatsapp-btn {
    background-color: #00b4ff;
    color: white;
    padding: 15x 25px !important;
    font-size: 30px;
    border: none;
    border-radius: 10px;
    font-family: "Bebas Neue", sans-serif;
}

.bg-grey{
background-color:#e0e0e0;
}

.fw-300{
    font-weight: 300 !important;
}

.fs-raleway{
    font-family: "Raleway", sans-serif;
}

.fs-7{
    font-size: 1.55rem!important
}
@media (max-width: 767.98px) {
    .fs-7 {
      font-size: 0.85rem !important;
    }
  }
  
.card-custom {
    min-height: 160px;
    border-radius: 12px;
    border: 1px solid #0171c8;
}

.margin-100{
    margin-top: -75px;
}
@media (min-width: 768px) {
    .fs-md-1 {
      font-size: 2rem !important;
    }
  }
  

  .carousel-control-prev,
.carousel-control-next {
    opacity: 1 !important;
}


 /* Para pantallas grandes (PC) */
 @media (min-width: 992px) {
    .carousel-control-prev {
        left: -100px; /* Botón a la izquierda */
    }
    .carousel-control-next {
        right: -100px; /* Botón a la derecha */
    }
}

/* Para pantallas medianas (tabletas) */
@media (max-width: 991px) and (min-width: 768px) {
    .carousel-control-prev {
        left: -70px !important; /* Menos desplazado en tablets */
        top: -40px;
    }
    .carousel-control-next {
        right: -70px !important; /* Menos desplazado en tablets */
        top: -40px;
    }
}

/* Para pantallas pequeñas (móviles) */
@media (max-width: 767px) {
    .carousel-control-prev {
        left: -10px !important; /* Desplazado ligeramente para móviles */
        top: -40px;
    }
    .carousel-control-next {
        right: -10px !important; /* Desplazado ligeramente para móviles */
        top: -40px;
    }
}

.hr-1{
    border: 4px solid black;
    margin: 0px !important;
    opacity: 1 !important;
}
.hr-2{
    border: 2px solid #00b4ff;
    margin: 0px !important;
    opacity: 1 !important;
}

.text-blue{
    color: #0171c8;
}


.formulario-wrapper {
    background: url('../../img/fondo-contacto.png') no-repeat center center fixed;
    background-size: cover;
  }
  
  .formulario-contacto {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 0px !important;
  }
  
  .formulario-contacto h1 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
  }
  
  .form-control {
    margin-bottom: 15px;
    border-radius: 0px !important;
  }
  
  .btn-enviar {
    background-color: #007bff;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 0;
    border-radius: 10px;
    border: none;
  }
  
  .btn-enviar:hover {
    background-color: #0056b3;
  }
  
  .btn-new-blue{
    background-color: #007bff;
  }
  .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%; /* Asegura que sea redondo */
    width: 60px; /* Ancho */
    height: 60px; /* Alto, igual al ancho */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px; /* Tamaño del icono */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
    line-height: 1; /* Elimina el espacio extra debajo */
}

.whatsapp-button i {
    vertical-align: middle; /* Alinea el icono correctamente */
}

.whatsapp-button:hover {
    background-color: #128C7E;
}