/* ============================================
   Paula Servicios v1.1 — CSS completo
   ============================================ */

/* ── SECCIÓN GENERAL ── */
.paula-srv {
    background: #ffffff;
    padding: 48px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

/* ── HEADER ── */
.ps-header {
    text-align: center;
    margin-bottom: 44px;
}

.ps-pill {
    display: inline-block;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.ps-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 12px;
    line-height: 1.2;
}

.ps-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* ── GRID 3 TARJETAS ── */
.ps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
    align-items: stretch;
}

/* ── TARJETA BASE ── */
.ps-card {
    border-radius: 20px;
    padding: 28px 24px;
    border: 2px solid;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ps-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* ── COLORES POR TARJETA ── */
.ps-bajar {
    border-color: #fca5a5;
    background: linear-gradient(135deg, #fff5f5, #fff0f0);
}

.ps-mantener {
    border-color: #fcd34d;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.ps-subir {
    border-color: #6ee7b7;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

/* ── TOP: ICONO + BADGE ── */
.ps-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ps-card-icon { font-size: 44px; line-height: 1; }

.ps-card-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: #fee2e2;
    color: #991b1b;
    padding: 4px 12px;
    border-radius: 20px;
}

.ps-badge-yellow {
    background: #fef3c7;
    color: #92400e;
}

.ps-badge-green {
    background: #d1fae5;
    color: #065f46;
}

/* ── TÍTULO Y DESCRIPCIÓN ── */
.ps-card-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}

.ps-card-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* ── PARA QUIÉN ES ── */
.ps-para-quien {
    background: rgba(255,255,255,0.6);
    border-radius: 12px;
    padding: 14px 16px;
}

.ps-pq-titulo {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    margin: 0 0 10px;
}

.ps-para-quien ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ps-para-quien li {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
}

/* ── QUÉ INCLUYE ── */
.ps-incluye {
    background: rgba(255,255,255,0.6);
    border-radius: 12px;
    padding: 14px 16px;
    flex: 1;
}

.ps-inc-titulo {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    margin: 0 0 10px;
}

.ps-incluye ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ps-incluye li {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.ps-incluye li:last-child { border-bottom: none; padding-bottom: 0; }

/* ── RESULTADO ── */
.ps-resultado {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.8);
    border-radius: 12px;
    padding: 12px 16px;
}

.ps-res-icon { font-size: 20px; }

.ps-res-texto {
    font-size: 13px;
    color: #374151;
}

.ps-res-texto strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* ── MODALIDAD ── */
.ps-modalidad {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ps-mod {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

/* ── BOTÓN CTA ── */
.ps-cta {
    display: block;
    text-align: center;
    background: #ef4444;
    color: #fff !important;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.ps-cta:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239,68,68,0.35);
    color: #fff !important;
}

.ps-cta-yellow {
    background: #d97706;
}
.ps-cta-yellow:hover {
    background: #b45309;
    box-shadow: 0 8px 20px rgba(217,119,6,0.35);
}

.ps-cta-green {
    background: #16a34a;
}
.ps-cta-green:hover {
    background: #15803d;
    box-shadow: 0 8px 20px rgba(22,163,74,0.35);
}

/* ── NOTA INFERIOR ── */
.ps-nota {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 32px;
}

.ps-nota-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ps-nota-icon { font-size: 32px; }

.ps-nota-inner > div {
    flex: 1;
    min-width: 200px;
}

.ps-nota-inner strong {
    display: block;
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.ps-nota-inner p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.ps-nota-cta {
    display: inline-block;
    background: #1a1a2e;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.ps-nota-cta:hover {
    background: #2d3748;
    transform: translateY(-2px);
    color: #fff !important;
}

/* ── DIFERENCIADORES ── */
.ps-difs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    padding-top: 8px;
}

.ps-dif {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 12px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.ps-dif-icon { font-size: 28px; }

.ps-dif strong {
    font-size: 13px;
    color: #1a1a2e;
    font-weight: 700;
    line-height: 1.3;
}

.ps-dif p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .paula-srv  { padding: 36px 28px; }
    .ps-difs    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .paula-srv  { padding: 28px 20px; }
    .ps-grid    { grid-template-columns: 1fr; }
    .ps-difs    { grid-template-columns: repeat(2, 1fr); }
    .ps-title   { font-size: 26px; }
    .ps-nota-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .ps-difs    { grid-template-columns: 1fr 1fr; }
    .ps-title   { font-size: 22px; }
}
