* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

/* =========================
   NAVBAR (PADRÃO GLOBAL)
   ========================= */
.navbar {
  background-color: white;
  padding: 10px 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.logo {
  height: 90px;
}

/* Menu Hamburger (Desktop: Oculto) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #0e1d60;
}

/* Links de Navegação */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0a1472;
}

.nav-links a.active {
  color: #0e1d60;
  font-weight: bold;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  min-width: 220px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  padding: 10px 0;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  font-family: "Poppins", sans-serif;
  color: black;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
  color: #0a1472;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown > a > i {
  margin-left: 6px;
  font-size: 0.75rem;
  vertical-align: middle;
  color: #0e1d60;
}

.dropdown-content a i {
  margin-right: 8px;
  color: #0e1d60;
}

/* Botão CTA Navbar */
.cta-button {
  background-color: #0e1d60;
  color: white;
  border: 2px solid #0e1d60;
  padding: 10px 18px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.cta-button:hover {
  background-color: #003fcc;
  color: white;
  border-color: #003fcc;
}

.hero-servicos {
  background: linear-gradient(rgba(14, 29, 96, 0.85), rgba(14, 29, 96, 0.85)),
    url("https://images.pexels.com/photos/9242845/pexels-photo-9242845.jpeg")
      center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero-servicos h1 {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-servicos p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  opacity: 0.95;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.servicos-producao {
  padding: 80px 40px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.servicos-producao h2 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  margin-bottom: 50px;
  color: #0e1d60;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.card {
  flex: 1 1 300px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-8px);
}

.card i {
  font-size: 40px;
  color: #0e1d60;
  margin-bottom: 15px;
}

.card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.card .cta-button {
  display: inline-block;
  background-color: #0e1d60;
  color: white;
  border: 2px solid #0e1d60;
  padding: 10px 16px;
  text-decoration: none;
  font-family: "Satoshi", sans-serif;
  border-radius: 4px;
  transition: background-color 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.card .cta-button:hover {
  background-color: #003fcc;
  border-color: #003fcc;
}

.vantagens {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.vantagens-container {
  max-width: 1100px;
  margin: 0 auto;
}

.vantagens .subtitulo {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0e1d60;
  margin-bottom: 10px;
  letter-spacing: 0.8px;
}

.vantagens h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}

.vantagens-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.vantagem {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 10px;
  margin: 0 auto;
}

.vantagem i {
  font-size: 2.5rem;
  color: #0057ff;
  margin-bottom: 15px;
}

.vantagem h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.vantagem p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.footer {
  background: linear-gradient(to top, #030e46, #0a1472);
  color: white;
  font-family: "Poppins", sans-serif;
  padding: 40px 20px 20px 20px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 220px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 16px;
}

.footer-description {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #e0e0e0;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  border-left: 2px solid white;
  padding-left: 8px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column ul li a i {
  margin-right: 7px;
  color: white;
}

.footer-column ul li a:hover {
  color: #004aad;
}

.contact-info li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.social-icons a {
  margin-right: 12px;
  font-size: 18px;
  color: white;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #004aad;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #d0d0d0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 14px;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: background-color 0.3s;
}

.whatsapp-button:hover {
  background-color: #1eb84c;
}

@media (max-width: 777px) {
  /* Navbar */
  .hamburger {
    display: block;
    margin-left: 0;
  }

  /* Esconde os links e o botão inicialmente */
  .navbar-container .nav-links,
  .navbar-container .cta-button {
    display: none;
  }

  .navbar-container.active .nav-links,
  .navbar-container.active .cta-button {
    display: flex;
  }

  /* Ajuste do container para quebrar linha e permitir empilhamento */
  .navbar-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 0;
  }

  /* Links em coluna ocupando toda a largura */
  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 12px;
    padding-top: 15px;
    margin-top: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    padding: 10px 0;
    width: 100%;
    display: block;
  }

  /* Dropdown no Mobile: Ajuste para mostrar conteúdo ao clicar */
  .dropdown {
    position: relative;
  }

  .dropdown-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    min-width: 220px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    padding: 10px 0;
  }

  .dropdown-content li {
    list-style: none;
  }

  .dropdown-content a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-family: "Poppins", sans-serif;
    color: black;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
  }

  .dropdown-content a:hover {
    background-color: #f0f0f0;
    color: #0a1472;
  }

  .dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown:not(.active):hover .dropdown-content {
    display: none;
  }

  .dropdown > a > i {
    margin-left: 6px;
    font-size: 0.75rem;
    vertical-align: middle;
    color: #0e1d60;
  }

  .dropdown-content a i {
    margin-right: 8px;
    color: #0e1d60;
  }

  /* Botão CTA do menu */
  .navbar-container .cta-button {
    width: 90%;
    justify-content: center;
    text-align: center;
    margin: 10px auto;
  }

  /* Ajustes Hero */
  .hero-servicos h1 {
    font-size: 28px;
  }

  .hero-servicos {
    padding: 80px 20px;
  }

  /* Seções de Conteúdo */
  .servicos-producao {
    padding: 60px 20px;
  }

  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 100%;
  }

  .card .cta-button {
    white-space: normal;
    /* Permite quebrar linha */
  }

  /* Vantagens */

  .vantagens-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .vantagem {
    flex: 1 1 280px;
    max-width: 320px;
    padding: 10px;
    margin: 0 auto;
  }

  .vantagens {
    padding: 60px 20px;
    text-align: center;
  }

  .vantagens-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  /* Footer Responsivo */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-column {
    min-width: 100%;
    flex: 1 1 100%;
  }

  .footer-column h4 {
    border-left: none;
    padding-left: 0;
    padding-bottom: 5px;
    display: inline-block;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .whatsapp-button {
    bottom: 15px;
    right: 15px;
    padding: 12px;
    font-size: 18px;
  }
}
