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

.font-pop {
    font-family: "Poppins", sans-serif;
}

nav.navbar {
    border-bottom: 5px solid red;
    /* Borde rojo de 5px */
}
.w-logo{
    width: 270px;
}
/* Estilo adicional para asegurar que no haya márgenes adicionales */
.header-video {
    background-color: #d40000;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Centrar el video */
}

.responsive-video {
    max-width: 100%; /* Limitar el ancho al 100% del contenedor */
    height: auto; /* Mantener la proporción del video */
    max-height: 60vh; /* Limitar la altura a un 60% de la ventana del navegador */
    display: block;
}



.btn-red {
    background-color: red;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    width: 160px;
}

.btn-red:hover {
    background-color: darkred;
    color: white;
}


.section-about img {
    max-width: 100%;
    height: auto;
}

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.section-about h2 {
    font-weight: bold;
    margin-bottom: 20px;
}
.w-30{
width: 120px !important;
}

.section-about p {
    margin-bottom: 20px;
    font-size: 16px;
}

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


.bg-red {
    background: linear-gradient(to bottom, #d40000, #890001);
}



.custom-section-title {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.custom-service-card {
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    width: 100%;
    max-width: 635px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.custom-service-card img {
    width: 70px;
    height: auto;
    margin-bottom: 15px;
}

.custom-service-card h5 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    max-width: 240px;
}

.custom-service-card p {
    margin: 10px 0;
    font-size: 15px;
    color: #666;
}

.custom-btn-red {
    background-color: rgb(255, 255, 255);
    color: red;
    border-radius: 10px;
    padding: 12px 60px;
    border: 2px solid red; /* borde de 2px y color rojo */
    font-size: 18px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    margin-top: auto;
    text-decoration: none;
}

.custom-btn-red:hover {
    background-color: red; /* fondo rojo en hover */
    color: white; /* texto en blanco en hover */
    border: 2px solid white; /* borde blanco en hover */
}
.banner-container {
    background-image: url('../../images/fondo-cielo.png'); /* Ruta a la imagen de fondo */
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
}

.content {
    position: absolute;
    left: 75%; /* Aproximadamente 3/4 de la anchura del div */
    transform: translateX(-50%); /* Para centrar el contenido en el 75% */
    text-align: center;
    width: 410px;
}

/* Media Query para pantallas más pequeñas (tabletas y móviles) */
@media (max-width: 768px) {
    .banner-container {
        height: 300px; /* Ajusta la altura para pantallas pequeñas */
    }
    .content {
        position: static; /* Cambia la posición a estática en móviles */
        transform: none; /* Elimina la transformación */
        left: auto; /* Restablece la posición desde el lado izquierdo */
        width: 90%; /* Ajusta el ancho para pantallas pequeñas */
        margin: 0 auto; /* Centra el contenido en pantallas pequeñas */
        padding: 0 10px; /* Agrega un poco de padding para mejorar la visualización */
        text-align: center; /* Asegura que el texto esté centrado */
    }
}


.font-pop {
    font-family: 'Poppins', sans-serif;
}

.btn-red-nov {
    background-color: red;
    color: white;
    padding: 12px 40px;
    border-radius: 10px;
    font-size: 14px;
    border: none;
    text-decoration: none;
}

.btn-red-nov:hover {
    background-color: white;
    color: red;
    border: 2px solid red;
}


footer {
    background-color: #000; /* Fondo negro */
    color: #fff; /* Texto blanco */
}

footer a {
    color: #fff; /* Mantener los enlaces en blanco */
    text-decoration: none;
}

footer a:hover {
    color: #ccc; /* Cambia de color al pasar el mouse */
}

.text_agencia, .email-span {
    text-decoration: none; 
}
.text_para, .p-text, .email-span, .text-par, .text_agencia {
    color: #666666d8;
    text-align: center;
}

.whatsapp-button {
    position: fixed;
    bottom:  20px; 
    right: 20px; 
    padding: 10px
}

.whatsapp-button img {
    width: 50px; 
    height: auto;
}

@media (max-width: 768px) {
    .custom-service-card {
        height: auto; /* Permitir que el tamaño sea automático en pantallas pequeñas */
        padding: 15px;
        margin-bottom: 30px;
    }
}
@media (min-width: 768px) {
    .gap-5 {
      gap: 1rem !important;
    }
    .custom-service-card {
        height: 520px;
    }
  }
  