/* === Bloc: Llista de Serveis (services-list) === */
.services-list__items {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.services-list__item {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.1em;
    border-bottom: 1px solid #eee;
}

/* Modificador per a l'últim element */
.services-list__item--last {
    border-bottom: none;
}

/* Vinyeta personalitzada (pseudo-element) */
.services-list__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 12px;
    border: solid #e4002b; /* Color corporatiu */
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}


/* === Bloc: Crida a l'Acció (cta) === */
.cta {
    background-color: #f2f2f2;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
}

.cta__text-wrapper {
    flex: 1 1 520px;
    min-width: 260px;
    text-align: left;
}

.cta__title {
    margin-top: 0;
}

.cta__subtitle {
    margin-bottom: 0;
}

.cta__button {
    display: inline-block;
    background-color: #e4002b;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1.2em;
    align-self: center;
}

.cta__button:hover {
    background-color: #c00024;
}

.qui-som__legal-info {
    margin: 0 0 14px;
    font-size: 0.95em;
    color: #555;
}

.qui-som__map-frame {
    margin: 20px 0;
    padding: 6px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.qui-som__map-iframe {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 7px;
}

@media (max-width: 768px) {
    .cta {
        padding: 22px 18px;
    }

    .cta__content {
        justify-content: center;
        text-align: center;
    }

    .cta__text-wrapper {
        text-align: center;
    }

    .cta__button {
        font-size: 1.05em;
        padding: 12px 24px;
    }

    .qui-som__map-frame {
        margin: 16px 0;
        padding: 4px;
    }
}
