/* Estilos personalizados adicionales */

.office-details h2 {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #333; 
}
.office-details p {
    margin-bottom: 0.5rem; 
    font-size: 1rem; 
    line-height: 1.6;
}
.office-details strong {
    color: #555; 
}
.office-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Bordes redondeados para la imagen */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Sombra sutil para la imagen */
}

.contact-form-section {
    padding-top: 3rem; /* Espacio superior para separar de la sección anterior */
    padding-bottom: 3rem; /* Espacio inferior */
    background-color: #f8f9fa; /* Un fondo suave para distinguir la sección */
}
.contact-form-section h2 {
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center; /* Centrar el título del formulario */
}
.form-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover; /* Para que la imagen cubra bien el espacio si tiene proporciones distintas */
    min-height: 300px; /* Altura mínima para la imagen, ajusta según necesites */
}

/* Para asegurar un buen espaciado en móviles cuando se apilan */
@media (max-width: 767.98px) {
    .office-image-container,
    .form-image-container {
        margin-top: 2rem; /* Espacio entre el texto/formulario y la imagen en vista móvil */
    }
    .contact-form-section h2 {
        text-align: left; /* Título del formulario a la izquierda en móviles */
    }
}

/*horario*/
.horario-atencion {
    background-image: url('/assets/images/logo/vehiculo_corporativo.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 35vh;
    position: relative;
    color: white;
}

.horario-atencion .overlay {
    z-index: 1;
}

.horario-atencion .container {
    z-index: 2;
}

/*icono whatsapp*/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 1050;
    text-decoration: none;
  }
  .whatsapp-float:hover {
    background-color: #1ebe57;
  }