/* Reset básico */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Acessibilidade utilitária */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Corpo */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0A0A0A;
  color: #fff;
}

/* Seção do vídeo */
.video-container {
  display: flex; justify-content: center; align-items: center;
  padding: 20px; position: relative;
}

video {
  width: 100%; max-width: 500px;
  border-radius: 10px; cursor: pointer;
  background: #000;
}

/* Botão para ativar som */
.unmute-btn {
  position: absolute;
  left: 12px; bottom: 12px;
  border: 1px solid #2a3340;
  background: rgba(17, 17, 17, 0.65);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
}
.unmute-btn:hover { background: rgba(34, 34, 34, 0.7); }
.unmute-btn:focus-visible { outline: 3px solid #ffb84d; outline-offset: 2px; }
.unmute-btn[hidden]{ display:none !important; }

/* Header (Hero) */
.hero {
  background-color: #040F2F;
  min-height: 370px;
  display: flex; justify-content: center; align-items: center;
  text-align: center; padding: 20px; position: relative;
}

.hero-content { max-width: 800px; }

.hero h1 {
  font-size: 2.5rem; color: #FFF; margin-bottom: 20px;
  font-weight: 700; text-transform: uppercase;
}

.hero p {
  color: #CF9200; font-size: 1.25rem; font-weight: 500; margin-bottom: 30px;
}

.cta {
  color: #000; background-color: #CF9200;
  padding: 12px 24px; text-decoration: none; border-radius: 5px;
  font-weight: bold; font-size: 1.2rem; transition: background-color 0.3s ease;
  display: inline-block;
}
.cta:hover { background-color: #ff6f00; }
.cta:focus-visible { outline: 3px solid #ffb84d; outline-offset: 2px; }

/* Seção de Informações e Contadores */
.info {
  text-align: center; padding: 40px 20px; background-color: #1B1A1A;
}

.info h2 {
  font-size: 1.5rem; color: white; margin-bottom: 20px;
}

.info p {
  font-size: 1.2rem; color: #CF9200; margin-bottom: 40px;
}

/* Destaque para os números dos contadores */
.number-highlight {
  color: #CF9200; font-weight: bold; font-size: 2rem;
  background-color: #1B1A1A; padding: 5px 10px; border-radius: 5px;
}

/* Depoimentos */
.testimonials {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
}

.testimonial {
  background-color: #1B1A1A; padding: 20px; width: 280px; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.testimonial img {
  width: 40px; height: 40px; border-radius: 50%; margin-bottom: 10px; object-fit: cover;
}

.testimonial p {
  font-size: 1rem; color: white; margin-bottom: 10px;
}

.testimonial strong { color: #CF9200; }

/* Responsividade */
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  .info h2 { font-size: 1.2rem; }
  .testimonials { flex-direction: column; align-items: center; }
  .testimonial { width: 90%; }
}

/* Animações reduzidas (respeito ao usuário) */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
