/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #222;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0F2B50;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: bold;
}

#nav-list {
  list-style: none;
  display: flex;
  gap: 3rem;
  align-items: center;
}

#nav-list a {
  color: #fff;
  text-decoration: none;
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
}

/* HERO PARALLAX */
.hero {
  height: 100vh;
  background: url("../img/hero-bg.jpg") center / cover fixed;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.98) 0%,
    rgba(13, 13, 13, 0.85) 20%,
    rgba(13, 13, 13, 0.55) 40%,
    rgba(13, 13, 13, 0.25) 60%,
    rgba(13, 13, 13, 0.05) 80%,
    rgba(13, 13, 13, 0) 100%
  );
}

.hero-content {
  position: relative;
  color: white;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* CTA BUTTON */
.btn-cta {
  background: #8DC710;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  display: inline-block;
  transition: transform .2s, box-shadow .2s;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section.light {
  background: #f6f6f6;
  text-align: center;
}
.section.light h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.section.light p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
    .section.light h2 {
        font-size: 2.2rem;
    }
}

.section-scroll {
  scroll-margin-top: 100px; /* desloca o scroll automaticamente */
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  padding: 40px 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: center;
}

/* CTA FINAL PARALLAX */
.cta-parallax {
  height: 60vh;
  background: url("../img/cta-bg.jpg") center / cover fixed;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.cta-content {
  position: relative;
  color: white;
  z-index: 2;
}
.cta-parallax h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}
.cta-parallax p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .cta-parallax h2 {
        font-size: 2.2rem;
    }
}

/* FOOTER */
.footer {
  background: #0f2b50;
  color: #eee;
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
  padding: 10px 0;
}

.footer h4 {
  margin-bottom: 10px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #001735;
  font-size: 0.9rem;
  margin-top: 40px;
}

.footer-bottom strong {
  font-weight: 600;
}
.footer-bottom span {
  color: #19c1ca;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  #menu-toggle {
    display: block;
  }

  #nav-list {
    position: absolute;
    top: 100px;
    right: 0;
    background: #111;
    flex-direction: column;
    display: none;
    padding: 15px;
  }

  #nav-list.active {
    display: flex;
    gap: 20px;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #8dc710;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* Testimonials */
.testimonials {
  background: #f6f6f6;
  padding: 80px 0;
  text-align: center;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 40px auto;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

/* 3 por vez */
.testimonial {
  flex: 0 0 33.3333%;
  padding: 10px;
  box-sizing: border-box;
}

.testimonial strong {
  display: block;
  margin-top: 12px;
  font-weight: 600;
}

/* Google badge */
.google-badge {
  display: inline-block;
  margin-top: 6px;
  font-size: .85rem;
  color: #555;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  z-index: 2;
}

.arrow-left {
  left: 5px;
}

.arrow-right {
  right: 5px;
}

/* Dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #25d366;
}

/* Mobile */
@media (max-width: 900px) {
  .testimonial {
    flex: 0 0 100%;
  }

  .arrow {
    display: none;
  }
}
/* Card */
.testimonial-card {
  background: #fff;
  padding: 22px;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

/* Header */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

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

.client-info {
  text-align: left;
}

.client-name {
  font-size: .95rem;
  font-weight: 600;
  display: block;
}

.rating {
  font-size: .85rem;
  color: #fbbc04; /* Google yellow */
}
.rating-2 {
  font-size: 2rem;
  color: #fbbc04; /* Google yellow */
}
.logo-google {
  display: flex;
  margin: auto;
  text-align: center;
  justify-content: center;
  margin-top: 8px;
}

/* Texto */
.testimonial-text {
  font-size: .95rem;
  line-height: 1.4;
  margin: 12px 0;
  text-align: left;
}

/* Fonte */
.google-source {
  font-size: .75rem;
  color: #777;
  text-align: left;
}

/* Contact Float */
.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #8DC710;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.nav-contact-btn:hover {
  background: #0f2b50;
  transform: translateY(-1px);
}
.nav-contact-btn .icon-whatsapp {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
  display: block;
}
/* FOOTER */
.img_footer {
  padding-bottom: 10px;
}
.contact-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.icon-whatsapp {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
  display: block;
}
.icon-phone-footer {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
  display: block;
}
/* Card Serviços */
.card i {
  font-size: 38px;
  color: #8dc710;
  margin-bottom: 14px;
}
/* CARD IMAGE */
.cards-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 10px;
  margin-top: 30px;
}

.cards-servicos {
  /*padding: 40px 20px;*/
  border-radius: 10px;
  /*background: #fff;*/
  /*box-shadow: 0 5px 15px rgba(0,0,0,0.08);*/
  display: flex;
  flex-direction: column;
  /*gap: 1.4rem;*/
  text-align: center;
}
.cards-servicos {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cards-servicos:hover {
  transform: translateY(-6px);
  /*box-shadow: 0 12px 30px rgba(0,0,0,0.12);*/
  cursor: pointer;
}
.card-image {
  width: 100%;
  /*max-width: 140px;*/
  margin: 0 auto -30px;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.08);
}
.card-image img {
  width: 100%;
  height: auto;
  /*aspect-ratio: 1 / 1;*/
  object-fit: contain;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.btn-servicos {
  align-items: center;
  background: #8DC710;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  width: fit-content;
  margin: auto;
}
.btn-servicos:hover {
  background: #0f2b50;
  transform: translateY(-1px);
}

/* Como Funciona Novo */
.como-funciona {
  padding: 80px 20px;
  background: #f9f9f9;
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  color: #16a34a;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
}

.grid-funciona {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card-funciona {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  transition: 0.3s ease;
  position: relative;
}

.card-funciona:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.numero {
  font-size: 32px;
  font-weight: 700;
  color: #16a34a;
  display: block;
  margin-bottom: 10px;
}

.card-funciona h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card-funciona p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.texto-apoio {
  text-align: center;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.texto-apoio p {
  margin-bottom: 10px;
  color: #666;
}

.cta-funciona {
  text-align: center;
  margin-top: 40px;
}

.cta-funciona h3 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.cta-funciona p {
  margin-bottom: 20px;
  color: #666;
}

.btn-cta2 {
  display: inline-block;
  padding: 12px 30px;
  background: #02F7FF;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-cta2:hover {
  opacity: 0.8;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .grid-funciona {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 24px;
  }
  .cta-funciona h3 {
    font-size: 2.2rem;
  }
}

/* FOOTER MOBILE (ESCONDIDO NO DESKTOP) */
.footer-mobile {
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {

  /* ESCONDE FOOTER ORIGINAL */
  .footer {
    display: none;
  }

  /* MOSTRA FOOTER SIMPLIFICADO */
  .footer-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #0f2b50;
    color: #fff;
    padding: 50px 20px 20px;
    gap: 18px;
    border-radius: 30px 30px 0 0;
    margin: -30px 0;
    z-index: 10;
    position: relative;
  }

  .footer-mobile .empresa {
    font-weight: 700;
    font-size: 20px;
  }

  .footer-mobile .cnpj {
    font-size: 16px;
    color: #fff;
  }

  .logo-footer-mobile {
    width: 160px;
    margin: 10px 0;
  }

  .footer-mobile .slogan {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
  }

  .contatos-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
  }

  .contatos-mobile a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
  }

  .direitos {
    font-size: 14px;
    color: #aaa;
    margin-top: 20px;
  }
  .direitos::before {
    content: "";
    display: block;
    width: 100%; /* controla o tamanho da linha */
    height: 1px;
    background: #fff;
    margin: 0 auto 15px auto; /* centraliza */
  }
  .direitos strong {
    font-weight: 600;
  }
  .direitos span {
    color: #19c1ca;
  }
}