﻿.ps-modern {
    padding: 50px 0;
    background: #f9fafb;
}

/* HEADER */
.ps-modern-header h2 {
    font-size: clamp(2rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

    .ps-modern-header h2 span {
        color: #2563eb;
    }

.ps-modern-header p {
    margin-top: 12px;
    font-size: 1.05rem;
    color: #475569;
}

/* BOX BASE */
.ps-box {
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 32px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

/* PROBLEMAS */
.ps-box-problem h3 {
    color: #991b1b;
}

/* SOLUCIÓN */
.ps-box-solution {
    border-color: #dbeafe;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

    .ps-box-solution h3 {
        color: #1e3a8a;
    }

/* LISTA */
.ps-items {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

    .ps-items li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
        font-size: 0.98rem;
        color: #334155;
        line-height: 1.5;
    }

/* ICONOS */
.ps-box-problem i {
    color: #dc2626;
    font-size: 1.05rem;
    margin-top: 4px;
}

.ps-box-solution i {
    color: green;
    font-size: 1.05rem;
    margin-top: 4px;
}

/* CTA */
.ps-action {
    margin-top: 32px;
}

.btn-ps-modern {
    display: inline-block;
    padding: 13px 34px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    text-align: center;
}

    .btn-ps-modern:hover,
    .btn-ps-modern:focus {
        background: #1e40af;
        color: #ffffff; /* Mantener el texto blanco */
        transform: translateY(-2px);
        text-decoration: none;
    }


/* HOVER SUTIL (CLASE SAAS) */
.ps-box:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .ps-box {
        padding: 36px 28px;
    }

    .ps-modern-header {
        text-align: center;
    }

    .ps-action {
        text-align: center;
    }
}


/* ICONO DEL HEADER */
.ps-header-icon {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* TITULO DE LOS BOX */
.ps-box-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px; /* 👈 CLAVE para simetría */
    margin-bottom: 18px;
}

    .ps-box-title h3 {
        margin: 0;
        font-size: 1.55rem;
        font-weight: 700;
    }

/* ICONOS DE TITULO */
.ps-box-problem .ps-box-title i {
    color: #dc2626;
    font-size: 1.3rem;
}

.ps-box-solution .ps-box-title i {
    color: #2563eb;
    font-size: 1.3rem;
}
