/*header*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
}

.header {
  width: 100%;
  background: #f64206;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area img {
  height: 55px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.logo-text strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.logo-text span {
  color: #cfe9f9;
  font-size: 11px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #ffffffd8;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-size: 14px;
}

.nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-size: 16px;
}

.phone:hover {
  color: #fff;
}

.phone img {
  width: 20px;
}

.btn-orcamento-base {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 28px;
   background: linear-gradient(
    to bottom,
    #cc0000 0%,
    #ff751f 60%,
    #ffde59 100%
  );
  color: #ffffff;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 600;

  box-shadow: 
    0 4px 6px rgba(255, 208, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  transition: all 0.3s ease;
}

.btn-orcamento-base:hover {
 display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
    background: linear-gradient(
    to bottom,
    #cc0000 0%,
    #ff751f 60%,
    #ffde59 100%
  );
  box-shadow: 
    0 6px 10px rgba(255, 230, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}


.btn-orcamento-header {
  composes: btn-orcamento-base;
  padding: 10px 22px;
  font-size: 14px;
}



.btn-orcamento-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 22px;
  font-size: 14px;

  background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );

  color: #fff;
  border-radius: 22px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 4px 6px rgba(244, 232, 5, 0.35),
              inset 0 1px 0 rgba(255,255,255,.25);

  transition: .3s;
}

.btn-orcamento-mobile {
background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );
  color: #fff;
  width: 100%;
  padding: 14px 0;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(244, 184, 5, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: .3s;
}

.btn-orcamento-header:hover,
.btn-orcamento-hero:hover,
.btn-orcamento-mobile:hover {
background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );
  transform: translateY(-1px);
}


.hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #f64206;
  padding: 20px;
  gap: 18px;
}

.mobile-menu a {
  color: #ffffffc4;
  text-decoration: none;
  font-size: 16px;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}


@media (max-width: 900px) {

  .nav,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo-text {
    display: none;
  }

  .logo-area img {
    height: 55px;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-btn {
    width: 100%;
    text-align: center;
  }

  .mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-phone img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

}

/*primeira parte do site*/

.hero {
  position: relative;
  height: 100vh;
  background: url("img/capa7.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  
}

.hero-content {
  margin-top: 90px; 
}

.hero-overlay {
  position: absolute;
  inset: 0;
  
  z-index: 1;
}

.hero-shine {
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    120deg,
    transparent 45%,
    rgba(254, 254, 254, 0.364),
    transparent 55%
  );
  animation: shine 8s infinite linear;
  z-index: 2;
  pointer-events: none;
}

@keyframes shine {
  from {
    transform: translateX(-30%);
  }
  to {
    transform: translateX(30%);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(251, 209, 103, 0.459);
  border-radius: 20px;
  font-size: 20px;
  margin-bottom: 20px;
}

.hero-badge i {
  width: 10px;
  height: 8px;
  background: #ffdd1e;
  border-radius: 50%;
  display: block;
}

.hero h1 {
  font-size: 65px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #f47627 60%,
    #fde06b 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  
  text-shadow: 0 1px 0 rgba(252, 213, 37, 0.076);
}

.hero p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 35px;
  color: #fff;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 50px;
}


.btn-orcamento-hero {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
   background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );
  color: #fff;
  width: 320px;
  padding: 16px 0;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(244, 200, 5, 0.35),
              inset 0 1px 0 rgba(255,255,255,.25);
  transition: .3s;
}

.btn-orcamento:hover {
  transform: translateY(-2px);
  
}

.btn-ligar {
  width: 280px;
  padding: 13px 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  color: #ffffff;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 25px;

  background: transparent;

  transition: 0.3s ease;
}


.btn-ligar img {
  width: 16px;
}

.btn-ligar:hover {
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 12px rgba(255,255,255,0.4);
}

.hero-numbers {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.number-box strong {
  font-size: 36px;
  display: block;
}

.number-box span {
  font-size: 13px;
  opacity: .8;
}


.scroll-down {
  display: inline-block;
  margin-top: 40px;
  animation: bounce 1.5s infinite;
}

.scroll-down img {
  width: 28px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@media (max-width: 900px) {


  .hero {
  position: relative;
  height: 150vh;
  background: url("img/capa7-celular.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  
}


  .hero {
   
    padding-top: 140px; 
    padding-bottom: 60px;
    align-items: flex-start;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-badge {
    font-size: 18px;
    padding: 7px 14px;
    margin-bottom: 18px;
  }

.hero h1 {
    font-size: 43px;
    line-height: 1.25;
    max-width: 380px;   
    margin: 0 auto 18px;
    letter-spacing: 0.4px;
    text-wrap: balance; 
  }

    .hero h1 {
    max-width: 420px;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-buttons {
    gap: 12px;
    margin-bottom: 40px;
  }

  .btn-orcamento-hero {
    width: 100%;
    max-width: 320px;
    padding: 15px 0;
    font-size: 16px;
  }

  .btn-ligar {
    width: 100%;
    max-width: 280px;
    padding: 13px 0;
    font-size: 14px;
  }

  .hero-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    justify-items: center;
  }

  .hero-numbers .number-box:nth-child(3) {
    grid-column: 1 / -1; 
  }

  .number-box strong {
    font-size: 30px;
  }

  .number-box span {
    font-size: 13px;
  }

  .scroll-down {
    margin-top: 30px;
  }
}

@media (min-width: 950px) and (max-width: 1366px) {


  .hero {
  position: relative;
  height: 150vh;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  
}

}

.hero h1,
.hero p,
.hero-badge,
.hero-numbers,
.hero-numbers strong,
.hero-numbers span {
  text-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.415),
    0 1px 2px rgba(0, 0, 0, 0.411);
}

.hero h1 {
  text-shadow: 
    0 4px 14px rgba(0, 0, 0, 0.468),
    0 2px 6px rgba(0, 0, 0, 0.596);
}

.hero-overlay{
  background: rgba(0,0,0,0.25);
}


/*segunda parte*/

.problemas {
  padding: 100px 20px;
  background: #fff;
}

.problemas-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.problemas-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: .8s ease;
  color: rgba(0, 0, 0, 0.789);
}

.problemas-title span {
 background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.problemas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.problema-card {
  background: #fff;
  padding: 28px 30px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);

  opacity: 0;
  transform: translateY(30px);
  transition: 
    .6s ease,
    box-shadow .4s ease,
    transform .4s ease;
}

.problema-card img {
  width: 26px;
  flex-shrink: 0;
}

.problema-card p {
  font-size: 15px;
  color: #361f1d;
  text-align: left;
}

.problema-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(156, 130, 25, 0.2),
    0 20px 40px rgba(255, 217, 50, 0.25);
}


.problemas-title,
.problema-card {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.problemas-title.show,
.problema-card.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .problemas-title {
    font-size: 32px;
  }

  .problemas-grid {
    grid-template-columns: 1fr;
  }

  .problema-card {
    text-align: left;
  }
}


.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/*terceira parte*/

.about {
  padding: 80px 0;
  background: #f8f8f8;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text h2 span {
 background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wave-text {
  display: inline-block;
  font-weight: 700;
  cursor: pointer;

background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );
  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: transform 0.4s ease;
}

.wave-text:hover {
  transform: translateY(-6px);
  animation: waveMove 2s ease-in-out infinite;
}


@keyframes waveMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.wave-text:hover {
  transform: translateY(-6px);
  animation: waveMove 2s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(50, 212, 255, 0.45));
}


.about-text p {
  color: #666;
  margin-bottom: 30px;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
}

.about-list img {
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-shadow {
  position: absolute;
  width: 95%;
  height: 95%;
  background: rgba(15, 180, 223, 0.25);
  filter: blur(60px);
  border-radius: 30px;
  z-index: 1;

  transition: filter 0.4s ease, transform 0.4s ease;
}

.about-image:hover .image-shadow {
  filter: blur(90px);
  transform: translateY(10px);
}

.about-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  position: relative;
  z-index: 2;

  transition: transform 0.4s ease, filter 0.4s ease;
}

.about-image:hover img {
  transform: translateY(-15px);
  filter: brightness(1.15);
}

.experience-box {
  position: absolute;
  bottom: -25px;   
  right: -25px;   
  padding: 18px 26px;
  border-radius: 16px;
 background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );
  text-align: center;
  color: #fff;
  z-index: 3;
}

.experience-box strong {

  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #fff;

}

.experience-box span {
  font-size: 14px;
  font-weight: 500;
}



@media (max-width: 768px) {

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    order: 1;
  }

  .about-image {
    order: 2;
  }

  .about-image img {
    max-width: 100%;
  }

  .image-shadow {
    width: 100%;
    height: 100%;
    filter: blur(50px);
  }

  .experience-box {
    bottom: -20px;
    right: 10px;
    padding: 16px 22px;
  }

  .experience-box strong {
    font-size: 30px;
  }

  .experience-box span {
    font-size: 13px;
  }

  
  .about-text h2 {
    font-size: 25px;
  }

  .about-text p,
  .about-list li {
    font-size: 15px;
  }
}

@media (max-width: 768px) {

  .about {
    padding: 60px 0; 
  }

  .about-container {
    padding: 0 25px; 
  }

}


/*parte 4*/


.why-jmv {
  padding: 100px 8%;
  background: linear-gradient(180deg, #ff8336, #ff3939);
  color: #fff;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.why-jmv .section-title span {
   background: linear-gradient(
    to bottom,
    #fcc5c5 0%,
    #fde3d3 60%,
    #f4e000 100%
  );
   -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cards {
 display: grid;
  grid-template-columns: repeat(4, 280px); 
  gap: 20px;
  justify-content: center; 
  
}

.card {
   background: rgba(255, 255, 255, 0.078); 
  border: 1px solid rgba(255, 255, 255, 0.35); 
  border-radius: 18px;
  padding: 40px 30px;
  text-align: left;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(60px);
  transition: 
    transform 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.6s ease,
    border-color 0.4s ease,
    background 0.4s ease;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center; 
}

.card {
  max-width: 350px; 
  max-height: 280px;
  width: 100%;
}


.card:hover {
   transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 0 25px rgba(50, 212, 255, 0.35),
    inset 0 0 15px rgba(255, 255, 255, 0.25);
    
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;

  background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );
}

.icon-box img {
  width: 30px;
  height: 30px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.section-title.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (min-width: 950px) and (max-width: 1366px) {

  .card {
  max-width: 350px; 
  max-height: 330px;
  width: 100%;
}

}

/*parte 5*/

 .services-section {
    padding: 80px 8%;
    background-color: #ffffff;
    color: #000;
    text-align: center;
  }

  .section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }
  .section-title span {
 
  
  background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .subtitle {
    font-size: 1.05rem;
    margin-bottom: 50px;
    color: #5f7b8a;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
    transition-delay: 0.3s;
  }

  .services-cards {
   display: grid;
  grid-template-columns: repeat(3, 400px); 
  column-gap: 14px; 
  row-gap: 24px; 
  justify-content: center;
  }

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 8px rgba(85, 65, 22, 0.08);
    text-align: left;
    max-width: 450px;
    max-height: 380px;
    width: 100%;
    cursor: pointer;

    opacity: 0;
    transform: translateY(60px);
    transition:
      box-shadow 0.4s ease,
      transform 0.4s ease,
      opacity 0.6s ease,
      background 0.4s ease;
  }

  .service-card:hover {
    box-shadow:
      0 0 30px 4px rgba(223, 168, 15, 0.55);
    background: #fffce4;
    transform: translateY(-12px);
  }
  .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
  }
  .icon-box img {
    width: 30px;
    height: 30px;
  }
  .service-card h3 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #182c43;
  }
  .service-card p {
    font-size: 0.95rem;
    color: #5f7b8a;
    line-height: 1.5;
  }

 .section-title,
.subtitle,
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.section-title.show,
.subtitle.show,
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

  @media (max-width: 900px) {
    .services-cards {
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .service-card {
      max-width: 100%;
    }

    .section-title {
      font-size: 2.2rem;
    }
  }

  /*parte 7*/


  .beneficios-section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
  
}

.beneficios-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.beneficios-title span {
  background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.beneficio-card {
  background: #fbf9f9b1;
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 25px rgba(241, 214, 82, 0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: 
    transform 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.6s ease;
}

.beneficio-card img {
  width: 28px;
  height: 28px;
}

.beneficio-card p {
  font-size: 16px;
  color: #1e1e1e;
  line-height: 1.4;
}

.beneficio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(223, 220, 15, 0.25);
}

.reveal-beneficios-title,
.reveal-beneficios-card {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-beneficios-title.show,
.reveal-beneficios-card.show {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .beneficios-title {
    font-size: 32px;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
  }
}


.avaliacoes {
  padding: 80px 20px;
  text-align: center;
   background: linear-gradient(180deg, #ff8336, #ff3939);
}

.avaliacoes h2 {
  font-size: 40px;
  margin-bottom: 40px;
  color: #fff;
}

.avaliacoes h2 span{
  background: linear-gradient(
    to bottom,
    #fcc5c5 0%,
    #fde3d3 60%,
    #f4e000 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.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;
}

/*fac*/

.faq-section {
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
}

.faq-title span {
  background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-subtitle {
  color: rgba(99, 98, 98, 0.55);
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 5px;
  box-shadow: 0 12px 35px rgba(223, 199, 15, 0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, #df620f, #de2915);
  opacity: 0.02;
  filter: blur(14px);
  z-index: -1;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #322300;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ebb803;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: rgba(0, 0, 0, 0.275);
  line-height: 1.5;
}

.reveal-faq-title.show,
.reveal-faq-item.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 32px;
  }

  .faq-question {
    font-size: 15px;
  }
}


/*marcas*/

.brands-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ff8336, #ff3939);
  text-align: center;
  overflow: hidden;
}

.brands-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.brands-title span {
   background: linear-gradient(
    to bottom,
    #fcc5c5 0%,
    #fde3d3 60%,
    #f4e000 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-card {
   background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  opacity: 0;
  transform: translateY(50px);

  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: ease;
}

.brand-card:hover {
  transition-delay: 0s !important;
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 0 20px rgba(255, 139, 50, 0.6),
    0 0 40px rgba(255, 91, 50, 0.4);
}

.brand-card img {
  max-width: 120px;
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}


.brand-card img {
  max-width: 130px;
  width: 100%;
  filter: none; /* 👈 remove o preto e branco */
  transition: transform 0.4s ease, filter 0.4s ease;
}

.brand-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 0 20px rgba(255, 152, 50, 0.6),
    0 0 40px rgba(252, 255, 50, 0.4);
}

.brand-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.reveal.active .brands-title {
  opacity: 1;
  transform: translateY(0);
}

.reveal.active .brand-card {
  opacity: 1;
  transform: translateY(0);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.brands-grid .brand-card:nth-child(9) {
  grid-column: 2;
}

.brands-grid .brand-card:nth-child(10) {
  grid-column: 3;
}

@media (max-width: 768px) {
  .brands-title {
    font-size: 2.1rem;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid .brand-card {
    grid-column: auto !important;
  }
}

/*orçamento*/

.cta-section {
 position: relative;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;

   background-color: #fff;

}


.cta-text {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 2.6rem;
  font-weight: 700;
  color: #000000ca;
  line-height: 1.3;

  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.cta-text span {
  background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );
  
   -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
 
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;

  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.btn-orcamento {
   background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );
  color: #fff;
  padding: 18px 38px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;

  animation: blink 0.9s infinite;
  transition: transform 0.3s ease;
}

.btn-orcamento:hover {
  animation-play-state: paused;
  transform: scale(1.05);
}

.btn-orcamento:hover {
  animation-play-state: paused;
  transform: translateY(-4px);
}

@keyframes blink {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 rgba(50, 212, 255, 0);
  }
  50% {
    opacity: 0.6;
    box-shadow:
      0 0 20px rgba(255, 122, 50, 0.8),
      0 0 40px rgba(255, 170, 50, 0.6);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 0 rgba(50, 212, 255, 0);
  }
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 18px 38px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;

  display: flex;
  align-items: center;
  gap: 12px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp img {
  width: 22px;
  height: 22px;
}
.btn-whatsapp:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 20px rgba(37, 211, 102, 0.6),
    0 0 40px rgba(37, 211, 102, 0.4);
}


.reveal.active .cta-text {
  opacity: 1;
  transform: translateY(0);
}

.reveal.active .cta-buttons {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}


@media (max-width: 768px) {
  .cta-text {
    font-size: 1.9rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-orcamento,
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/*footer*/

.footer {
  background: linear-gradient(180deg, #ff8336, #ff3939);
  color: #fff;
  padding-top: 70px;
}


.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}


.footer-col h4 {
  font-size: 1.0rem;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 0.90rem;
  line-height: 1.6;
  margin-top: 20px;
}


.footer-logo {
  max-width: 140px;
}


.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}


.footer a,
.footer p {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
   font-size: 0.83rem;
}

.footer a:hover,
.footer p:hover {
  color: #d9b33e;
}

.footer-small {
  font-size: 0.8rem;
  margin-top: 6px;
}

.footer-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
    background: linear-gradient(
    to bottom,
    #ff3939 0%,
    #ff8336 60%,
    #f4ca24 100%
  );
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 214, 50, 0.6);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }
}



.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px; 
  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;
}


.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}


@keyframes jump {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 15px;
    bottom: 15px;
  }
}