*{
    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;
}
.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 {
    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{
    background: #3A89C9;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}
.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/trazas-streetview.png);
    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;
}
#servicio-detalle {
    padding: 80px 0;
    background-color: #1B325F;
    color: #fff;
}

#servicio-detalle .contenido-seccion {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Título y texto principal */
#servicio-detalle h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-align: center;
}

#servicio-detalle > .contenido-seccion > p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-align: center;
    font-size: 1rem;
}

/* Bloques de información */
.bloque-info {
    background-color: #3A89C9;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #4e73df; /* podés cambiar este color al de tu marca */
}

/* Títulos dentro de cada bloque */
.bloque-info h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.bloque-info h4 {
    margin-top: 15px;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

/* Listas y texto */
.bloque-info p {
    margin-bottom: 8px;
    font-size: 0.97rem;
}

.bloque-info ul {
    margin: 8px 0 10px 0;
    padding-left: 18px;
}

.bloque-info li {
    margin-bottom: 4px;
    font-size: 0.96rem;
}
.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;
        }

/* Responsivo */
@media (max-width: 768px) {
    #servicio-detalle {
        padding: 60px 0;
    }

    .bloque-info {
        padding: 18px 16px;
    }

    #servicio-detalle h2 {
        font-size: 1.8rem;
    }
}
