body {
  margin: 0;
  font-family: "Segoe UI";
  background: #f9fafb;
}

/* MENU */
/* NAVBAR */
.navbar {
  background: black;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  font-weight: bold;
  position: sticky;
  height: 50px;
  top: 0;
  z-index: 999;
}

/* LOGO AREA */
.logo-area {
  display: flex;
  align-items: center;
}

.logo {
  height: 140px;
  margin-right: 10px;
}

.empresa-nome {
  font-size: 18px;
  font-weight: bold;
}

/* MENU */
.menu a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
  font-family: "Segoe Ui";
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .empresa-nome {
    display: none;
  }

  .menu a {
    margin-left: 10px;
    font-size: 12px;
  }

  .logo {
    height: 35px;
  }
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 38px;
}

.btn {
  background: #22c55e;
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  margin-top: 20px;
}

/* SECTIONS */
.section {
  padding: 30px 30px;
  text-align: center;
}

.cta2 {
  color: black;
  margin: 10px;
  padding: 20px;
  width: full;
  border-radius: 10px;
  border-style: ridge;
  display: flex;
  flex-direction: column;
  justify-items: center;
  text-align: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  margin: 10px;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card i {
  font-size: 30px;
  color: #00cec9;
  margin-bottom: 10px;
}

/* CARROSSEL */
.carousel {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.carousel img {
  width: 100%;
  border-radius: 10px;
}

.carousel-buttons {
  margin-top: 10px;
}

.carousel-buttons button {
  padding: 10px;
  margin: 5px;
}

.modulos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.modulo {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.modulo:hover {
  transform: translateY(-5px);
}

.modulo i {
  font-size: 30px;
  color:#00cec9;
  margin-bottom: 10px;
}

.modulo h3 {
  margin: 10px 0;
}

.modulo p {
  font-size: 14px;
  color: gainsboro;
}

/* FOOTER */
.footer {
  background: #0f172a;
  color: white;
  padding: 30px;
  text-align: center;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.depoimento {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.depoimento:hover {
  transform: translateY(-5px);
}

.depoimento img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.depoimento h3 {
  margin: 5px 0;
}

.depoimento span {
  font-size: 13px;
  color: #22c55e;
  font-weight: bold;
}

.depoimento p {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

#logo_sistema {
  width: 240px;
  height: 240px;
  margin-top: 0%;
  margin-bottom: 0%;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: white;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  border: none;
  background: #fff;
  font-size: 15px;
  cursor: pointer;
  font-weight: bold;
}

.faq-question:hover {
  background: #f1f5f9;
}

.faq-answer {
  display: none;
  padding: 15px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #eee;
}

#veja{
margin: 10px;
height: 20px;
}

#texto-video{
  width: full;
  display: flex;
  margin-bottom: 10px;
  flex-direction: column;
  align-items: center;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.video-container {
  width: 720px;   /* 🔥 TAMANHO PADRÃO */
  height: 405px;  /* 🔥 PROPORÇÃO 16:9 */
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 768px) {
  .video-container {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}