/* ======================================================
   SERVICIOS
====================================================== */

.services-ca {
    background: #ffffff;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px 22px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* TITLE */
.service-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 14px;
}

/* LIST */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--color-muted);
}

/* bullet personalizado */
.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

/* ======================================================
   SUCURSALES
====================================================== */

.branches-ca {
    background: #ffffff;
    overflow-x: hidden; /* 👈 evita scroll lateral */
}

/* Divider */
.branches-divider {
    max-width: 320px;
    border-top: 1px solid #d1d5db;
}

/* ZONE TITLE */
.branch-zone {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-muted);
    margin-bottom: 10px;
}

.branch-zone span {
    display: block;
    color: var(--color-secondary);
    font-weight: 800;
    margin-top: 2px;
}

/* LIST */
.branch-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.branch-list li {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--color-text);
}

/* MAP */
.branches-map {
    max-width: 100%;
    height: auto;
}

/* NOTE */
.branches-note {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-top: 10px;
}

/* MOBILE */
@media (max-width: 991px) {
    .branches-divider {
        max-width: 100%;
    }
}

/* ======================================================
   SOLUCIONES (GRID VISUAL)
====================================================== */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* ITEM */
.solution-item {
    position: relative;
    min-height: 340px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* OVERLAY */
.solution-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    color: #fff;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background .3s ease;
}

.solution-item:hover .solution-overlay {
    background: rgba(0,0,0,0.55);
}

/* TITLES */
.solution-overlay h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: white;
}

.solution-overlay p {
    font-size: 0.95rem;
    max-width: 320px;
    color: white;
}


/* MOBILE */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-item {
        min-height: 260px;
    }
}
