/* =========================================================
   AMBIENTAL PAGE
   assets/css/pages/ambiental.css
   ========================================================= */

.ambiental-hero-banner {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(0, 20, 45, 0.72), rgba(0, 20, 45, 0.72)),
        url('../../img/bgp.png') no-repeat center center;
    background-size: cover;
    text-align: center;
}

.ambiental-hero-banner h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
}

main {
    background: #07182d;
}

.py-5 h2 {
    color: #fff;
    font-weight: 800;
    line-height: 1.3;
}

.py-5 p {
    color: rgba(255, 255, 255, 0.88);
}

.text-warning {
    color: #f3c623 !important;
}

.environment-card {
    background: #0c2746;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.environment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.san-x img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.mini-box {
    padding: 22px;
}

.mini-box h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.mini-box p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 0;
}

.cta-section {
    background:
        linear-gradient(rgba(0, 20, 45, 0.78), rgba(0, 20, 45, 0.78)),
        url('../../img/containerbg.png') no-repeat center center;
    background-size: cover;
}

.cta-section h2 {
    color: #fff;
    font-weight: 800;
}

.cta-section .cta-text {
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991.98px) {
    .ambiental-hero-banner {
        min-height: 240px;
    }

    .ambiental-hero-banner h1 {
        font-size: 2.3rem;
    }

    .san-x img {
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .ambiental-hero-banner h1 {
        font-size: 2rem;
    }

    .mini-box {
        padding: 18px;
    }

    .mini-box h5 {
        font-size: 1rem;
    }

    .mini-box p {
        font-size: 0.92rem;
    }

    .san-x img {
        height: 210px;
    }
}