/* ===== Página Ambiente - Estilo exclusivo ===== */


/* Cards no mesmo padrão do site */

.desc-callout {
    border: 2px solid #e5ccf5;
    background: #faf6fc;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.desc-callout:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.desc-callout h5 {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--accent, #9400D3);
    margin-bottom: 0.5rem;
}

.desc-callout p {
    margin: 0;
    line-height: 1.6;
}

.desc-callout ul {
    margin: 0.5rem 0 0 1.2rem;
    padding-left: 1rem;
}

.desc-callout li {
    margin-bottom: 0.4rem;
    position: relative;
    line-height: 1.5;
}

.desc-callout li::marker {
    color: var(--accent, #9400D3);
    font-weight: bold;
}


/* Destaque opcional para títulos internos */

.highlight-title {
    font-weight: bold;
    background-color: #dce9ff;
    padding: 2px 4px;
    border-radius: 4px;
}


/* ===== Responsividade ===== */

@media (max-width: 576px) {
    .desc-callout {
        padding: 0.9rem 1rem;
    }
    .section-title h2 {
        font-size: 1.4rem;
    }
    .section-title i {
        font-size: 1.3rem;
    }
}