/* ============================================================
   SERVICIOS.CSS
   ============================================================ */

#particles-canvas { position:fixed; top:0; left:0; width:100%; height:100%; pointer-events:none; z-index:0; opacity:0.2; }

.servicios-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.srv-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.srv-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.srv-card:hover::before { transform: scaleX(1); }

.srv-icon { font-size: 2.2rem; margin-bottom: 1.5rem; }

.srv-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.srv-desc {
    font-size: 0.88rem;
    color: var(--muted-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.srv-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.srv-includes li {
    font-size: 0.82rem;
    color: var(--muted-light);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.srv-includes li:last-child { border-bottom: none; }
.srv-includes li::before { content: '—'; color: var(--gold); font-size: 0.7rem; }

.srv-cta {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid var(--gold-border);
    color: var(--gold);
    background: transparent;
    border-radius: 2px;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.25s;
}

.srv-cta:hover { background: var(--gold); color: var(--bg); }

/* ── PROCESO ── */
.proceso-section {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3.5rem;
    margin-bottom: 5rem;
}

.proceso-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
}

.proceso-grid::before {
    content: '';
    position: absolute;
    top: 28px; left: 10%;
    width: 80%; height: 1px;
    background: linear-gradient(90deg, var(--gold-border), transparent);
}

.paso {
    text-align: center;
    position: relative;
}

.paso-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.paso-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.paso-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── CTA BAND ── */
.cta-band {
    background: linear-gradient(135deg, var(--bg2), var(--bg3));
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    padding: 4rem;
    text-align: center;
}

.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-band p {
    font-size: 0.95rem;
    color: var(--muted-light);
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 900px) {
    .proceso-grid { grid-template-columns: repeat(2, 1fr); }
    .proceso-grid::before { display: none; }
    .proceso-section { padding: 2rem; }
    .cta-band { padding: 2.5rem 1.5rem; }
}
