a {
    text-decoration: none;
    color: #fff;
}

.home {
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.section {
    width: 100%;
    display: flex;
    text-align: justify;
    color: #fff;
}

.section:nth-child(odd) { background: #5DBAB2; }
.section:nth-child(even) { background: #D691AC; }

.nav-pills .nav-link.active,
.show > .nav-pills .nav-link { background: #5DBAB2 !important; }

.nav-link { color: black; }
.nav-link:hover { color: #D80C83 !important; }
.navbar { background-color: #FFE4F6 !important; }

/* ── SERVICIOS CARDS ── */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.servicio-card {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s, background 0.2s;
}

.servicio-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.25);
}

.servicio-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.servicio-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.servicio-card p {
    font-size: 0.88rem;
    opacity: 0.9;
}

.proximamente-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.2);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    border: 1px solid rgba(255,255,255,0.4);
}

footer {
    width: 100%;
    color: #fff;
    align-items: center;
    align-content: center;
    text-align: center;
}

.autor {
    color: #D691AC;
    font-size: 1.3rem;
    text-decoration: none;
}

.btn-wsp {
    position: fixed;
    width: 55px;
    height: 55px;
    line-height: 55px;
    bottom: 30px;
    right: 30px;
    background: #0df053;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index: 100;
}

.btn-wsp:hover {
    text-decoration: none;
    color: #0df053;
    background: #fff;
}

.nosotros-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.nosotros-text { flex: 1; min-width: 280px; }
.nosotros-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 200px;
}

.stat-box {
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
}

.stat-box .number {
    font-size: 2rem;
    font-weight: 800;
}

.stat-box .label {
    font-size: 0.85rem;
    opacity: 0.9;
}