:root {
  --primary: #0f766e;
  --primary-dark: #0b4e49;
  --accent: #22c55e;
  --bg: #f4f4f5;
  --bg-alt: #ffffff;
  --text: #111827;
  --muted: #000000;
  --border: #e5e7eb;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.12);
  --max-width: 1120px;
}

/* Reset simples */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:"Inter", system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe 0, #f9fafb 45%, #f4f4f5 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
/* vídeo em tela cheia no fundo */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;         /* cobre toda a tela */
  z-index: -1;               /* fica atrás do conteúdo */
}

/* overlay opcional para melhorar leitura */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.65)
  );
  z-index: -1;               /* também atrás do conteúdo */
}

/* garante que o conteúdo fique sobre o vídeo */
.site-content {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.50) 0%,
    rgba(255, 255, 255, 0.95) 60%,
    rgba(255, 255, 255, 1) 100%
  );
  padding: 5%;
  border-radius: 15px;
}


/* Hero */

.hero {
  padding: 2.5rem 0 3.5rem;
   
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
 
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-cta {
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.96rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-color: #16a34a;
  color: #f9fafb;
  box-shadow: 0 14px 35px rgba(22, 163, 74, 0.35);
  
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: rgba(15, 23, 42, 0.1);
  color: var(--text);
}

.btn-outline:hover {
  border-color: rgba(15, 23, 42, 0.25);
  background: rgba(15, 23, 42, 0.02);
}

.hero-note {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-proof {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.hero-media {
  position: relative;
}

.hero-photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #020617;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo2 {
  border-radius: 28px;
    box-shadow: var(--shadow-soft);  
  
}

.hero-photo2 img {
  justify-content: center;
  display: flex;  
  height: 50%;
  
 
}



.hero-tag {
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.96);
  color: #f9fafb;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
}

.hero-tag span {
  color: #e5e7eb;
  font-size: 0.78rem;
}

/* Seções genéricas */

.section {
  padding: 3.5rem 0;
}



.section h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.6rem;
}

.section > .container > p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--muted);
  max-width: 640px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  background-color: yellow;
}

.section-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* Checklist */

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.96rem;
  color: var(--text);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 0.8rem;
  color: var(--accent);
}

/* Cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  background: #e4e006;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.section-cta {
  margin-top: 1.75rem;
  text-align: center;

}

/* Destaque CNH 2026 */

.highlight {
  background: radial-gradient(circle at top left, #dcfce7 0, #f9fafb 40%, #ecfeff 100%);
}

.highlight .section-content p {
  color: var(--text);
}

.tag-box {
  background: rgba(15, 23, 42, 0.97);
  color: #f9fafb;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.step {
  background: #03ff18d3;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.step-number {
  display: inline-flex;
  align-items: center;  
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Reviews */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* DESKTOP: mantém como está */
  gap: 1.25rem;
}

/* card de print */
.review-print {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.review-print img {
  width: 100%;
  height: auto;      /* mostra a imagem inteira */
  display: block;
  border-radius: 12px;
}

/* MOBILE: 1 por linha */
@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;  /* só uma coluna */
    grid-template-columns: repeat(1, minmax(0, 1fr)); /* mobile */
    
  }
}


/* Mídia */

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.media-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  background: #000;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* FAQ */

.faq-item + .faq-item {
  margin-top: 0.6rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-weight: 700;
  color: var(--muted);
}

.faq-item.open .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  background: #f9fafb;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border: 1px solid var(--border);
  border-top: none;
}

.faq-answer p {
  margin: 0;
  padding: 0.75rem 1rem 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* CTA final */

.final-cta {
  background: radial-gradient(circle at top, #dcfce7 0, #f9fafb 45%, #e0f2fe 100%);
}

/* fundo suave do bloco final */
.final-cta {
  background: radial-gradient(circle at top, #dcfce7 0, #f9fafb 45%, #e0f2fe 100%);
}

/* card central */
.cta-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}

/* imagem centralizada / bem enquadrada */
.cta-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-media img {
  max-width: 260px;
  width: 100%;
  border-radius: 999px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
}

/* texto do CTA */
.cta-content h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.7rem;
}

.cta-content p {
  margin: 0 0 0.9rem;
  color: #4b5563;
}

/* bullets de reforço */
.cta-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}

.cta-bullets li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.94rem;
  color: #374151;
  margin-bottom: 0.35rem;
}

.cta-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 0.8rem;
  color: #16a34a;
}

/* botão em destaque */
.cta-btn {
  display: inline-flex;
  min-width: 240px;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

/* micro prova social perto do CTA, aumenta confiança */
.cta-trust {
  margin: 0;
  font-size: 0.88rem;
  color: #065f46;
  font-weight: 600;
}

/* bloco dos dois dentro do CTA */
.cta-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.2rem;
}

.cta-person h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  background-color: #e4e006;
}

.cta-person p {
  margin: 0;
  font-size: 0.88rem;
  color: #4b5563;
  
}

/* responsivo */
@media (max-width: 920px) {
  .cta-card {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .cta-media img {
    max-width: 220px;
    margin: 0 auto;
  }
   .cta-people {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .cta-bullets {
    text-align: left;
    max-width: 360px;
    margin: 0.5rem auto 1.2rem;
  }

  .cta-btn {
    width: 100%;
  }
}


/* Botão flutuante WhatsApp */

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #22c55e;
  color: #f9fafb;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.45);
}

.whatsapp-float::before {
  content: "💬";
}

/* Responsivo */

@media (max-width: 960px) {
  .hero-content,
  .split {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

  .hero-tag {
    bottom: -1rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 1.75rem;
  }

  .hero-tag {
    position: static;
    transform: none;
    margin-top: 0.8rem;
  }

  .cards-grid,
  .steps,
  .reviews-grid,
  .media-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    border-radius: 999px;
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
  }
}

.background-topo{
  /* gradiente branco translúcido por cima da foto */
  background-image:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.50) 0%,
      rgba(255, 255, 255, 0.95) 60%,
      rgba(255, 255, 255, 1) 100%
    ),
    url('midia/img/IMG-20251215-WA0071.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.video-local {
  width: 100%;
  display: block;
}
.review-p   rint {
  padding: 10px;                  /* remove padding interno do card de texto */
}




/* prints horizontais */
.review-print {
  padding: 0;
}


/* ====== GALERIA DE VÍDEOS (SECTION #midia) ====== */

/* grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

/* card */
.video-thumb {
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
}

/* área do vídeo */
.thumb-media {
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.thumb-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #f9fafb;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.05)
  );
  pointer-events: none;
}

/* texto abaixo do vídeo */
.thumb-text {
  padding: 0.6rem 0.75rem 0.8rem;
  background: #ffffff;
}

.thumb-title {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.thumb-desc {
  margin: 0;
  font-size: 0.86rem;
  color: #6b7280;
}

/* modal (igual antes) */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 60;
}

.video-modal.is-open {
  display: block;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
}

.video-modal-dialog {
  position: relative;
  max-width: 900px;
  margin: 4rem auto;
  padding: 1.5rem 1.5rem 1.75rem;
  background: #0b1120;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  color: #e5e7eb;
}

.video-modal h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.video-modal-player {
  position: relative;
  margin-bottom: 0.75rem;
}

.video-modal-player video {
  width: 100%;
  max-height: 70vh;
  border-radius: 12px;
  display: block;
}

.video-modal-desc {
  margin: 0;
  font-size: 0.94rem;
  color: #d1d5db;
}

.video-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  border: none;
  background: rgba(15, 23, 42, 0.75);
  color: #e5e7eb;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 0.9rem;
}

/* responsivo */
@media (max-width: 1200px) {
  .media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-modal-dialog {
    margin: 3rem 1rem;
  }
}

@media (max-width: 640px) {
  .media-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .thumb-media {
    aspect-ratio: 16 / 9;
  }

  .video-modal-dialog {
    margin: 2rem 0.75rem;
    padding: 1rem;
  }

  .video-modal h3 {
    font-size: 1rem;
  }
}
.section-title-bar {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    to right,
    rgba(15, 118, 110, 0.95),
    rgba(37, 99, 235, 0.9)
  );
  color: #f9fafb;
  margin-bottom: 10px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
}

.section-title-bar h2 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}
.site-footer {
  margin-top: 2rem;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #e0e0e0;
  text-decoration-line: none;
}
  .footer-link {
  color: #007bff;          /* cor do texto do link */
  text-decoration: none;   /* tira o sublinhado */
  font-weight: 600;        /* deixa mais “forte” */
}

.footer-link:hover {
  color: #0056b3;          /* cor ao passar o mouse */
  text-decoration: underline; /* opcional: sublinhar só no hover */
}
#preloader {
  position: fixed;
  inset: 0;                 /* top/right/bottom/left: 0 */
  background: #000;         /* ou a cor que você quiser */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* exemplo de spinner simples */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
.social-section {
  text-align: center;
  margin: 34px 0 0 0;
  padding-bottom: 18px;
  color: #fff;
}

.social-section p {
  font-size: 1.14rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.social-icons a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.12rem;
  color: #ffe600;
  background: rgba(36,30,7,0.05);
  padding: 10px 18px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px #786a0f22;
}

.social-icons a:hover,
.social-icons a:focus {
  background: #ffeb3b;
  color: #004d40;
  box-shadow: 0 4px 18px #ffd60033;
}

.social-icons i {
  font-size: 1.4em;
  color: #ff4081;
  vertical-align: middle;
}

.social-icons a:last-child i {
  color: #3b5998;
}
/* Ícone WhatsApp na cor oficial */
.social-icons i.fab.fa-whatsapp {
  color: #25d366; /* verde WhatsApp */
}
