* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #000;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
}

.topbar .btn-entrar {
  background: #019663;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 50px 60px;
  position: relative;
}

.content {
  max-width: 50%;
}
.content h1 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.content h1 span {
  color: #000;
}
.content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.btn-teste {
  background: #019663;
  color: #fff;
  text-decoration: none;
  padding: 14px 25px;
  font-weight: bold;
  border-radius: 12px;
  display: inline-block;
}

.mockup {
  position: relative;
  max-width: 45%;
}
.mockup img {
  max-width: 100%;
}
.mockup .painel {
  width: 100%;
}
.mockup .celular {
  position: absolute;
  right: -30px;
  top: 60px;
  width: 150px;
}
.mockup .motoboy {
  position: absolute;
  bottom: -30px;
  left: 50px;
  width: 140px;
}
.mockup .emoji-star {
  position: absolute;
  bottom: -20px;
  left: -40px;
  width: 70px;
}
.mockup .emoji-wow {
  position: absolute;
  top: 10px;
  right: 30px;
  width: 60px;
}
.mockup .emoji-heart {
  position: absolute;
  bottom: -40px;
  right: 30px;
  width: 60px;
}

.whatsapp-bubble {
  position: absolute;
  bottom: 20px;
  right: 60px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.whatsapp-bubble img {
  width: 36px;
  border-radius: 50%;
}

.beneficios {
  width: 100vw; /* força a largura total da tela */
  margin-left: calc(-50vw + 50%); /* corrige o deslocamento por causa do container centralizado */
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}


.beneficios h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 6px;
}

.beneficios > p {
  font-size: 18px;
  color: #222;
  margin-bottom: 40px;
}

.beneficios-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.beneficio-card {
  background: #fff;
  width: 48%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 25px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06); /* sombra mais suave */
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.beneficio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.beneficio-card img {
  width: 42px;
  height: 42px;
  margin-top: 5px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(38%) sepia(81%) saturate(733%) hue-rotate(100deg) brightness(92%) contrast(91%);
}

.beneficio-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

.beneficio-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.4;
}
.faq {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.faq h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 6px;
}

.faq > p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #333;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 30px;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #111;
  text-align: left;
}

.faq-question .toggle {
  font-size: 28px;
  color: #019663;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
  padding: 20px 30px 30px;
  max-height: 400px;
}

.faq-answer p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}


.planos {
  padding: 80px 20px;
  background: #f8f9fb;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}



.planos h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 8px;
}

.planos > p {
  font-size: 18px;
  color: #444;
  margin-bottom: 50px;
}

.cards-planos {
  display: flex;
  justify-content: center;
  align-items: stretch; /* <- força mesma altura */
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}


.plano-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  padding: 40px 30px;
  width: 320px;
  position: relative;
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plano-card:hover {
  transform: translateY(-6px);
}

.plano-nome {
  color: #00B074;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.plano-preco {
  font-size: 16px;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.4;
}

.plano-preco span {
  color: #333;
  font-size: 14px;
}

.plano-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-weight: 600;
  border-radius: 100px;
  margin: 0 auto 25px;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s ease;
}

.plano-btn.dark {
  background: #131d2e;
}

.plano-btn.blue {
  background: #00B074;
}

.plano-btn:hover {
  filter: brightness(1.1);
}

.plano-card ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  color: #333;
}

.plano-card ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.plano-card ul li strong {
  font-weight: 700;
  display: block;
  margin-top: 12px;
}

/* Destaque do plano do meio */
.destaque {
  border: 2px solid #00B074;
  position: relative;
}

/* Badge centralizado */
.badge {
  background: #00B074;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.segmentos {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.segmentos h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 10px;
}

.segmentos h3 {
  font-size: 30px;
  font-weight: 800;
  margin: 70px 0 10px;
}

.segmentos p {
  font-size: 20px;
  color: #333;
  margin-bottom: 30px;
}

.segmentos-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

.segmentos-tags span {
  background: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-size: 17px;
  color: #222;
  transition: all 0.2s ease;
  cursor: default;
}

.segmentos-tags span:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.segmentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card-segmento {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-segmento:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.card-segmento img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-segmento h4 {
  font-size: 20px;
  font-weight: 800;
  margin: 20px 0 12px;
}

.card-segmento a {
  display: inline-block;
  margin-bottom: 25px;
  background: #00B074;
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: bold;
  font-size: 15px;
  transition: all 0.2s ease;
}

.card-segmento a:hover {
  background: #22c55e; /* verde moderno */
  transform: scale(1.05);
}

.btn-teste {
  background: #00B074;
  color: #fff;
  text-decoration: none;
  padding: 14px 25px;
  font-weight: bold;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.btn-teste:hover {
  background: #019663;
}

.icon-teste {
  width: 22px;
  height: 22px;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .content h1 {
    font-size: 2rem;
    line-height: 1.3;
    word-break: break-word;
  }

  .content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .btn-teste {
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 16px;
   margin-top: 30px;
  }

  .mockup {
    max-width: 100%;
    position: static;
    text-align: center;
  }

  .mockup img {
    max-width: 100%;
    height: auto;
    position: static;
  }

  .mockup .emoji-star,
  .mockup .emoji-wow,
  .mockup .emoji-heart,
  .mockup .motoboy,
  .mockup .celular {
    display: none; /* ou reorganize se quiser manter */
  }

  .beneficios h2 {
  font-size: 26px;
  text-align: center;
}

.beneficios > p {
  font-size: 16px;
  text-align: center;
}

.beneficios-grid {
  flex-direction: column;
  align-items: center;
}

.beneficio-card {
  width: 100%;
  max-width: 340px;
}

}
.footer {
  background: #e9f8f1; /* tom claro baseado no verde da marca */
  color: #1b5e4b; /* tom escuro para contraste */
  padding: 30px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border-top: 2px solid #1b5e4b10;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
}

.footer a {
  color: #1b5e4b;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}
