/* style-modern.css */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* HERO SECTION */
.hero-forensic {
  position: relative;
  width: 100%;
  height: 60vh; /* Altura equilibrada */
  background: linear-gradient(135deg, #002244, #005577); /* gradiente mais moderno */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* leve camada de escurecimento */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 900px;
  padding: 2rem;
  color: #fff;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  color: #e0e0e0;
}

.card {
  border: none;
  border-radius: 12px;
}

.card-body h5 {
  font-weight: 600;
}



header {
    background: linear-gradient(135deg, #003366, #0055a5);
    color: #fff;
    padding: 20px;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 2.2rem;
}
header p {
    margin: 5px 0 0;
    font-size: 1rem;
    opacity: 0.9;
}
nav {
    background: #002244;
    padding: 10px 0;
    text-align: center;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}
nav a:hover {
    color: #00b4d8;
}
.section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.section h2 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.8rem;
}
.section p {
    margin-bottom: 10px;
    line-height: 1.6;
}
.section a {
    color: #0055a5;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.section a:hover {
    color: #00b4d8;
}
footer {
    text-align: center;
    background: #002244;
    color: #fff;
    padding: 15px;
    margin-top: 40px;
    font-size: 0.9rem;
}


