/* Encabezado y título */
.title {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
    text-align: left;
}

/* Distribuidores layout */

.distribuidores-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}


.distribuidor-info,
.image-filler {
    width: 100%;
}

@media (min-width: 768px) {
    .distribuidores-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .distribuidor-info,
    .image-filler {
        width: 50%;
    }

    .image-filler {
        text-align: center;
    }
}

.distribuidor-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Íconos en tarjetas */
.servicio-iconos {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    align-items: flex-start; /* Por defecto: alineado a la izquierda */
}


.servicio-box:hover {
    transform: translateY(-4px);
}

.servicio-box img {
    height: 30px;                /* Altura fija */
    width: auto;                  /* Ancho flexible */
    object-fit: contain;         /* Mostrar toda la imagen */
    border-radius: 7px;
    display: block;
    background: #fff;
}


/* Imagen decorativa */
.image-filler img {
    width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Mapa */
#map {
    width: 100vw;
    height: 400px;
    margin: 40px auto 0;
    display: block;
    border: none;
    margin-left: calc(-50vw + 50%);
}
