/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 15px 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  z-index: 999;
  display: flex;
  justify-content: center;
}

.nav-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
}

.menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu li a {
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #d62828;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: url('banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

.btn-wpp {
  background-color: #25d366;
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.btn-wpp:hover {
  background-color: #1ebe5c;
}

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

  .hero p {
    font-size: 1rem;
  }

  .menu {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* Seções genéricas */
.section-bg {
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.section-white {
  background-color: #ffffff;
  padding: 80px 20px;
}

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

/* Títulos */
h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #222;
}

/* Sessão 2 – Serviços */
.servicos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.servico {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.servico i {
  font-size: 30px;
  color: #FBD109;
  margin-bottom: 15px;
  display: block;
}

.servico p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .servicos {
    grid-template-columns: 1fr;
  }
}


/* Sessão 3 – Por que contratar */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.grid div {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.grid i {
  font-size: 28px;
  color: #d62828;
  margin-bottom: 10px;
}

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


/* Sessão 4 – Clientes (carrossel) */
.carrossel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carrossel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.depoimento {
  min-width: 100%;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
}

.depoimento p {
  font-style: italic;
  margin-bottom: 10px;
}

.depoimento span {
  font-weight: bold;
  color: #333;
}

.estrelas {
  color: #FBD109;
  margin-bottom: 10px;
}



/* Sessão 5 – Quem Somos */
.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.texto {
  flex: 1 1 500px;
}

.imagem {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.carrossel-imagens {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
}

.slider {
  display: flex;
  width: 400%;
  transition: transform 0.5s ease-in-out;
}

.slider img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 12px;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
  font-size: 1.2rem;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

@media (max-width: 768px) {
  .flex {
    flex-direction: column-reverse;
    text-align: center;
  }

  .carrossel-imagens {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .slider img {
    width: 100%;
    height: auto;
  }
}


/* Sessão 6 – FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-pergunta {
  background-color: #e0e0e0;
  border: none;
  padding: 15px 20px;
  width: 100%;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.faq-pergunta:hover {
  background-color: #ccc;
}

.faq-resposta {
  display: none;
  padding: 15px 20px;
  background-color: #fff;
  border-left: 4px solid #d62828;
  border-radius: 0 0 6px 6px;
}

/* Sessão 7 – CTA final */
.section-destaque {
  background-color: #d62828;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.section-destaque h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

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

.btn-branco {
  background: white;
  color: #d62828;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn-branco:hover {
  background-color: #f5f5f5;
}

/* Botão WhatsApp em todas as seções (extra) */
.section-bg .btn-wpp,
.section-white .btn-wpp {
  margin-top: 30px;
  display: inline-block;
}

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

  .flex {
    flex-direction: column-reverse;
    text-align: center;
  }

  .flex img {
    margin-bottom: 20px;
  }
}.linha-do-tempo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.etapa {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 220px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.etapa i {
  font-size: 28px;
  color: #FBD109;
  margin-bottom: 10px;
}

.etapa p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #333;
}

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

.seta {
  font-size: 22px;
  color: #d62828;
}

@media (max-width: 768px) {
  .linha-do-tempo {
    flex-direction: column;
  }

  .seta i {
    transform: rotate(90deg);
  }
}



.cta-especialista {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
  color: #333;
  text-align: center;
  line-height: 1.6;
}

.section-bg .btn-wpp {
  margin-top: 10px;
  background-color: #25d366;
  color: white;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.section-bg .btn-wpp:hover {
  background-color: #1ebe5c;
}

.logo-especialista {
  max-width: 200px;
  margin: 20px auto;
  display: block;
}


.footer {
  background-color: #0d0d14;
  color: #fff;
  padding: 50px 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-bottom: 30px;
}

.footer-logo img {
  max-width: 160px;
}

.footer-contato h4 {
  color: #FBD109;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-contato p {
  margin: 5px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.footer-contato a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #FBD109;
}

/* Créditos finais */
.footer-credito {
  border-top: 1px solid #222;
  padding: 20px;
  text-align: center;
  font-size: 0.95rem;
  color: #ccc;
}

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

.footer-credito .heart {
  color: red;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-contato {
    align-items: center;
  }
}



.menu-toggle {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #333;
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    display: none;
    transition: all 0.3s ease;
  }

  nav.active {
    display: block;
  }

  .menu {
    flex-direction: column;
    padding: 15px 0;
    gap: 10px;
  }

  .menu li {
    text-align: center;
  }

  .menu li a {
    color: #333;
    font-weight: 500;
    display: block;
    padding: 10px;
  }

  #header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 999;
    padding: 10px 20px;
  }

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
