/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* HEADER */
header {
  position: absolute;       /* 🔥 flutua sobre o hero */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 20px 40px;
  font-family: Arial, Helvetica, sans-serif;
  background: transparent;  /* remove faixa branca */
}

.nega{
  color: red;
}
/* LOGO À ESQUERDA */
.logo {
  padding-top: 150px;
  position: absolute;
  left: 20px;
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

/* MENU CENTRALIZADO */
.btn {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 65px;
  font-size: 20px;
  font-weight: bold;
}

/* LINKS DO MENU */
.btn a {
  display: inline-block;
  padding: 10px 18px;
  text-decoration: none;
  color: #ffffff;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

/* HOVER LINKS */
.btn a:hover {
  background-color: #0056ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* BOTÃO COM IMAGEM */
.btn-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;                 
  background: #ff000000;        
  border-radius: 8px;
  color: white;
}

/* IMAGEM DO BOTÃO */
.btn-img img {
  width: 22px;
  height: auto;
  display: block;
  -webkit-user-drag: none;
}

/* HOVER DO BOTÃO IMAGEM */
.btn-img:hover {
    color: wheat;
}

.btn-img:hover img {
  transform: scale(1.1);
  filter: brightness(0) invert(1);
}

.hero {
  padding-top: 150px;
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  background-image: url(assets/back1.jpg);
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 139, 34, 0.744);
  
}

/* CONTEÚDO */
.hero-content {
  position: relative;
  max-width: 600px;
  margin-left: 10%;
  color: #fff;
  z-index: 1;
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* BOTÃO */
.hero-btn {
  display: inline-block;
  background: #0056ff;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #0056ff;
  transform: translateY(-2px);
}

.info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: cover;
  height: cover;
  martin-top: -100pt;
  position: relative;
  z-index: 2;
  background: linear-gradient(
    90deg,
    #0f6b3f,
    #0a7a3e,
    #06a04b,
    #00c05a
  );
}

/* cada item */
.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: #ffffff;              /* 🔥 TEXTO BRANCO */
  font-weight: bold;
  font-size: 25px;
}

/* ícones */
.info-item img {
  width: 100px;
  height: auto;
  display: block;
background-color: #ffffff00;
}

.sobre {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: #fff;
}

.sobre-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden; /* IMPORTANTE */
}

/* LADO ESQUERDO */
.sobre-esquerda {
  background: linear-gradient(
  rgba(34, 139, 34, 0.744),
  rgba(34, 139, 34, 0.778)
    ),
    url("assets/back1.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 40px;
}

.sobre-esquerda h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.sobre-esquerda h4 {
  margin-bottom: 20px;
  font-weight: 400;
}

.sobre-esquerda p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* LADO DIREITO */
.sobre-direita {
  background: #fff;
  padding: 40px;
}

.sobre-direita h3 {
  background: #0056ff;
  color: #ffffff;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.sobre-direita ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.sobre-direita li {
  margin-bottom: 12px;
  font-weight: 500;
}

.btn-amarelo {
  display: block;
  width: fit-content;
  background: #0056ff;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
}

.lista-servicos {
  list-style: none;
  padding: 0;
  font-size: 25px;
}

.lista-servicos li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-weight: 500;
  border-color: #0056ff;
}

.lista-servicos li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #0056ff; /* verde */
  background: #0056ff;
}

.porque {
  padding: 80px 20px;
  background: #ffffff;
}

.porque-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  font-size: 20px;
}

/* TEXTO */
.porque-texto h2 {
  background: #0056ff;
  color: #ffffff;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 28px;
  margin-bottom: 20px;
}

.porque-texto p {
  font-size: 25px;
  color: #000000;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 20px;
}

.porque-texto ul {
  list-style: none;
  margin-bottom: 30px;
  font-size: 35px;
}

.porque-texto li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 500;
  color: #444;
  font-size: 30px;
}

.porque-texto li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0056ff;
}

/* BOTÃO */
.btn-vantagens {
  display: inline-block;
  background: #0056ff;
  color: white;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  font-size: 20px;
}

.btn-vantagens:hover {
  transform: translateY(-2px);
}

/* IMAGEM COM FORMATO ORGÂNICO */
.porque-imagem {
  position: relative;
  width: 100%;
  height: 420px;
}

.porque-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* 🔥 formato orgânico */
  border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
}

.vantagens-section {
  padding: 80px 20px;
  background: #ffffff;
}

.vantagens-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* CARD ESQUERDO */
.vantagens-card {
  position: relative;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background-image: url("assets/back3.jpg");
  background-size: cover;
  background-position: center;
}

/* OVERLAY VERDE */
.vantagens-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 139, 34, 0.744);
}

/* CONTEÚDO DO CARD */
.vantagens-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 50px 40px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vantagens-card-content h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}

.vantagens-card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.vantagens-card-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 90%;
}

/* BOTÃO AMARELO */
.btn-missao {
  display: inline-block;
  background: #0056ff;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  width: fit-content;
  font-size: 20px;
}

/* LISTA DIREITA */
.vantagens-lista h3 {
  background: #0056ff;
  color: #ffffff;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-size: 25px;
}

.vantagens-lista ul {
  list-style: none;
}

.vantagens-lista li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 25px;
  font-weight: 500;
  color: #444;
}

.vantagens-lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0056ff;
}

.mv-section {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

.mv-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mv-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0056ff;
  margin-bottom: 10px;
}

.mv-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0056ff;
  margin-bottom: 20px;
}

.mv-texto {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 20px;
  line-height: 1.6;
  color: #555;
}

/* CARDS */
.mv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.mv-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.mv-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* TEXTO CARD */
.mv-sub {
  font-size: 19px;
  color: #777;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.mv-card h3 {
  font-size: 40px;
  color: #0f6b3f;
  margin: 5px 0 10px;
}

.mv-card p {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 19px;
  color: #555;
  line-height: 1.6;
}

/* ÍCONE COM ANIMAÇÃO */
.mv-icon {
  font-size: 32px;
  color: #0f6b3f;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.mv-card:hover .mv-icon {
  transform: scale(1.3) rotate(5deg);
}

/* BOTÃO */
.mv-btn {
  display: inline-block;
  background: #0056ff;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.mv-btn:hover {
  transform: translateY(-2px);
}

.footer {
  background: #0f6b3f;
  color: #ffffff;
  padding: 60px 20px 0;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h3 {
  color: #0056ff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p {
  line-height: 1.6;
  color: #e6e6e6;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
  color: #e6e6e6;
}

.footer-col a {
  color: #e6e6e6;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #0056ff;
}

/* 🔥 PROPAGANDA PULSEWEB */
.footer-pulseweb {
  background: #0c5a34;
  padding: 25px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-pulseweb p {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-pulseweb span {
  display: block;
  font-size: 13px;
  color: #d6d6d6;
}

.footer-pulseweb strong {
  color: #0056ff;
}

.footer-pulseweb a {
  display: inline-block;
  background: #0056ff;
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.footer-pulseweb a:hover {
  transform: translateY(-2px);
}

.adicionais{
  text-align: center;
}

.btn5 {
  text-align: center;
}
/* =========================================
   AJUSTE FINAL DEFINITIVO – MOBILE
   NÃO ALTERA TEXTO
   NÃO ALTERA DESKTOP
========================================= */
@media (max-width: 768px) {

  /* trava scroll lateral */
  html, body {
    overflow-x: hidden !important;
  }

  /* HEADER / LOGO */
  header {
  background: transparent !important;
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 !important;     /* 🔥 zera altura */
  margin: 0 !important;
  display: flex;
  justify-content: center;
  z-index: 5;
}


  .logo {
    position: relative !important;
    padding-top: 0 !important;
    left: 0 !important;
    text-align: center;
  }

  .logo img {
    width: 160px !important;
    max-width: 100%;
    height: auto;
  }

  /* HERO */
  .hero {
    height: auto !important;
    padding-top: 110px !important;   /* antes era 150px */
    padding-bottom: 50px !important;
  }

  .hero-content {
    margin-left: 0 !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .hero-subtitle {
    display: block;
    margin-bottom: 10px;
  }

  .hero-content h1 {
    font-size: 24px !important;
    line-height: 1.35 !important;
    word-break: break-word;
  }

  .hero-content p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .hero-btn {
    width: 100% !important;
    text-align: center;
    font-size: 16px;
  }

  /* INFO BAR */
  .info-bar {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-top: -20px !important;
    padding: 24px 16px !important;
  }

  .info-item {
    font-size: 16px !important;
  }

  .info-item img {
    width: 56px !important;
  }

  /* GRIDS EM 1 COLUNA */
  .sobre-container,
  .porque-container,
  .vantagens-container,
  .mv-cards,
  .footer-container {
    grid-template-columns: 1fr !important;
  }

  /* imagens seguras */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

