/*primeira parte do site*/


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
 padding: 40px 100px 20px;
  z-index: 1000;
  transition: background 0.3s;
}

header.scrolled {
  background: #000;
}

.container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.logo img {
  height: 56px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 32px;
 
}

nav a {
  color: #ffffffd8;
  text-decoration: none;
  font-weight: 500;
}

.btn-header {
  background: #cf150e;
  color: #fff;
  padding: 12px 26px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
}


.hero {
  height: 100vh;
  background: url("img/fundo1.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
   padding-top: 110px;
}


.hero h1 {
  font-size: 65px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
}

.hero h1 span {
  color: #cf150e;
}

.hero p {
  margin-top: 25px;
  font-size: 22px;
  color: #ddd;
  max-width: 760px;
  margin-inline: auto;
}

/* BOTÕES */ 

.hero-buttons {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 20px;
}


.btn-pulse {
  background: #cf150e;
  color: #fff;
  padding: 16px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255,45,45,0.6);
  animation: glow 1.5s infinite alternate;
  transition: transform 0.1s ease;
}


.btn-pulse:hover {
  animation: blink 0.6s infinite;
  transform: scale(1.05);
}


@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(255,45,45,0.5);
  }
  to {
    box-shadow: 0 0 25px rgba(255,45,45,0.9);
  }
}


@keyframes blink {
  0% {
    opacity: 1;
    box-shadow: 0 0 25px rgba(255,45,45,0.9);
  }
  50% {
    opacity: 0.4;
    box-shadow: 0 0 5px rgba(255,45,45,0.2);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 25px rgba(255,45,45,0.9);
  }
}

.btn-green {
  background: #1db954;
  color: #fff;
  padding: 16px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}


.btn-green:hover {
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.8);
  transform: scale(1.05);
}


.btn-green img {
  width: 16px;
  height: 16px;
}


.mouse {
  position: absolute;
  bottom: 18px;              
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 20px;
  z-index: 10;
  pointer-events: none;
}



.mouse span {
  width: 5px;
  height: 10px;
  background: #fff;
  display: block;
  margin: 7px auto;
  border-radius: 5px;
  animation: scroll 1.4s infinite;
}


@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

.mobile-text {
  display: none;
}

@media (max-width: 768px) {
  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: inline;
  }
}


@media (max-width: 768px) {

 
  header {
     min-height: 140px;
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 999;
  }

  header.scrolled {
    background: #000000e9 !important;
    
  }

  .container {
    display: block;
  }

  nav {
    display: none;
  }

  .logo {
    position: absolute;
    top: 35px;
    left: 25px;
    z-index: 20;
  }

  .logo img {
    height: 60px;
  }

  .btn-header {
    position: absolute;
    top: 45px;
    right: 25px;
    padding: 14px 15px;
    font-size: 14px;
    border-radius: 25px;
    z-index: 20;
  }


   .hero {
    height: 100vh;
    margin: 0;             
    border-radius: 0;     
    overflow: hidden;
  }

  .hero::before {
    border-radius: 0;
  }

  .hero-content {
  margin-bottom: 90px; 
  padding: 140px 20px 0; 
}


  .hero h1 {
  font-size: 35px;
  line-height: 1.25;
  margin-bottom: 30px; 
}


  .hero p {
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 80px; 
}


 .hero-buttons {
  flex-direction: column;
  gap: 18px;        
  margin-top: 0;    
}


  .btn-pulse,
  .btn-green {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
  }

 
  .mouse {
    bottom: 16px;
  }

}

/*segunda parte*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

.problemas {
  width: 100%;
  background-color: #262626;
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.problemas-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

.problemas-titulo {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 70px;
}

.problemas-titulo span {
  color: #cf150e;
}


.problemas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}


.problema-card {
  background-color: #000000a4;
  border-radius: 14px;
  padding: 34px 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 110px;
  border: 1px solid #504f4f;
  transition: border 0.3s ease;
}

.problema-card img {
  width: 34px;
  height: 34px;
}

.problema-card p {
  font-size: 18px;
  line-height: 1.5;
  color: #eaeaea;
}


.problema-card:hover {
  border-color: #ff2e2e;
}


@media (max-width: 768px) {
  .problemas-grid {
    grid-template-columns: 1fr;
  }

  .problemas-titulo {
    font-size: 24px;
  }

  .problema-card {
    padding: 28px;
  }
}


/*parte três*/


.solucoes {
  width: 100%;
  background: #000;
  padding: 120px 20px;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.solucoes-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.solucoes-titulo {
  text-align: center;
  font-size: 40px;
  margin-bottom: 70px;
  font-weight: 750;
}

.solucoes-titulo span {
  color: #cf150e;
}

.solucoes-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solucoes-lista {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.solucao-card {
  background: #111;
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #2a2a2a;
  transition: border 0.3s ease;
}

.solucao-card img {
  width: 20px;
  height: 20px;
}

.solucao-card p {
  font-size: 17px;
  line-height: 1.5;
  color: #eaeaea;
}

.solucao-card:hover {
  border-color: #ff2e2e;
}

.solucao-card.destaque {
  border: 1px solid #ff2e2e;
  padding: 26px;
  background-color: #ff2e2e22;
}

.solucao-card.destaque p {
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
}

.solucao-card.destaque p strong {
    color: #cf150e;
}

.solucoes-imagem img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}


@media (max-width: 768px) {

  .solucoes-content {
    grid-template-columns: 1fr;
  }

  .solucoes-imagem {
    order: 2;
    margin-bottom: 30px;
  }

  .solucoes-lista {
    order: 3;
  }

  .solucoes-titulo {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .solucao-card p {
  font-size: 19px;
  line-height: 1.5;
  color: #eaeaea;
}
.solucao-card.destaque p {
  color: #fff;
  font-size: 19px;
  line-height: 1.6;
}

}


/*quarta parte*/

.por-que-jmv {
  background-color: #262626;
  padding: 60px 20px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.por-que-jmv-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.por-que-jmv-titulo {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 40px;
}

.por-que-jmv-titulo span {
  color: #cf150e;
}

.por-que-jmv-lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.por-que-jmv-card {
  background: #111;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center; 
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.por-que-jmv-card:hover {
  border-color: #ff2e2e;
  background-color: #220000;
}

.por-que-icon {
  width: 45px;
  height: 45px;
  transition: transform 0.3s ease;
}

.por-que-jmv-card:hover .por-que-icon {
  animation: bounceInfinite 1.2s ease-in-out infinite;
}

.por-que-texto strong {
  display: block;
  font-size: 19px;
  margin-bottom: 6px;
}

.por-que-texto p {
  font-size: 16px;
  color: #ccc;
  margin: 0;
 
}

@keyframes bounceInfinite {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .por-que-jmv-lista {
    grid-template-columns: 1fr;
  }
}

/*parte5*/

.beneficios {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.beneficios h2 {
  color: #fff;
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.beneficios h2 span {
  color: #cf150e;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  background: #0d0d0d;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;

  border: 2px solid #2a2a2a;

  transition: all 0.3s ease;
}

.card:hover {
  border-color: #e50914;
}

.card img {
  width: 32px;
  height: 32px;
}

.card p {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
   font-weight: 550;
}

@media (max-width: 768px) {
  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .beneficios h2 {
    font-size: 28px;
  }
}

/*avaliações*/


.avaliacoes {
  padding: 80px 20px;
  text-align: center;
  background-color: #262626;
}

.avaliacoes h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
}

.avaliacoes h2 strong{
    color:#cf150e ;
}

.avaliacoes-box {
  position: relative;
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  padding: 50px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.avaliacoes-container {
  position: relative;
}

.avaliacao-item {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fade 0.4s ease;
}

.avaliacao-item.active {
  display: flex;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.avaliacao-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.avaliacao-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.avaliacao-stars img {
  width: 20px;
}

.avaliacao-item h3 {
  margin: 5px 0;
}

.avaliacao-item span {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.avaliacao-item p {
  max-width: 600px;
  font-size: 16px;
  color: #555;
}

.avaliacao-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #000;
}

.avaliacao-btn.prev {
  left: 20px;
}

.avaliacao-btn.next {
  right: 20px;
}

.avaliacao-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 8px;
}

.avaliacao-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.avaliacao-dot.active {
  background: #000;
}

/*numeros*/

.cta {
  background: #dd1d2d;
  padding: 100px 20px;
  color: #fff;
}

.cta-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  font-size: 45px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 50px;
}

.cta h2 .dark {
  color: #000;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-orcamento {
  background: #000;
  color: #fff;
  padding: 16px 36px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;

  animation: blink 0.4s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

.btn-orcamento,
.btn-whatsapp {
  min-width: 300px;          
  height: 56px;              
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp {
 background: #1db954;
  color: #fff;
  padding: 16px 28px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;

  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-whatsapp:hover {
  box-shadow: 0 0 15px rgba(29, 185, 84, 0.8),
              0 0 30px rgba(29, 185, 84, 0.6);
  transform: scale(1.05);
}

.btn-whatsapp img {
  width: 22px;
  height: 22px;
}

.cta-numeros {
  display: flex;
  justify-content: center;
  gap: 140px; 
  flex-wrap: wrap;
}

.numero {
  text-align: center;
}

.numero span {
  font-size: 42px;
  font-weight: 800;
}

.numero p {
  margin-top: 8px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .cta h2 {
    font-size: 28px;
  }

  .cta-numeros {
    gap: 40px;
  }
}


/*fac*/

.faq {
  background: #000;
  padding: 100px 20px;
  color: #fff;
}

.faq h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.faq h2 span {
  color: #e50914;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #0d0d0d;
  border: 2px solid #2a2a2a;
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: border 0.3s ease;
}

.faq-item.active {
  border-color: #e50914;
  background: linear-gradient(90deg, #2a0f12, #0d0d0d);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 22px 20px;
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
}

.arrow {
  color: #e50914;
  font-size: 18px;
}

.faq-footer {
  text-align: center;
  margin-top: 60px;
  font-size: 14px;
  color: #ccc;
}

.faq-whatsapp {
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1db954;
  color: #fff;
  padding: 16px 30px;
  border-radius: 40px;
  width: fit-content;
  text-decoration: none;
  font-weight: 700;
}

.faq-whatsapp img {
  width: 22px;
  height: 22px;
}

@media (max-width: 768px){
    .faq-answer p {
  padding: 0 22px 20px;
  color: #ddd;
  font-size: 16px;
  line-height: 1.6;
}
}

/*footer*/

.footer {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #ccc;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background-color: #e50914;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.footer-btn:hover {
  background-color: #ff1f2a;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #777;
}

.footer a,
.footer ul li,
.footer p {
  transition: color 0.3s ease;
}

.footer a:hover,
.footer ul li:hover,
.footer p:hover {
  color: #e50914;
  cursor: pointer;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}


.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px; /* bem no canto inferior */
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
  z-index: 9999;
  animation: jump 0.6s infinite alternate;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* Hover → verde escuro */
.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}

/* Pulo rápido */
@keyframes jump {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 15px;
    bottom: 15px;
  }
}

