.header {
    background-color: #000033;
}

.complement {
    background-image: url("/assets/img/download.svg");
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}

.hero {
    background-image: url("/assets/img/ULLER_cliente_feliz.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    /* Centra verticalmente el contenido */
    padding: 0;
}

.hero .content {
    color: white;
    text-align: left;
    /* Alinea el texto a la izquierda */
    max-width: 40%;
    /* Reduce el ancho máximo para forzar el texto a 3 líneas */
    background: transparent;
    /* Fondo transparente */
    border-radius: 10px;
    padding: 30px;
    margin-left: 5%;
    /* Mueve el contenido un poco desde la izquierda */
}

.hero .content h1 {
    font-size: 2.5rem;
    /* Ajusta el tamaño de la fuente */
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 20px;
    line-height: 1.2;
    /* Ajusta el interlineado para controlar el número de líneas */
}

.hero .content a {
    display: inline-block;
    /* Asegura que el botón esté en línea con el texto */
    font-size: 1.2rem;
    padding: 15px 25px;
    color: white;
    background-color: #ffc107;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
}

.hero:before {
    content: "";
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSI1NHB4IiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI2ZmZmZmZiI+PHBhdGggZD0iTTEyODAgMy40QzEwNTAuNTkgMTggMTAxOS40IDg0Ljg5IDczNC40MiA4NC44OWMtMzIwIDAtMzIwLTg0LjMtNjQwLTg0LjNDNTkuNCAuNTkgMjguMiAxLjYgMCAzLjRWMTRoaDEyODB6IiBmaWxsLW9wYWNpdHk9Ii4zIi8+PHBhdGggZD0iTTAgMjQuMzFjNDMuNDYtNS42OSA5NC41Ni05LjI1IDE1OC40Mi05LjI1YzMyMCAwIDMyMCA4OS4yNCA2NDAgODkuMjQgMjU2LjEzIDAgMzA3LjI4LTU3LjE2IDQ4MS41OC04MFYxNDBIMHoiIGZpbGwtb3BhY2l0eT0iLjUiLz48cGF0aCBkPSJNMTI4MCA1MS43NmMtMjAxIDEyLjQ5LTI0Mi40MyA1My40LTUxMy41OCA1My40Yy0zMjAgMC0zMjAtNTctNjQwLTU3LTQ4Ljg1LjAxLTkwLjIxIDEuMzUtMTI2LjQyIDMuNlYxNDBoMTI4MHoiLz48L2c+PC9zdmc+);
    background-size: 100% 54px;
    position: absolute;
    bottom: 0;
    height: 54px;
    z-index: 1;
}

/* Media Query para dispositivos móviles */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }

    .hero .content {
        max-width: 80%;
        /* Ajusta el ancho máximo para dispositivos móviles */
        padding: 20px;
        margin-left: 5%;
    }

    .hero .content h1 {
        font-size: 1.8rem;
        /* Reduce el tamaño de la fuente para dispositivos móviles */
    }

    .hero .content a {
        font-size: 0.9rem;
        /* Reduce el tamaño del texto del botón */
        padding: 10px 18px;
        /* Ajusta el tamaño del botón para dispositivos móviles */
    }
}

.hero-2 {
    background-image: url("/assets/img/people-uller-homeok.jpg");
    background-size: cover;
    /* La imagen se expandirá para cubrir todo el contenedor */
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    /* Para asegurar que siempre ocupe toda la ventana */
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .hero-2 {
        background-size: cover;
        /* Mantén la imagen cubriendo el contenedor */
        min-height: 23vh;
        /* Ajusta la altura en dispositivos móviles */
    }
}



.hero-3 {
    background-image: url("/assets/img/aire-acondicionado-enfriador-aire-opciones.webp");
    background-size: cover;
    /* La imagen se expandirá para cubrir todo el contenedor */
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    /* Para asegurar que siempre ocupe toda la ventana */
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .hero-3 {
        background-size: cover;
        /* Mantén la imagen cubriendo el contenedor */
        min-height: 27vh;
        /* Ajusta la altura en dispositivos móviles */
    }
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    /* Evita desplazamientos horizontales */
}


.hero-4 {
    background-image: url("/assets/img/tecnico-aire-acondicionado-ok.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    /* Ocupa toda la pantalla */
    width: 100%;
    position: relative;
    /* Permite superposición del contenido */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.hero-4 .container {
    position: absolute;
    /* Coloca el contenedor sobre la imagen */
    top: 50%;
    /* Centra verticalmente el contenido */
    left: 50%;
    /* Centra horizontalmente el contenido */
    transform: translate(-50%, -50%);
    /* Asegura que el contenido esté completamente centrado */
    z-index: 2;
    /* Asegura que el texto esté por encima de la imagen */
    text-align: left;
    /* Centra el texto */
    padding: 20px;
    color: white;
    width: 100%;
    /* Opción de que ocupe todo el ancho disponible */
}

.hero-4 h1,
.hero-4 p {
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    /* Sombra para mejorar legibilidad */
    margin: 0;
    font-size: 18px;
}

/* Modo responsivo */
@media (max-width: 768px) {
    .hero-4 {
        background-position: center center;
        /* Asegura que la imagen se vea centrada */
        min-height: 25vh;
        /* Mantiene la sección con una altura mínima de la ventana */
        height: auto;
        background-size: contain;
        /* Ajusta la imagen para que se mantenga proporcional */
        background-position: top;
        /* Alinea la imagen en la parte superior en móviles */
        padding: 0;
    }

    .hero-4 .container {
        position: absolute;
        /* Coloca el contenedor sobre la imagen */
        top: 50%;
        /* Centra verticalmente el contenido */
        left: 50%;
        /* Centra horizontalmente el contenido */
        transform: translate(-50%, -50%);
        /* Asegura que el contenido esté completamente centrado */
        z-index: 2;
        /* Asegura que el texto esté por encima de la imagen */
        text-align: left;
        /* Centra el texto */
        color: white;
    }

    .hero-4 h1,
    .hero-4 p {
        font-size: 12px;
        /* Reduce el tamaño de la fuente para pantallas pequeñas */
    }
}





.bg-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-image.overlay {
    position: relative;
}




.image-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.background-image {
    width: 100%;
    height: auto;
}

.overlay-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767.98px) {
    .whatsapp-button {
        width: 40px;
        height: 40px;
    }
}

.linea-azul {
    border-left: 8px solid #0C71C3;
    padding-left: 20px;
    margin-bottom: 20px;
}

.offcanvas-top {
    top: 0;
    height: 100vh;
    visibility: hidden;
}

.offcanvas-top.show {
    visibility: visible;
}

.offcanvas-body {
    padding: 1rem;
    background-color: #00154f;
    color: #29e4f2;
    ;
    overflow-y: auto;
    height: 100%;
}

.offcanvas-body a {
    color: #29e4f2;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
}

.offcanvas-body a:hover {
    text-decoration: underline;
}

.color a {
    background-color: orange;
    color: white;
    font-size: 20px;
}

.color-danger a {
    background-color: red;
    color: white;
    font-size: 20px;
}

.color-danger a:hover {
    background-color: rgb(255, 0, 0);
    color: #eeeeee;
    font-size: 20px;
}

.objective {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.objective .icon {
    width: 5px;
    background-color: #007bff;
    margin-right: 10px;
}

.objective p {
    margin: 0;
}

.footer-color {
    background-color: black !important;
    padding: 10px !important;
}

.desing {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSI1NHB4IiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI2ZmZmZmZiI+PHBhdGggZD0iTTEyODAgMy40QzEwNTAuNTkgMTggMTAxOS40IDg0Ljg5IDczNC40MiA4NC44OWMtMzIwIDAtMzIwLTg0LjMtNjQwLTg0LjNDNTkuNC41OSAyOC4yIDEuNiAwIDMuNFYxNDBoMTI4MHoiIGZpbGwtb3BhY2l0eT0iLjMiLz48cGF0aCBkPSJNMCAyNC4zMWM0My40Ni01LjY5IDk0LjU2LTkuMjUgMTU4LjQyLTkuMjUgMzIwIDAgMzIwIDg5LjI0IDY0MCA4OS4yNCAyNTYuMTMgMCAzMDcuMjgtNTcuMTYgNDgxLjU4LTgwVjE0MEgweiIgZmlsbC1vcGFjaXR5PSIuNSIvPjxwYXRoIGQ9Ik0xMjgwIDUxLjc2Yy0yMDEgMTIuNDktMjQyLjQzIDUzLjQtNTEzLjU4IDUzLjQtMzIwIDAtMzIwLTU3LTY0MC01Ny00OC44NS4wMS05MC4yMSAxLjM1LTEyNi40MiAzLjZWMTQwaDEyODB6Ii8+PC9nPjwvc3ZnPg==);
    background-size: 100% 54px;
    bottom: 0;
    height: 54px;
    z-index: 1;
    transform: rotateY(0) rotateX(0);
}

* {
    font-family: Arial, Helvetica, sans-serif;
}

.hero div p {
    line-height: 1;
}

.hero div p {
    font-size: 2.5em;
}

.colorp1 {
    color: #0C71C3;
}

@media (max-width: 768px) {
    .hero {
        background-size: contain;
        background-position: center center;
        height: auto;
        /* Ajusta la altura automáticamente */
    }

    .hero-2 {
        background-size: contain;
        background-position: center center;
        height: auto;
        /* Ajusta la altura automáticamente */
    }

    .hero-3 {
        background-size: contain;
        background-position: center center;
        height: auto;
        /* Ajusta la altura automáticamente */
    }

    .hero-4 {
        background-size: contain;
        height: auto;
        /* Ajusta la altura automáticamente */
    }
}

.offcanvas-custom-height {
    height: auto !important;
    /* Adjusts the height based on content */
    bottom: initial !important;
}

.audio-player {
    position: fixed;
    bottom: 10px;
    /* Distance from the top of the page */
    right: 10px;
    /* Distance from the right of the page */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 1000;
}

.audio-player audio {
    display: block;
    width: 200px;
}

.audio-player-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}