.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: unset;
}
/* ===== CARDS ===== */
 .info-card {
     border: 2px solid #111;
     border-radius: 50px;
     padding: 28px 20px;
     text-align: center;
     transition: all 0.3s ease;
     height: 200px;
 }

 .info-card:hover {
     border-color: #d4af37;
     transform: translateY(-8px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .info-card i {
     font-size: 2.8rem;
     margin-bottom: 16px;
     color: #111;
 }

 .info-card h5 {
     font-weight: 700;
     margin-bottom: 8px;
 }

 /* Emergência */
 .emergencia-card {
     border: 2px solid #dc3545;
     border-radius: 16px;
     padding: 24px 20px;
     text-align: center;
     transition: all 0.3s;
 }

 .emergencia-card:hover {
     background-color: #fff5f5;
     transform: translateY(-5px);
 }

 .numero-emergencia {
     font-size: 1.5rem;
     font-weight: 900;
     color: #dc3545;
 }
