html {
  scroll-behavior: smooth;
}
html, body {
  font-family: 'Lexend Deca', sans-serif;

}

body {
  margin: 0;
  background-color: #fff;
  color: #1a1a1a;
  max-height: 100vh;
  box-sizing: border-box;
}
/* Primeira seção e header */
.hero {
  padding: 60px 10%;
  height: auto;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.header {
  padding: 15px 5%;
  background-color: #fff;
  position: fixed;
}



.logo {
  height: 32px;
  /* margin-left: -4rem; */
}


.text-content {
  
  flex: 1 1 500px;

  max-width: 600px;
}

.section-label {
  
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.main-title {

  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.benefits {
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.benefits h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.benefits p {
  font-size: 0.9rem;
  color: #444;
}


.benefit-card {
  background: linear-gradient(150deg, #ffffff, #d9e2ff);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.benefit-card p {
  font-size: 1rem;
  color: #333;
}


.buttons {
  
  display: flex;
  gap: 15px;
}

.btn-secondary {
  text-decoration: none;       /* remove sublinhado */
  padding: 10px 20px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .btn-secondary:hover {
    background-color: #e0e0e0;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);

  cursor: pointer;
}


.btn-primary {
  text-decoration: none;       /* remove sublinhado */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  
  padding: 10px 20px;
  background-color: #0047ff;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #0039d1;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);
}
/* Modal base */
/* Modal base */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease forwards;
  padding: 20px;
  box-sizing: border-box;
}

/* Ativa display flex ao mostrar */
.modal.show {
  display: flex;
}

/* Conteúdo do modal com animação */
.modal-content {
  background-color: #000;
  border-radius: 16px;
  height: 80vh;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 16 / 9; /* Força o container a 16:9 */
  overflow: hidden;
  transform: scale(0.9);
  opacity: 0;
  animation: zoomIn 0.4s ease forwards;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* vídeo 9x16 centralizado com barras pretas laterais */
.modal-content video {
  height: 100%;
  width: auto;
  border-radius: 12px;
}

/* Botão de fechar */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 10;
}

/* Animações */
@keyframes fadeIn {
  from {
    background-color: rgba(0, 0, 0, 0);
  }
  to {
    background-color: rgba(0, 0, 0, 0.8);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


.image-content {
  flex: 1 1 400px;
  text-align: center;
  
}

.image-content img {
  max-width: 80%;
  height: auto;
  border-radius: 10px
}


/* Segunda seção */
.testimonials {
  background-color: #0047ff;
  color: white;
  padding: 80px 10%;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.testimonials .subtitle {
  font-size: 0.95rem;
  color: #dbe9ff;
  margin-bottom: 40px;
}

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

.card {
  background-color: #0039d1;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #fff700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.quote {
  font-style: italic;
  margin-bottom: 20px;
  color: #f0f8ff;
}

.client {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* Seção de vídeo */

.demo-section {
  background-color: #dde5fc;
  padding: 80px 10%;
}

.demo-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.demo-text{
  font-size: x-large;

}

.features-list{
  
  margin-bottom: 3rem;
}
.feature-item{
  margin-bottom: 1rem;
}
.demo-video {
  position: relative;
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent; /* barras laterais */
  padding: 5px;
  border-radius: 20px;
}

.demo-video video {
  height: 550px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}




@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.play-button {
  position: absolute;
  font-size: 7rem;
  color: #0047ff;
  text-shadow: 0 0 10px #0047ff, 0 0 20px #0047ff, 0 0 30px #0047ff;
  animation: pulse 1.5s infinite;
  cursor: pointer;
  z-index: 5;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Cor preta com 50% de opacidade */
  display: block; /* Inicialmente visível */
  z-index: 4; /* Deve estar acima do vídeo, mas abaixo do botão de play */
  border-radius: 16px;
}

.solicitar-glow-on-hover {

  text-decoration: none;       /* remove sublinhado */
  
  background-color: #0047ff;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  font-size: 20px;
  height: 20px;
  width: 240px;
  text-align: center;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.solicitar-glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.solicitar-glow-on-hover:active {
  color: #ffffff
}

.solicitar-glow-on-hover:active:after {
  background: transparent;
}

.solicitar-glow-on-hover:hover:before {
  opacity: 1;
}

.solicitar-glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0047ff;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}


/* Seção beneficios */
.benefits-section {
  background-color: #fff;
  padding: 80px 10%;
  text-align: center;
}

.benefits-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.benefits-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 40px;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-content: center; /* centra o conteúdo */
  grid-auto-flow: row dense;
}


.card-benefit {
  background-color: #F5F8FF;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease;
}

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

.card-benefit .icon {
  font-size: 2rem;
  margin-bottom: 15px;
}



.btn-form{
  text-decoration: none;       /* remove sublinhado */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  
  padding: 10px 20px;
  background-color: #0047ff;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {


  .image-content {
    padding-top: 4rem;

  }
  .demo-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .demo-video {
    background-color: transparent;
    padding: 0;
  }

  .demo-video video {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  .demo-text {
    padding-top: 20px;
    
  }

  .demo-text ul {
    text-align: left;
  }
  
}


/* Seção Formulário */

.form-section {
  background-color: #F5F8FF;
  padding: 80px 10%;
  text-align: center;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.form-container p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 30px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lead-form input {
  padding: 14px 18px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.lead-form input:focus {
  border-color: #0047ff;
  outline: none;
}

.lead-form .btn-primary {
  align-self: center;
  padding: 12px 28px;
  font-size: 1rem;
}

/* Footer  */
.footer {
  background-color: #F5F8FF;
  padding: 30px 10%;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

.footer strong {
  color: #1a1a1a;
}



@media screen and (min-width: 1024px) {


  .image-content {
    padding-top: 0;
  }
  .benefit-cards {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
  }
  .demo-section {
    display: flex; /* Adicione display flex */
    flex-direction: row; /* Alinhe os itens lado a lado */
    align-items: center; /* Centralize verticalmente */
    justify-content: space-between; /* Espaçamento entre os itens */
    padding: 80px 10%; /* Padding existente */
  }
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* usa 100% da largura do .demo-video */
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    z-index: 4;
  }

  .demo-video {
    flex: 1;
    max-width: 400px;
    position: relative;
  }

  .demo-video video {
    width: 100%; /* garante que o vídeo acompanhe o container */
    height: auto;
  }
  
.demo-video {
  flex: 1; /* Permite que o vídeo ocupe uma parte maior */
  max-width: 400px; /* Ajuste conforme necessário */
}

  
}
@media screen and (max-width: 426px) {

  .image-content {
    padding-top: 4rem;
    display: none;
  }
  .container {
    flex-direction: column;
    height: auto;
  }

  .main-title {
    font-size: 1.5rem;
  }
  .buttons {
    flex-direction: column;
  }


  .demo-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .demo-video {
    background-color: transparent;
    padding: 0;
  }

  .demo-video video {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  .demo-text {
    padding-top: 20px;
    
  }



  .demo-text ul {
    text-align: left;
  }

  .buttons {
    font-size: 20px;
    padding: 20px;
    
    /* text-align: center; */
  }
  .form-container{
    
    height: auto;
  }
  .demo-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .solicitar-glow-on-hover{
    
    padding: 20px;
    font-size: 20px;
    height: 20px;
    width: 240px;
    text-align: center;
    /* margin-left: 6vw; */
   
  }
  .demo-text-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .btn-secondary {
    margin: auto;
    padding: 20px;
    width: 220px;
    height: 20px;
  }
  .btn-primary {
    margin: auto;
    width: 220px;
    height: 20px;
    padding: 20px;
  }
}

  .demo-text ul {
    text-align: left;
  }

  .modal-content {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }

  .modal-content video {
    width: 100%;
    height: auto;
  }


  

