 *{
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}
 main {
            background-color: #1B325F;
            color: #fff;
            padding: 120px 20px 60px;
            min-height: 100vh;
        }
        .contenedor-header{
    background: #3A89C9;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 100%;
    height: auto;
    border-radius: 40%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s;
}

.whatsapp-button img:hover {
    transform: scale(1.1);
}

/* Tooltip */
.tooltip {
    visibility: hidden;
    background-color: #25d366;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 8px;
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 200px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Show tooltip on hover */
.whatsapp-button:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
.contenedor-header header{
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.contenedor-header header .logo img{
    width: 160px;
}
.contenedor-header header ul{
    display: flex;
    list-style: none;
}
.contenedor-header header nav ul li a{
    text-align: none;
    color: #fff;
    margin: 0 15px;
    padding: 3px;
    transition: .5s;
    text-decoration: none;
}
.contenedor-header header nav ul li a:hover{
    color: #f26c4f;
}
.inicio {
    background: linear-gradient(to top, rgba(30,35,38,.01), rgba(30,35,38,1)), url(/img/serv-programa-lux-leasing.jpg);
    background-size: cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
}
.inicio .contenido-banner{
    padding:  20px;
    /* background-color: #3A89C9; */
    max-width: 550px;
    margin: auto;
    text-align: center;
    border-radius: 40px;
}
.inicio .contenido-banner img{
    margin-top: 40px;
    display: block;
    width: 50%;
    margin: auto;

}
.inicio .contenido-banner h1{
    margin-top: 45px;
    font-size: 62px;
}
.inicio .contenido-banner h2{
    font-size: 40px;
    font-weight: normal;
}

        .section-wrapper {
            max-width: 1100px;
            margin: 0 auto 40px auto;
        }

        .hero-servicio {
            text-align: center;
            margin-bottom: 50px;
        }

        .hero-servicio h1 {
            font-size: 40px;
            margin-bottom: 10px;
        }

        .hero-servicio h2 {
            font-size: 22px;
            font-weight: normal;
            margin-bottom: 20px;
        }

        .hero-servicio p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.5;
        }

        .bloque {
            background-color: #3A89C9;
            border-radius: 20px;
            padding: 25px 25px 20px 25px;
            margin-bottom: 25px;
            box-shadow: 0 0 10px rgba(0,0,0,0.15);
        }

        .bloque h2,
        .bloque h3 {
            margin-bottom: 10px;
        }

        .bloque h2 {
            font-size: 26px;
        }

        .bloque h3 {
            font-size: 20px;
            margin-top: 10px;
        }

        .bloque p {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 8px;
        }

        .bloque ul {
            margin: 8px 0 8px 20px;
            padding-left: 0;
            font-size: 16px;
            line-height: 1.5;
        }

        .bloque ul li {
            margin-bottom: 5px;
        }

        .subtitulo {
            font-weight: 600;
            margin-top: 8px;
        }

        .beneficios-lista {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .beneficios-lista li {
            flex: 1 1 260px;
        }

        .call-to-action {
            text-align: center;
            margin-top: 40px;
        }

        .btn-contacto {
            background: #F26C4F;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 12px 30px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-contacto:hover {
            background: #ff845f;
            transform: translateY(-1px);
        }

        .btn-contacto i {
            margin-left: 8px;
        }

        /* Ajustes responsive */
        @media (max-width: 768px) {
            main {
                padding: 110px 15px 40px;
            }

            .hero-servicio h1 {
                font-size: 32px;
            }

            .hero-servicio h2 {
                font-size: 18px;
            }

            .hero-servicio p {
                font-size: 16px;
            }

            .bloque {
                padding: 20px;
            }
        }