* { 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 }

 html, body {
  overflow-x: hidden;
}

body { 
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #000000; 
}

.hero { 
  display: flex; 
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #000000, #363636);
  color: #fff;
  padding: 80px 20px; 
}

.hero-text { 
  flex: 1;
  min-width: 300px;
  padding: 20px;
  margin-right: 40px; 
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 20px;
  color: #bbb;
}


.form-title {
  color: #333;
  margin-bottom: 25px; /* Aumentei um pouco a margem para dar mais respiro */
  text-align: left;
  font-size: 35px;   /* Aumenta o tamanho da fonte (ajuste se preferir) */
  font-weight: 700;    /* Deixa a fonte em negrito (bold) */
}


.hero-form { 
  flex: 1.2;
  min-width: 300px;
  background: #fff;
  padding: 40px;
  border-radius: 12px; 
}

/*Ver se vai fazer falta e se nao apagar*/
/*.hero-form input, .hero-form textarea {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.hero-form button {
  width: 100%;
  padding: 16px;
  background: #e50914;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}*/

.hero-form input, .hero-form textarea, .footer-form input, .footer-form textarea {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
 }

 .hero-form button {
  width: 100%;
  padding: 16px;
  background: #e50914;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.btn { 
  background: #09be43;
  color: #fff;
  padding: 20px 60px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
 }

 .btn:hover { 
  transform: scale(1.05);
 }

section { 
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  color: #f7f7f7;
  font-size: 25px; 
}

.centered { 
  text-align: center; 
  margin-bottom: 40px; 
}

.benefits { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 20px; 
}

.benefit-card { 
  background: white; 
  padding: 30px 25px; 
  border-radius: 12px; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); 
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center; 
}

.benefit-card:hover { 
  transform: translateY(-5px);
 }

.benefit-card,
.testimonial p,
.testimonial h4,
.testimonial span,
.site-example {
  color: #000 !important;
  text-align: center;
  font-size: 20px;
}

.testimonials, .portfolio { 
  text-align: center; 
}

.testimonial, .site-example { 
  background: white; 
  padding: 20px; 
  border-radius: 12px; 
  margin: 20px auto; 
  max-width: 500px; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); 
}

.client-logos { 
  padding: 40px 0; 
  overflow: hidden; 
  background: #fff; 
}

.client-logos {
  max-width: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.logo-slider {
  width: 100%;
  position: relative;
  display: flex; 
  gap: 40px; 
  animation: scroll 20s linear infinite; 
}

.logo-track {
  display: flex;
  width: fit-content;
  animation: scroll 30s linear infinite;
}

.logo-track img {
  height: 50px;
  margin: 0 30px;
  object-fit: contain;
}

.logo-slider img {
  height: 50px; 
  width: auto; 
  object-fit: contain; 
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cta-final {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
  background: #ff0000;
  color: #fff;
  padding: 60px 20px;
}

.cta-final a.btn-cta-final {
  background: #09be43 !important;
  color: #fff !important;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-block;
  transition: transform 0.3s ease;
  box-shadow: none;
  gap: 0;
}

.cta-final a.btn-cta-final:hover {
  transform: scale(1.05);
  background: #07a33a !important;
}

.site-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  box-sizing: border-box;
}

.site-example {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.site-example:hover {
  transform: translateY(-5px);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.testimonial {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s;
}

.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 20px;
}

.testimonial h4 {
  margin: 10px 0 5px;
  font-size: 1rem;
  font-weight: 600;
}

.testimonial span {
  font-size: 0.875rem;
  color: #777;
} 

.cta-final a {
  background: #fff;
  color: #0077ff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-final a:hover {
  background: #005fcc;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.cta-final a.btn-cta-final::before {
  content: url('https://cdnjs.cloudflare.com/ajax/libs/simple-icons/3.2.0/whatsapp.svg');
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
  filter: brightness(0) invert(1); /* Deixa o ícone branco */
}


.footer-form { 
  background: #f7f7f7;
  padding: 40px 20px;
  width: 100%; 
}

.footer-form {
  width: 100vw;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%);
}


footer { 
  background: #222;
  color: #fff;
  padding: 40px 20px;
  text-align: center; 
}

footer a {
  color: yellow;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .hero-text,
  .hero-form {
    width: 100%;
    padding: 10px;
  }
  .logo-slider {
    animation-duration: 40s;
    gap: 30px;
  }
  .site-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .site-example {
    max-width: 100%;
  }
  section.portfolio {
    max-width: 100% !important;
    padding: 0;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-form-wrapper {
    flex-direction: column;
  }
}

.footer-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-direction: row-reverse; /* <-- Isso aqui garante lado a lado */
}

.form-left {
  flex: 1 1 55%;
}

.bonus-right {
  flex: 1 1 40%;
  background-color: #fff;
  padding: 40px; /* Aumentado de 20px para 40px */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  color: #000;
}

.bonus-right h3 {
  font-size: 26px; /* Aumentado de 24px */
  margin-bottom: 20px;
}

.bonus-right li {
  margin-bottom: 12px;
  font-size: 19px; /* Aumentado de 18px */
  position: relative;
  padding-left: 25px; /* Mais espaço para o ícone */
}

.bonus-right ul {
  list-style: none;
  padding-left: 0;
}

.bonus-right li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #09be43;
  font-weight: bold;
}


@media (max-width: 768px) {
  .footer-form-wrapper {
    flex-direction: column;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.modal-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.modal-controls span {
  cursor: pointer;
  color: white;
  font-size: 40px;
  font-weight: bold;
  user-select: none;
  padding: 20px;
  transition: 0.3s;
}

.modal-controls span:hover {
  color: #09be43;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #e50914;
}

.red-button {
  width: 100%;
  padding: 16px;
  background: #e50914;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.red-button:hover {
  background: #c40811;
}


.urgencia-bloco {
  max-width: 1100px; /* ou outro valor que você prefira */
  width: 100%;
  background: #fff3cd;
  border-left: 6px solid #ff0000;
  padding: 25px 30px;
  border-radius: 10px;
  color: #000;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.urgencia-bloco h3 {
  color: #c10000;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.urgencia-bloco h3::before {
  content: "🚨";
  margin-right: 10px;
}

.urgencia-bloco ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.urgencia-bloco li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.urgencia-bloco li::before {
  content: "✅";
  position: absolute;
  left: 0;
}

.urgencia-bloco a {
  background: #e50914;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
  font-size: 16px;
}

.urgencia-bloco a:hover {
  background: #c40811;
}

.urgencia-bloco a.btn-cta-final {
  background: #e50914;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition: background 0.3s ease;
}

.urgencia-bloco a.btn-cta-final:hover {
  background: #c40811;
}

@media (max-width: 600px) {
  .urgencia-bloco {
    padding: 20px;
    font-size: 16px;
  }

  .urgencia-bloco h3 {
    font-size: 20px;
  }

  .urgencia-bloco a {
    width: 100%;
    text-align: center;
  }
}

.urgencia-faixa {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  width: 100%; 
  background-color: #fff3cd;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
/*max-width: 100vw !important;*/

.urgencia-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1100px;
  gap: 40px;
}

.countdown-alert {
  background: #fff8e1;
  border-left: 5px solid #ffc107;
  color: #d17b00;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.countdown-alert::before {
  content: "⚠️";
  margin-right: 8px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.faixa-selo {
  max-width: none;
  width: 100%;
  margin: 0;
  background-color: #000000;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* selo de garantia*/
.destaque-centralizado {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  width: 100%;
  background: transparent;
  box-shadow: none;
  margin: 0;
}

.selo-img {
  width: 100px;
  height: auto;
}

.avaliacoes {
  text-align: left;
  color: #333;
}

.estrelas {
  font-size: 28px;
  color: #ffc107;
  margin-bottom: 8px;
}

.nota {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #f7f7f7;
}

.avaliacoes-count {
  font-size: 20px;
  color: #f2fa10;
}

/* Para esconder elementos apenas visualmente, mantendo-os para leitores de tela */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Responsivo */
@media (max-width: 600px) {
  .destaque-centralizado {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .avaliacoes {
    text-align: center;
  }
}


@media (max-width: 768px) {
  .urgencia-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .urgencia-bloco {
    width: 100%;
  }
}

/* Muda o cursor para uma lupa em telas de PC sobre as imagens da galeria */
@media (min-width: 769px) {
  .portfolio .site-example a {
    cursor: zoom-in;
  }
}

/*botão CTA meio de página */

.cta-intermediario {
  text-align: center;
  padding: 10px 20px 10px 20px;
}

.btn-pulsante {
  transform: scale(1);
  box-shadow: 0 0 0 0 rgba(9, 190, 67, 0.7);
  animation: pulsa 2s infinite;
}

@keyframes pulsa {
  0% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(9, 190, 67, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(9, 190, 67, 0);
  }
  100% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(9, 190, 67, 0);
  }
}