/* Estilização do bloco da imagem */
.custom-img-block {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.custom-video-thumbnail {
  width: 100%;
  border-radius: 10px;
  /* Mantendo bordas suaves */
}

/* Botão de Play sobre a imagem */
.custom-video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #007bff;
  /* Azul forte */
  color: white;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
  /* Efeito de brilho azul */
  border: none;
}

.custom-video-play-button:hover {
  background: #0056b3;
  /* Azul mais escuro no hover */
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.9);
}

/* Ícone de Play dentro do botão */
.custom-video-icon::before {
  content: "▶";
  /* Símbolo de Play */
  font-size: 36px;
  color: white;
  margin-left: 5px;
  /* Ajusta o ícone para parecer centralizado */
}

/* Estilização do modal */
.custom-video-lightbox {
  max-width: 800px;
  margin: 0 auto;
  background: transparent;
}

.custom-video-wrapper {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}

.custom-video-wrapper iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.secao-padrao {
  display: flex;
  flex-wrap: wrap;
  gap: 250px;
  padding: 70px;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}



/* Preçoes home */




.short-section {
  padding: 20px 20px !important;
  background: linear-gradient(135deg, #0066ff, #00ccff) !important;
  color: white;
  text-align: center !important;
}

.short-heading {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}

.short-subtext {
  font-weight: 800;
  font-size: 28px;
  color: #e8f0ff;
}

/* --- TOGGLE SWITCH CLEAN & RESPONSIVO --- */
.toggle-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  margin: 20px auto 50px auto;
  color: white;
}

.switch-wrap {
  position: relative;
  width: 50px;
  height: 28px;
  flex-shrink: 0;
}

.switch-wrap input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switcher {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 28px;
  cursor: pointer;
  transition: background 0.4s;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
}

.switcher::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.4s;
}

.switch-wrap input:checked+.switcher {
  background-color: #0049d1;

}

.switch-wrap input:checked+.switcher::before {
  transform: translateX(2px);
}

/* Cards */
.short-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.short-card {
  background: white;
  color: #111;
  padding: 15px;
  border-radius: 16px;
  border: 2px solid transparent;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  max-width: 230px;
  flex: 1 1 300px;
  animation: fadeInUp 0.7s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.short-card:hover {
  transform: translateY(-8px);
  border-color: #007bff;
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.2);
}

.short-card h5 {
  font-size: 22px;
  margin-bottom: 10px;
}

.short-price {
  min-height: 30px;
  font-weight: 600;
  margin: 10px 0;
  font-size: 25px;
  transition: opacity 0.3s ease;
  display: none;
}

.short-price.active {
  display: block;
}

.short-price-monthly,
.short-price-annual {
  display: block;
}

.short-price .old-price {
  text-decoration: line-through;
  color: #494949;
}

.short-discount {
  background: #b9ec36;
  color: #111;
  display: inline-block;
  font-size: 18px;
  margin-top: 8px;
  padding: 4px 12px;
  border-radius: 24px;
  font-weight: bold;
}


.short-features {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
  flex-grow: 1;
}

.short-features li {
  margin-bottom: 5px;
  padding-left: 10px;
  position: relative;
}

.short-features li::before {
  content: '\2713';
  /* ✓ */
  color: green;
  position: absolute;
  left: 0;
}


.short-btn {
  background: #00c7ff;
  color: white;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 25px;
  transition: background 0.3s, transform 0.2s;
}

.short-btn:hover {
  background: #0053be;
  color: #ffffff !important;
  transform: scale(1.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ Responsivo para telas menores */
@media screen and (max-width: 768px) {
  .short-section {
    padding: 60px 15px;
  }

  .short-heading {
    font-size: 32px;
  }

  .short-subtext {
    font-size: 16px;
  }

  .short-card {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .toggle-switch {
    flex-direction: row !important;
    font-size: 15px !important;
    margin: 20px auto 30px auto !important;
  }
}


/* perguntas frequentes(Preco) */

.faq-section {
  background: #eaf4ff;
  padding: 80px 20px;
  text-align: center;
}

.faq-title h2 {
  font-size: 36px;
  color: #003d99;
  margin-bottom: 10px;
}

.faq-title p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  background: #1bb7ff;
  color: white;
  padding: 16px 24px;
  width: 100%;
  text-align: left;
  font-size: 17px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #005ec2;
}

.faq-answer {
  display: none;
  padding: 20px 24px;
  background: #f6f9ff;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Comparativo de precos */

/* SEÇÃO DE COMPARAÇÃO DE PLANOS */
.pricing-section-modern {
  background: #f2f8ff;
  padding: 80px 5vw 60px;
  text-align: center;
}

.section-title-modern h2 {
  font-size: clamp(28px, 5vw, 36px);
  color: #0047ab;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-title-modern p {
  font-size: clamp(16px, 2.5vw, 18px);
  color: #555;
  margin-bottom: 40px;
}

.table-wrapper {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.compare-table thead {
  background: #007bff;
  color: white;
}

.compare-table th,
.compare-table td {
  padding: 16px 12px;
  text-align: center;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  background: #f5faff;
  font-weight: bold;
  color: #0047ab;
}

.compare-table td {
  font-size: 16px;
}

.compare-table td:has(span.check) {
  color: green;
}

.compare-table td:has(span.cancel) {
  color: #cc0000;
  font-weight: bold;
}

.tag {
  display: inline-block;
  background: #dfefff;
  color: #0047ab;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 5px;
}

.tag.best {
  background: #ffc107;
  color: #111;
}

/* MARCAS (CARROSSEL) */
.brand-section {
  background: linear-gradient(135deg, #0066ff, #00ccff);
  padding: 48px 5vw;
  text-align: center;
}

.brands-title h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px !important;
}

.brand-carousel {
  overflow: hidden;
  position: relative;
}

.brand-track {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  width: max-content;
  will-change: transform;
  animation: scrollBrands 50s linear infinite;
}

.brand-carousel:hover .brand-track {
  animation-play-state: paused;
}

/* cada logo ocupa um “slot” responsivo */
.brand-logo {
  flex: 0 0 clamp(120px, 14vw, 200px);
  display: grid;
  place-items: center;
}

/* imagens nítidas, sem esticar */
.brand-logo img, .brand-logo svg {
  width: 80%;
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 0 0 rgba(0,0,0,0)); /* evita blur em alguns browsers */
}
/* reduz só webhook e api */
.brand-logo img[src*="webhook"],
.brand-logo img[src*="api"] {
  width: 45%; /* menor que 80% */
}

@keyframes scrollBrands {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); }  /* -50% exige track duplicado */
}

/* acessibilidade: respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; }
}


@media (max-width: 768px) {

  .compare-table th,
  .compare-table td {
    padding: 12px 8px;
    font-size: 14px;
  }

  .brand-logo img {
    height: 30px;
  }
}

@media (max-width: 1024px) {
  .faq-title h2 {
    font-size: 30px;
  }

  .faq-title p {
    font-size: 16px;
  }

  .faq-question {
    font-size: 16px;
    padding: 14px 20px;
  }

  .faq-answer {
    font-size: 15px;
    padding: 16px 20px;
  }
}

@media (max-width: 768px) {
  .faq-title h2 {
    font-size: 26px;
  }

  .faq-title p {
    font-size: 15px;
  }

  .faq-container {
    padding: 0 10px;
  }

  .faq-question {
    font-size: 15px;
    padding: 12px 18px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 14px 18px;
  }
}




/* Modal preço */


.janela-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.3s ease;
}

.janela-modal.aberto {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

.caixa-modal {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.4s ease;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.cabecalho-modal h5 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.corpo-modal input {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  width: 100%;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}

.corpo-modal input::placeholder {
  color: #ccc;
}

.corpo-modal button[type="submit"] {
  background: linear-gradient(135deg, #1f87ff, #1f59ff);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.corpo-modal button[type="submit"]:hover {
  background: linear-gradient(135deg, #1557f3, #1935dd);
}

.btn-fechar {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #d3d2d2;
  font-size: 1.3rem;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
}

.btn-fechar:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}


.alert-success {
  background: rgba(0, 255, 127, 0.1);
  border: 1px solid rgba(0, 255, 127, 0.3);
  color: #00b7ff;
  padding: 10px;
  border-radius: 8px;
  margin-top: 15px;
}

.d-none {
  display: none;
}

.campo-validacao {
  position: relative;
}

.form-control.erro {
  border: 2px solid #ff5f5f;
  background-color: #7a7a7a;
}

.mensagem-erro {
  display: none;
  color: #ff4d4d;
  font-size: 0.85rem;
  margin-top: -10px;
  margin-bottom: 10px;
}


input.erro {
  border-color: #ff4d4d !important;
  background-color: #000000;
}
.termos-lgpd{
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  line-height: 1.45;
}

.termos-lgpd .form-check-input{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;             
  width: 18px;
  height: 18px;
  border: 2px solid #00a2ff;
  border-radius: 4px;
  background: transparent;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;                    
  outline: none;
}

.termos-lgpd .form-check-input:hover{
  border-color: #02d6f1;
}
.termos-lgpd .form-check-input:focus{
  box-shadow: 0 0 0 3px rgba(0,255,159,.25);
}

.termos-lgpd .form-check-input:checked::after{
  content: "✓";                 
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-54%);
  font-size: 14px;
  color: #00ff9f;
  font-weight: 800;
  line-height: 1;
}

.termos-lgpd .form-check-label a{
  color: #008cff;
  text-decoration: underline;
}

/* erro de validação via JS */
.termos-lgpd .form-check-input.is-invalid{
  border-color: #ff4d4d !important;
}
.termos-lgpd .form-check-input.is-invalid:checked::after{
  color: #ff4d4d !important;
}
.termos-lgpd .invalid-feedback{
  display: none;
  font-size: .85rem;
  margin-left: 2px;
}
.termos-lgpd .form-check-input.is-invalid ~ .invalid-feedback{
  display: block;
}

/* Toggle PF/PJ */
.toggle-pessoa{
  display:flex; gap:8px; background:rgba(255,255,255,0.12);
  padding:6px; border-radius:10px; width:100%;
}
.toggle-pessoa input[type="radio"]{ display:none; }
.toggle-pessoa label{
  flex:1; text-align:center; padding:10px 12px; border-radius:8px;
  cursor:pointer; user-select:none; font-weight:600; color:#dfe9ff;
  border:1px solid transparent; transition:all .2s ease;
  background:rgba(255,255,255,0.08);
}
.toggle-pessoa input[type="radio"]:checked + label{
  background:linear-gradient(135deg,#1f87ff,#1f59ff);
  color:#fff; border-color:rgba(255,255,255,0.25);
  box-shadow:0 6px 18px rgba(31,135,255,.25) inset;
}

/* util */
.d-none{ display:none !important; }


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}





.func-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f6f9ff, #eaf3ff);
}

.func-section h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #2b2b2b;
}

.func-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.func-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 0 0 rgba(0, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.func-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.func-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.func-card h5 {
  font-size: 1.2rem;
  margin-top: 20px;
  color: #2b2b2b;
}

.func-card p {
  font-size: 0.95rem;
  color: #555;
}

/* cards iniciais da home  */
.feature-card {
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.2);
}

.feature-card img {
  max-height: 60px;
}

/* cards de mensagens */
#sms-features {
  background-color: #ffffff;
}

.feature-box {
  background: #f7f7f7;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}





.formulario-tipo-wrapper {
  position: relative;
  min-height: 420px;
  /* força altura mínima para os dois */
}

.formulario-tipo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.formulario-tipo.visivel {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
}

/* Alternador visual claro */
.alternador-pessoa {
  display: inline-flex;
  gap: 10px;
  background: #e7f1ff;
  padding: 6px;
  border-radius: 12px;
  justify-content: center;
  border: 1px solid #007bff33;
}

.opcao-pessoa {
  background: transparent;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: #3eb1ff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.opcao-pessoa.ativa {
  background-color: #3eb1ff;
  color: white;
  box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
}

.fechar-registro {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 30px;
  text-decoration: none;
  color: white !important;
  opacity: 0.7;
  font-weight: bold;
  z-index: 10;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fechar-registro:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Fundo com gradiente azul moderno */
.blue-gradient-bg {
  background: linear-gradient(90deg, #0d47a1, #1976d2, #42a5f5);
  color: #fff;
}

/* Logos finos e elegantes */
.brand-logo {
  padding: 10px 15px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Título branco */
.text-white {
  color: #ffffff !important;
}

/* Owl ajustes */
.owl-carousel .owl-item img {
  width: 100%;
  display: block;
  max-height: 50px;
  /* altura controlada, mais fino */
  object-fit: contain;
}




/* ========================
   12. Depoimentos cards index
   ======================== */
#reviews-1 {
  background: linear-gradient(135deg, #0066ff, #00ccff);
  color: #fff;
  padding: 65px 20px;
}

.card-depoimento {
  display: flex;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 25px;
  gap: 20px;
  align-items: center;
}

.coluna-esquerda {
  flex: 0 0 200px;
  text-align: center;
}

.logo-empresa img {
  max-width: 100%;
  max-height: 45px;
  object-fit: contain;
}

.divisor-logo {
  width: 80%;
  height: 2px;
  background: #00000052;
  margin: 8px auto 15px auto;
  border-radius: 2px;
}

.info-pessoa {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}

.foto-pessoa {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}

.texto-pessoa strong {
  font-size: 17px;
  font-weight: bold;
  color: #000;
}

.texto-pessoa small {
  font-size: 13px;
  color: #666;
}

.avaliacao {
  font-size: 22px;
  background: linear-gradient(45deg, gold, #f7d100);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 2px rgba(255, 215, 0, 0.5);
  letter-spacing: 3px;
}

.coluna-direita {
  flex: 1;
  position: relative;
}

.icone-aspas {
  position: absolute;
  top: -16px;
  left: -36px;
  font-size: 80px;
  color: rgb(30 186 233 / 25%);
  font-family: serif;
  pointer-events: none;
}

.texto-depoimento {
  font-style: italic;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  white-space: normal;
  overflow-wrap: anywhere;   /* força quebra em qualquer ponto */
  word-break: break-word;    /* compatibilidade */
  max-width: 100%;
  box-sizing: border-box;
}


/* Configurações do Swiper */
.testimonial-swiper .swiper-slide {
  border-radius: 15px;
  overflow: hidden;
}

.swiper {
  padding-bottom: 50px;
  overflow: visible !important;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullet {
  display: none !important;
}

.testimonial-swiper .swiper-slide {
  width: 400px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.testimonial-swiper .swiper-slide-active {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.164);
}


.botao-deixar-depoimento {
  display: inline-block;
  padding: 12px 28px;
  background-color: #00c7ff;
  color: #ffffff;
  font-size: 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.363);
}

.botao-deixar-depoimento:hover {
  color: #ffffff !important;
  background-color: #0035be;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.712);
}


/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .card-depoimento {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .coluna-esquerda {
    flex: none;
    width: 100%;
  }

  .coluna-direita {
    width: 100%;
    margin-top: 15px;
  }

  .icone-aspas {
    top: -10px;
    left: 10px;
    font-size: 60px;
  }

  .texto-depoimento {
    font-size: 15px;
  }

  .foto-pessoa {
    width: 60px;
    height: 60px;
  }

  .texto-pessoa strong {
    font-size: 16px;
  }

  .texto-pessoa small {
    font-size: 12px;
  }

  .avaliacao {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .testimonial-swiper .swiper-slide {
    width: 90vw !important;
  }

  .botao-deixar-depoimento {
    font-size: 15px;
    padding: 10px 24px;
    margin-top: 20px;
  }
}



/* Perguntas frequentes Na home */



.perguntas-moderno .pergunta-box {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.pergunta-toggle {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1a1a1a;
  cursor: pointer;
  padding: 5px 10px;
  text-align: left;
  flex-wrap: nowrap;
}

.pergunta-toggle .pergunta-titulo {
  text-align: left;
  flex: 1;
}

.pergunta-toggle .pergunta-icone {
  font-size: 1.2rem;
  margin-left: 10px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.pergunta-toggle:hover {
  color: #33b4ff;
}

.pergunta-conteudo {
  display: none;
  padding: 10px 10px 20px 10px;
  font-size: 1rem;
  color: #4f4f4f;
}

.pergunta-conteudo ul {
  padding-left: 20px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .pergunta-toggle {
    flex-direction: row;
    font-size: 1rem;
    padding: 12px 8px;
  }

  .pergunta-conteudo {
    font-size: 0.95rem;
  }

  .pergunta-toggle .pergunta-icone {
    font-size: 1rem;
  }
}



/* Efeitos particles no css  */

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

#particles-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: auto;

}

#particles-section {
  /* esta div é só para segurar o canvas */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  z-index: 0;
  /* Importante: abaixo do conteúdo */
  overflow: hidden;
  pointer-events: none;
  /* ← aqui deve ser NONE para liberar os eventos ao conteúdo sobreposto */
}

#particles-section canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* também NONE */
  border-radius: 24px;
}

#particles-cadastro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

#particles-revenda {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0; /* Fica atrás do conteúdo */
}




/* Pagina de cadastro */



#mensagem-sucesso {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease;
}

.popup-content {
  background: white;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  max-width: 90%;
  animation: scaleIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.mensagem-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.erro-popup .popup-content {
  border: 2px solid #ff4d4f;
  color: #ff4d4f;
}

#three-section {
  position: static;


}

#three-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  pointer-events: none;
}

.fundo-three {
  position: absolute;
  background: linear-gradient(-70deg, #001aff, #00a2ff, #0026ff) no-repeat;

}

.three-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;

}

.three-heading {
  text-align: center;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.three-subtitle {
  font-size: 18px;
  text-align: center;
  color: #e0f7fa;
  margin-bottom: 30px;
}

.three-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.three-item {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.089);
  border-left: 4px solid #ffffff66;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.three-item:hover {
  transform: translateY(-4px);
  border-left: 4px solid #ffffff;
  background: rgba(121, 121, 121, 0.24);
}

.three-item h3 {
  margin-top: 0;
  font-size: 24px;
  color: #ffffff;
}

.three-item p {
  color: #dfefff;
  font-size: 16px;
  line-height: 1.6;
}

.three-item .three-label {
  font-size: 13px;
  color: #aefcff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.three-button {
  display: block;
  width: fit-content;
  margin: 80px auto 0;
  padding: 14px 30px;
  background: #ffffff;
  color: #000000;
  font-weight: bold;
  background: linear-gradient(to right, #00ffe1, #0051ff);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  transition: 0.3s ease;

}

.three-button:hover {
  background: linear-gradient(to right, #00ffe1, #0051ff) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4) !important;
}

.three-typing {
  display: inline-block;
  width: 12ch;
  /* suficiente para a maior palavra */
  min-height: 1em;
  /* fixa a altura mínima */
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  font-weight: bold;
  font-size: 36px;
  line-height: 1.9;
  /* ajuda a manter altura estável */
  color: white;

  animation: blinkCursor 0.8s infinite;
}

.three-typing-rest {
  position: relative;
  font-weight: bold;
  top: -5px;
  font-size: 36px;
  color: white;
  display: inline;
}

@keyframes blinkCursor {

  0%,
  100% {
    border-color: transparent;
  }

  50% {
    border-color: white;
  }
}


.three-button:hover {
  background: #f1f1f1;
  color: #0984e3;
}

@media (max-width: 600px) {
  .three-heading {
    font-size: 28px;
    line-height: 1.3;
  }

  .three-typing,
  .three-typing-rest {
    font-size: 28px;
  }
}



/* Politica de privacidade pagina */

#cookie-consent {
  position: fixed;
  bottom: 90px;
  left: 75px;
  max-width: 300px;
  background: #f6fbff;
  border-radius: 12px 12px 12px 0px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.226);
  padding: 20px;
  z-index: 9999;
  font-family: 'Arial', sans-serif;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#cookie-consent h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: bold;
  color: #023f6b;
}

#cookie-consent p {
  font-size: 14px;
  color: #252525;
  margin-bottom: 12px;
}

#cookie-consent a {
  color: #1976d2;
  text-decoration: underline;
  font-size: 13px;
}

#cookie-buttons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  justify-content: flex-end;
}

#cookie-buttons button {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  border: none;
}

.accept-btn {
  background-color: #199ed2;
  color: #fff;
}

.reject-btn {
  background-color: #e0e0e0;
  color: #333;
}

#cookie-toggle {
  position: fixed;
  bottom: 40px;
  left: 25px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff1f;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
}

#cookie-toggle.open {
  opacity: 0.6;
}

#cookie-toggle.closed {
  opacity: 1;
}

#cookie-toggle img {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  #cookie-toggle {
    bottom: 20px;
    /* aumenta a distância do rodapé no mobile */
    left: 10px;
  }

  #cookie-consent {
    left: 50px;
    bottom: 75px;
    max-width: 80%;
    padding: 10px;
  }
}