/* =========================
   ÁREAS DE ATUAÇÃO
========================= */

.areas {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #ff7a00, #ff9a2f);
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.area-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: left;
  transition: 0.4s ease;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.area-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.area-card p {
  margin-bottom: 20px;
  line-height: 1.6;
}

@keyframes floatGlow {
  0% { transform: translate(0px, 0px); }
  100% { transform: translate(40px, 40px); }
}

@keyframes floatGlowReverse {
  0% { transform: translate(0px, 0px); }
  100% { transform: translate(-30px, -30px); }
}

/* =========================
   HERO HOME PREMIUM
========================= */


.hero-home {
  background:
    linear-gradient(
      rgba(10, 26, 47, 0.75),
      rgba(15, 42, 74, 0.85)
    ),
    url("../imagens/seguranca/hero-seguranca-bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Overlay escuro suave */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Fade elegante */

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}