/* Custom Sections Styling */

/* Banner Carousel */
.banner-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent !important;
}

.banner-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Banner section height adjustment */
.box-banner {
    min-height: 400px !important;
    padding: 250px 0 !important;
    position: relative;
    z-index: 2;
    background-image: none !important;
    background-color: transparent !important;
    background: transparent !important;
}

.box-banner::before,
.box-banner::after {
    display: none !important;
}



/* Agency/Images section height adjustment */
.box-agency {
    padding: 70px 0 !important;
}

/* Image sizing in box-squares */
.box-squares img {
    max-height: 500px;
    object-fit: cover;
}

/* Overlay para instrucciones en imágenes */
.card-image {
    position: relative;
    overflow: hidden;
}

.card-image::after {
    content: "VER INSTRUCCIONES";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(84, 144, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.card-image:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .card-image::after {
        opacity: 0.7;
    }
}

/* Contenedor del Banner - Flexbox para permitir movimiento */
.banner {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

/* Botón Contáctenos - Posicionamiento y Tamaño */
.banner .btn-primary {
    margin-left: 1150px !important;      /* Alinea a la derecha: auto, 0, 100px, etc */
    margin-top: 30px !important;        /* Espacio desde arriba: 10px, 50px, etc */
    display: inline-block !important;
    width: 130px !important;            /* Ancho: auto, 100%, 150px, 200px, etc */
    height: 60px !important;            /* Alto: auto, 50px, 60px, etc */
    padding: 10px !important;           /* Relleno interno: 10px, 12px 30px, etc */
    font-size: 16px !important;         /* Tamaño de fuente: 14px, 16px, 18px, etc */
}

/* Quitar imagen de fondo del footer */
.ft-bgr {
    background-image: none !important;
}



