:root {
  --royal-blue: #4169E1;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --text-dark: #333333;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* Header */
header { background: var(--royal-blue); color: var(--white); position: sticky; top: 0; z-index: 1000; }
.navbar { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 1rem; }
.logo { font-size: 1.5rem; font-weight: bold; }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { color: var(--white); font-weight: 500; }
.hamburger { display: none; flex-direction: column; cursor: pointer; }
.hamburger span { background: var(--white); height: 3px; width: 25px; margin-bottom: 5px; border-radius: 2px; }

/* Hero */
.hero { height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); padding: 0 1rem; }
.hero h1 { font-size: 2.5rem; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
.hero p { margin-top: 1rem; font-size: 1.2rem; }

/* Seções Gerais */
.section { padding: 4rem 1rem; max-width: 1200px; margin: 0 auto; }
.section h2 { text-align: center; margin-bottom: 2rem; color: var(--royal-blue); }
.section-image { width: 100%; max-width: 600px; display: block; margin: 2rem auto; border-radius: 8px; }

/* Serviços */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 2rem; }
.service-card { background: var(--light-gray); border-radius: 8px; padding: 2rem 1rem; text-align: center; transition: transform .3s; }
.service-card:hover { transform: translateY(-5px); }
.service-card i { font-size: 2.5rem; color: var(--royal-blue); margin-bottom: 1rem; }
.service-card h3 { margin-bottom: .5rem; font-size: 1.2rem; }
.service-card p { font-size: .95rem; color: #555; }

/* Contato */
.contact-container { display: flex; gap: 2rem; flex-wrap: wrap; }
.contact-info, .contact-form { flex: 1; }
.contact-info p, .contact-info a { margin-bottom: .8rem; }
#formMessage { margin-top: 1rem; font-weight: 600; }
.contact-form form { display: flex; flex-direction: column; }
.contact-form input, .contact-form textarea { padding: .8rem; margin-bottom: 1rem; border: 1px solid #ccc; border-radius: 4px; }
.contact-form button { background: var(--royal-blue); color: var(--white); border: none; padding: .8rem; border-radius: 4px; cursor: pointer; font-weight: 600; }

/* Transparência */
.transparency-table { width: 100%; border-collapse: collapse; }
.transparency-table th, .transparency-table td { padding: 1rem; border: 1px solid #ddd; }
.transparency-table th { background: var(--royal-blue); color: var(--white); }

/* Footer */
footer { background: var(--royal-blue); color: var(--white); text-align: center; padding: 1.5rem 1rem; }

/* Responsividade */
@media(max-width: 768px) {
  .nav-links { display: none; flex-direction: column; background: var(--royal-blue); width: 100%; }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
}
/* === Grid de imagens na Página Inicial === */
.images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.image-card {
  text-align: center;
}
.image-card img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.image-card p {
  margin-top: .5rem;
  font-weight: 500;
  color: #555;
}
