/* RESET & BOX‑SIZING */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #000;
}

/* CONTAINERS GERAIS */
.container-1320 {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.container-1220 {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  
}
.container-1080 {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  
}

/* HEADER */
header {
  background: rgba(0,0,0,0.8);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.container-1080.header-content {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  max-height: 35px;
}
.logo-link {
  display: inline-block;   /* evita quebra */
  margin: 0;               /* tira qualquer espaço extra */
  padding: 0;              /* zera qualquer padding default de <a> */
  border: none;            /* sem borda */
  outline: none;           /* sem contorno ao focar */
  text-decoration: none;   /* sem sublinhado */
  background: transparent; /* fundo transparente */
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
}

/* NAVEGAÇÃO */
nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}


/* BLOCO COMPLETO COM BACKGROUND VERDE */
.map-block {
  position: relative;
  background: radial-gradient(ellipse at center, #1AA53F 0%, #028036 100%);
  overflow: hidden;
  z-index: 1;
  margin-top: -1px;
}

/* MAPA */
.map-overlay-wrapper {
  position: relative;
  height: 600px;
  z-index: 100;
}
.map-image-wrapper {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1280px;
  max-width: 100%;
  z-index: 999;
}
.map-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* TEXTOS EM COLUNAS */
.map-text-flex {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: flex-start;
  padding-bottom: 60px;
  color: #fff;
}
.map-text-flex .col-left {
  width: 40%;
}
.map-text-flex .col-left h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}
.map-text-flex .col-right {
  width: 60%;
}
.map-text-flex .col-right p {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}



/* BASE CINZA COM FORMULÁRIO */
.form-base {
  background: #DADADA;
  border-radius: 100px;
  padding: 24px 32px;
  max-width: 800px;
  margin: 0 auto 80px;
}

/* FORMULÁRIO */
.map-form {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.map-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 100px 0 0 100px;
  font-size: 1rem;
}
.map-form button {
  padding: 16px 32px;
  border: none;
  border-radius: 0 100px 100px 0;
  background: #028036;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.status-msg {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  margin-top: 20px;
  display: none;
  color: #028036;
  animation: fade 0.3s ease-in-out;
}
.status-msg.error {
  color: red;
}
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}



site-footer {
  background: #111;
  color: #fff;
  padding: 32px 16px;            /* espaçamento generoso */
  text-align: center;
}

.site-footer .footer-container {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.7;
  color: #fff;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .map-image-wrapper {
    display: none;
  }
  .map-overlay-wrapper {
    height: 0;
  }

  .map-text-flex {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .map-text-flex .col-left,
  .map-text-flex .col-right {
    width: 100%;
  }
  .map-text-flex .col-left h2 {
    font-size: 2.5rem;
  }

  .form-base {
    padding: 16px;
    border-radius: 24px;
  }
  .map-form {
    flex-direction: column;
    gap: 8px;
  }
  .map-form input,
  .map-form button {
    width: 100%;
    border-radius: 12px;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    z-index: 1001;
  }
  nav.active {
    display: flex;
  }
  nav ul {
    flex-direction: column;
  }
  nav ul li a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 480px) {
  .play-button {
    width: 18vw;
    max-width: 60px;
  }
}

@media (max-width: 1024px) {
  .map-image-wrapper {
    display: none;
  }
}






/* Mobile segundo o 02 */

@media (max-width: 768px) {
  /* 1. Ocultar mapa */
  .map-image-wrapper,
  .map-overlay-wrapper {
    display: none !important;
  }

  /* 2. Empilhar "Tudo em apenas um lugar" (texto + form) */
  .map-text-flex {
    flex-direction: column;
    text-align: center;
  }
  .map-text-flex .col-left,
  .map-text-flex .col-right {
    width: 100%;
  }
  .form-base {
    margin: 40px auto;
  }
  .map-form {
    flex-direction: column;
    gap: 16px;
  }
  .map-form input,
  .map-form button {
    width: 100%;
    border-radius: 12px;
  }

  /* 3. Empilhar passos e remover linha/bolinhas */
  .step-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
  }
  .step-wrapper::before {
    display: none;
  }
  .step {
    width: 100%;
    margin-bottom: 40px;
  }
  .circle-line {
    display: none;
  }

  /* 4. Carousel de marcas: swipe manual, sem animação contínua */
  .client-carousel-track {
    animation: none !important;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .client-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  /* 5. Case de sucesso: coluna, imagem acima, sem botão */
  .case-wrapper {
    flex-direction: column !important;
    text-align: center;
  }
  .case-image {
    order: 1;
    margin-bottom: 16px;
  }
  .case-text {
    order: 2;
  }
  .case-button {
    display: none !important;
  }

  /* 6. Formulário final: empilhado e sem divisor */
  .contact-container {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .contact-divider {
    display: none;
  }
  .contact-form input,
  .contact-form button {
    width: 100%;
  }

  /* 7. Rodapé simplificado: só logo + “hambúrguer” */
  .site-footer .footer-nav {
    display: none !important;
  }
  /* caso você adicione futuramente um ícone de menu no footer */
  .site-footer .menu-toggle {
    display: flex !important;
  }
}
