@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;600;700&display=swap');

:root {
  --primary: #002c94;
  --secondary: #24c256;
  --font-family: 'Montserrat', sans-serif;
}

body {
  font-family: var(--font-family);
  font-weight: 300;
  margin: 0;
  padding: 0;
}

h1 {
  font-weight: 700; 
}

h2, h3 {
  font-weight: 600;
}

a {
  text-decoration: none;
}

#navbar {
  width: 100%;
  position: absolute;   
  top: 0;
  left: 0;
  z-index: 10;          
  background: transparent;  
  padding: 28px 0;
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  max-height: 80px; 
}

.navbar-links {
  display: flex;
  gap: 45px; 
}

.navbar-links a {
  color: #fff;
  font-weight: 500;
  font-size: 17px; 
  transition: 0.3s ease;
}

.navbar-links a:hover {
  color: var(--secondary);
}

#hero {
  position: relative;
  min-height: 110vh; 
  display: flex;
  align-items: stretch;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: relative;  
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  padding-top: 200px;
  padding-bottom: 120px; 
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-text {
  color: #fff;
}

.hero-text h1 {
  font-size: 52px;
  margin-bottom: 25px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
}

.hero-form {
  background: rgb(255, 255, 255);
  padding: 40px;
  border-radius: 25px;
}

.hero-form button,
.hero-form input[type="submit"] {
  background: linear-gradient(135deg, var(--secondary), #1ea84a);
  box-shadow: 0 8px 20px rgba(36, 194, 86, 0.3);
}

.btn-primary {
  background-color: var(--primary);
  border: none;
  color: #fff;
  padding: 14px 26px;
  border-radius: 6px;
  transition: 0.3s ease;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--secondary);
}

#emissivo {
  background: #fff;
  padding: 100px 0; 
}

#emissivo h2 {
  color: var(--primary);
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.emissivo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.emissivo-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.emissivo-content p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.6;
}

.emissivo-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.emissivo-content ul li {
  margin-bottom: 10px;
  font-size: 17px;
}

#emissivo .btn-primary {
  margin-top: 20px;
  display: inline-block;
}

#receptivo {
  background: #f6f6f6;
  padding: 100px 0;
}

#receptivo h2 {
  color: var(--secondary);
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.receptivo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.receptivo-content p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.6;
}

.receptivo-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.receptivo-content ul li {
  margin-bottom: 10px;
  font-size: 17px;
}

.receptivo-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

#receptivo .btn-primary {
  margin-top: 20px;
  display: inline-block;
}

#diferenciais {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}

#diferenciais h2 {
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 20px;
}

.diferenciais-intro {
  max-width: 800px;
  margin: 0 auto 60px auto;
  font-size: 18px;
  line-height: 1.6;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  margin-bottom: 60px;
}

.diferencial-item img {
  width: 70px;
  margin-bottom: 20px;
}

.diferencial-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.diferencial-item p {
  font-size: 16px;
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto;
}

#diferenciais .btn-primary.center {
  display: inline-block;
}

#cta {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.cta-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); 
  display: flex;
  align-items: center;
  text-align: center;
}

.cta-content {
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 38px;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
}

#cta .btn-primary {
  display: inline-block;
}

.footer {
  background: #f5f5f5;
  padding: 35px 0; 
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  max-width: 180px; 
  margin-bottom: 15px;
}

.footer-whatsapp {
  font-size: 17px;
  text-decoration: none;
  color: #25D366; 
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.footer-whatsapp i {
  font-size: 20px;
  margin-right: 6px;
}

.footer-whatsapp:hover {
  opacity: 0.8;
}

.footer-copy {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

#navbar {
  background: var(--primary);
  position: relative;
}

.navbar-links {
  position: absolute;
  top: -300px; 
  left: 0;
  width: 100%;
  background: var(--primary);

  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 30px 0;

  transition: 0.4s ease;
  z-index: 999;
}

.navbar-links.active {
  top: 100%; 
}

.navbar-links a {
  color: #fff;
  font-size: 18px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

  #hero {
    min-height: auto;
  }

  .hero-overlay {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-form {
    padding: 25px;
    border-radius: 18px;
  }

  .emissivo-grid,
  .receptivo-grid {
    grid-template-columns: 1fr;
  }

.receptivo-image {
  order: -1;
}

  .diferenciais-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #cta {
    height: auto;
  }

  .cta-overlay {
    padding: 80px 20px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }

}