@charset "UTF-8";
/* --- 1. VARIÁVEIS E CONFIGURAÇÕES GERAIS --- */
:root {
  /* Cores Institucionais */
  --primary-blue: #003399;
  --dark-blue: #002266;
  --primary-green: #009933;
  --light-green: #e6f7eb;
  --accent-yellow: #FFCC00;
  /* Tons Neutros */
  --text-dark: #2c3e50;
  --text-gray: #5e6d7a;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  /* Efeitos */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 15px 40px rgba(0, 51, 153, 0.15);
  --radius-md: 12px;
  --radius-btn: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- 4. HERO SECTION --- */
.hero {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 34, 102, 0.85), rgba(0, 51, 153, 0.7)), url("https://images.unsplash.com/photo-1544531586-fde5298cdd40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}

.hero-content {
  max-width: 750px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--dark-blue);
  padding: 8px 16px;
  font-weight: 700;
  border-radius: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
  max-width: 600px;
}

.btn-hero {
  background: var(--white);
  color: var(--primary-blue);
  padding: 18px 40px;
  font-weight: 700;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
  background: var(--accent-yellow);
  color: var(--dark-blue);
  transform: translateY(-3px);
}

/* --- 5. CARDS FLUTUANTES --- */
.cards-wrapper {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  border-bottom: 4px solid transparent;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--primary-green);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 25px;
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.info-card p {
  color: var(--text-gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.card-link {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-link:hover {
  gap: 12px;
}

/* --- 6. NOVA SEÇÃO (IMAGEM + TEXTO) --- */
.section-feature {
  padding: 80px 0;
  background-color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-img-box {
  position: relative;
}

.feature-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: var(--primary-green);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.2;
}

.feature-content h4 {
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.feature-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.feature-content p {
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.btn-outline {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 12px 30px;
  border-radius: var(--radius-btn);
  font-weight: 700;
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
}

/* --- 7. QUEM SOMOS E DIRETORIA --- */
.section-about {
  padding: 80px 0;
  background: var(--bg-light);
}

.about-text h2 {
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  color: var(--text-gray);
}

.board-box {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--accent-yellow);
}

.board-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed #ddd;
}

.board-role {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 0.9rem;
}

.board-name {
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
}

/* --- 8. FOOTER COM MAPA --- */
footer {
  background-color: #1e1e1e;
  color: #bbb;
  position: relative;
}

/* Faixa do Mapa */
.map-section {
  width: 100%;
  height: 350px;
  border-bottom: 4px solid var(--primary-blue);
  filter: grayscale(20%);
  /* Mapa um pouco mais discreto */
  transition: 0.3s;
}

.map-section:hover {
  filter: grayscale(0%);
}

.footer-content {
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 15px;
}

.footer-brand p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--accent-yellow);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.contact-list i {
  color: var(--primary-green);
  margin-top: 5px;
}

.footer-bottom {
  background: #111;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #333;
  font-size: 0.85rem;
}

/* --- 9. RESPONSIVIDADE --- */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .cards-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-img {
    height: 300px;
  }
  .cards-wrapper {
    margin-top: -40px;
  }
  .feature-grid {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px;
    transition: 0.4s;
    overflow-y: auto;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 20px;
    width: 100%;
    border-top: none;
  }
  .dropdown.show-mobile {
    display: block;
    background: #f9f9f9;
  }
  .hero {
    padding: 100px 0;
    height: auto;
    text-align: center;
  }
  .hero p {
    margin: 0 auto 30px;
  }
}/*# sourceMappingURL=style.css.map */