/* Source: page/Ahorros.php */
/* =========================
   BASE
========================= */
body {
    font-family: 'Poppins', sans-serif;
    background: #f4f6f9;
    color: #333;
}

/* =========================
   HERO
========================= */
.hero-section {
    background: linear-gradient(135deg, #00a75d, #28a745, #007bff);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 600;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: .95;
}

.section-heading {
    text-align: center;
    margin-bottom: 32px;
}

.section-heading h2 {
    font-size: 2rem;
    color: #0a4f6d;
    margin-bottom: 10px;
}

.section-heading p {
    color: #667085;
    margin-bottom: 0;
}

.products-section,
.requirements-section {
    padding: 50px 0;
}

.products-grid,
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.products-grid-main {
    grid-template-columns: repeat(3, 1fr);
}

.product-card,
.requirement-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    scroll-margin-top: 120px;
}

.product-card:hover,
.requirement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.product-content,
.requirement-card {
    padding: 25px;
}

.product-content h3,
.requirement-card h3 {
    color: #0a4f6d;
    margin-bottom: 10px;
}

.product-content p,
.requirement-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.product-content ul,
.requirement-card ul {
    padding-left: 0;
    margin-bottom: 0;
}

.product-content li,
.requirement-card li {
    list-style: none;
    font-size: 0.92rem;
    padding: 6px 0;
    line-height: 1.5;
}

.product-content li::before,
.requirement-card li::before {
    content: "✓";
    color: #00a75d;
    margin-right: 8px;
    font-weight: bold;
}

.requirements-section {
    background: linear-gradient(180deg, #eef7f1 0%, #f7fafc 100%);
}

.requirement-card {
    position: relative;
    border: 1px solid rgba(0, 167, 93, 0.08);
}

.requirement-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00a75d, #28a745);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
}


@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.4rem;
    }

    .products-grid-main {
        grid-template-columns: 1fr;
    }
}
