:root {
--primary:  #296f91;
  --primary-dark: #7cc8c6;
  --bg-soft: #f4f7f8;
  --text-main: #334155;
  --text-bold: #1e293b;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}




* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background-color: var(--bg-soft);
  color: var(--text-main);
  line-height: 1.6;
}

/* ================= HEADER & NAV ================= */
header {
  background: var(--white);
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none; 
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.85; 
}

.logo-img {
  height: 60px; 
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}


.logo-highlight {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}


.logo-text p {
  font-size: 0.75rem;
  color: #1e3a5f;
  margin: 0;

}

.logo-text p span {
  color: var(--text-bold);
}


@media (max-width: 480px) {
  
      .menu-mobile-btn { display: block; }
  .logo-img {
    height: 50px;
  }
  
  .logo-text p {
    font-size: 0.65rem; 
  }
  
  .logo-highlight {
    font-size: 1.1rem;
  }
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}

.btn-contact {
  background: var(--primary);
  color: white !important;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
}

.btn-contact:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* SEÇÃO CONTATO */
.contato-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

.contato-hero {
  text-align: center;
  margin-bottom: 40px;
}

.contato-hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 10px;
}

.contato-container {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border: 1px solid #eef2f6;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.contato-info-cards {
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: var(--bg-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.info-card:hover .icon-circle {
  background: var(--primary);
  color: white;
}

.info-card h3 {
  font-size: 1.1rem;
  color: var(--text-bold);
  margin-bottom: 4px;
}

.mapa-wrapper {
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.contato-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

/* FOOTER */
footer {
  background: var(--text-bold);
  color: #94a3b8;
  padding: 4rem 5% 2rem;
  text-align: center;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .contato-grid { grid-template-columns: 1fr; }
  .contato-image { order: -1; height: 300px; }
  .contato-info-cards { padding: 30px; }
  .contato-hero h1 { font-size: 2rem; }
}

.menu-mobile-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 992px) {
   @media (max-width: 992px) {
    .menu-mobile-btn {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        display: flex; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 0; 
        gap: 0;
        max-height: 0; 
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        max-height: 500px; 
        opacity: 1;
        padding: 1.5rem 0;
        gap: 1rem;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 10px;
        width: 100%;
    }
  }
    .historia-grid {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    .banner-content h2 {
        font-size: 2.2rem;
    }
    .info-cards {
        grid-template-columns: 1fr;
        margin-top: 20px;
        padding: 0 10%;
    }
}