/* ============================================
   Página WhatsApp - DCI
   ============================================ */

.wpp-page {
    padding: 36px 0 64px;
    background: #fff;
}

.wpp-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.wpp-container *,
.wpp-container *::before,
.wpp-container *::after {
    box-sizing: border-box;
}

/* ── Hero Banner ─────────────────────────── */

.wpp-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f4f7f9;
    border-radius: 16px;
    padding: 40px 48px;
    margin-bottom: 24px;
    gap: 32px;
}

.wpp-hero-text {
    flex: 1;
}

.wpp-hero-title {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #1a2e3b !important;
    line-height: 1.3 !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

.wpp-hero-subtitle {
    font-size: 15px;
    color: #515151;
    line-height: 1.65;
    margin: 0;
}

.wpp-hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.wpp-logo-circle {
    width: 84px;
    height: 84px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpp-logo-circle svg {
    width: 50px;
    height: 50px;
    display: block;
}

.wpp-brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #25D366;
    letter-spacing: -0.3px;
    line-height: 1;
    font-family: inherit;
}

/* ── Cards Grid ──────────────────────────── */

.wpp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wpp-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wpp-card-title {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #1a2e3b !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
    border: none !important;
    background: none !important;
}

.wpp-card-desc {
    font-size: 14px;
    color: #515151;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.wpp-btn {
    display: inline-block !important;
    background: #25a244 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    align-self: flex-start;
    margin-top: 6px;
    border: none !important;
    line-height: 1.4 !important;
    transition: background 0.2s ease;
    cursor: pointer;
}

.wpp-btn:hover,
.wpp-btn:focus {
    background: #1d8c3a !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* ── Responsivo ──────────────────────────── */

@media (max-width: 768px) {
    .wpp-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        gap: 24px;
    }

    .wpp-hero-brand {
        flex-direction: row;
        align-self: center;
        gap: 12px;
    }

    .wpp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .wpp-hero-title {
        font-size: 21px !important;
    }

    .wpp-hero {
        padding: 24px 20px;
    }

    .wpp-card {
        padding: 22px 18px;
    }
}
