/**
 * Paula Beneficios CSS — v1.0
 */

:root {
    --pb-red:    #ff0000;
    --pb-green:  #33cc33;
    --pb-yellow: #fbbf24;
    --pb-dark:   #1a202c;
    --pb-gray:   #4a5568;
    --pb-light:  #f8fafc;
}

.paula-ben {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    max-width: 960px;
    margin: 0 auto;
    padding: 48px;
    color: var(--pb-dark);
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow:
        0 4px 6px rgba(0,0,0,0.04),
        0 10px 30px rgba(0,0,0,0.07),
        0 20px 60px rgba(0,0,0,0.04);
}

/* HEADER */
.pb-header { text-align: center; margin-bottom: 40px; }

.pb-pill {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--pb-red) 0%, var(--pb-yellow) 50%, var(--pb-green) 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.pb-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.2;
}

.pb-subtitle {
    font-size: 16px;
    color: var(--pb-gray);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* COMPARACIÓN */
.pb-comparacion {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 44px;
}

.pb-comp-card {
    border-radius: 18px;
    padding: 28px 24px;
    border: 2px solid;
}

.pb-antes {
    border-color: #fecaca;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.pb-despues {
    border-color: var(--pb-green);
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.pb-comp-emoji { font-size: 48px; text-align: center; margin-bottom: 12px; }

.pb-comp-card h3 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 20px;
}

.pb-comp-lista { list-style: none; padding: 0; margin: 0; }

.pb-comp-lista li {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    line-height: 1.4;
}

.pb-comp-lista li:last-child { border-bottom: none; }

.pb-comp-arrow {
    font-size: 32px;
    font-weight: 700;
    color: var(--pb-green);
    text-align: center;
}

/* 9 TARJETAS */
.pb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.pb-card {
    background: var(--pb-light);
    border-radius: 16px;
    padding: 24px 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pb-card:hover {
    border-color: var(--pb-green);
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(51,204,51,0.14);
}

.pb-icon {
    font-size: 36px;
    transition: transform 0.3s ease;
}

.pb-card:hover .pb-icon { transform: scale(1.15) rotate(5deg); }

.pb-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--pb-dark);
    line-height: 1.3;
}

.pb-card p {
    font-size: 13px;
    color: var(--pb-gray);
    margin: 0;
    line-height: 1.6;
}

/* MÉTODO PAULA */
.pb-metodo {
    background: linear-gradient(135deg, #1a202c, #2d3748);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 36px;
    border: 2px solid rgba(51,204,51,0.3);
}

.pb-metodo-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.pb-metodo-badge {
    display: inline-block;
    background: var(--pb-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.pb-metodo-texto h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.3;
}

.pb-metodo-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pb-metodo-lista li { font-size: 14px; color: #cbd5e0; line-height: 1.5; }
.pb-metodo-lista li strong { color: #fff; }

.pb-metodo-resultado {
    text-align: center;
    background: rgba(51,204,51,0.12);
    border: 2px solid rgba(51,204,51,0.4);
    border-radius: 16px;
    padding: 28px 32px;
    min-width: 160px;
}

.pb-resultado-num {
    font-size: 80px;
    font-weight: 900;
    color: var(--pb-green);
    line-height: 1;
}

.pb-resultado-label {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 8px 0 6px;
    line-height: 1.3;
}

.pb-resultado-sub {
    font-size: 11px;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA */
.pb-cta {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid var(--pb-green);
    border-radius: 18px;
    padding: 32px;
    text-align: center;
}

.pb-cta-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--pb-dark);
    margin: 0 0 20px;
    line-height: 1.5;
}

.pb-cta-btn {
    display: inline-block;
    background: var(--pb-red);
    color: #fff;
    padding: 16px 44px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pb-cta-btn:hover {
    background: var(--pb-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51,204,51,0.3);
    color: #fff;
}

.pb-cta-sub {
    font-size: 13px;
    color: var(--pb-gray);
    margin: 12px 0 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .pb-grid { grid-template-columns: repeat(2, 1fr); }
    .pb-metodo-inner { grid-template-columns: 1fr; gap: 24px; }
    .pb-metodo-resultado { min-width: auto; }
}

@media (max-width: 768px) {
    .paula-ben { padding: 28px 20px; }
    .pb-title { font-size: 24px; }
    .pb-comparacion { grid-template-columns: 1fr; gap: 16px; }
    .pb-comp-arrow { transform: rotate(90deg); }
    .pb-grid { grid-template-columns: 1fr; }
    .pb-metodo { padding: 24px 18px; }
    .pb-resultado-num { font-size: 60px; }
}