/* RESET */

* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



body {

  font-family: 'Inter', sans-serif;

  line-height: 1.6;

  background-color: #f9f9f9;

  color: #333;
  overflow-x: hidden;

}



html {

  scroll-behavior: smooth;

}



/* NAVBAR */

.navbar {

  position: sticky;

  top: 0;

  width: 100%;

  background: #fff;

  z-index: 999;

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);

}



.navbar .container {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 12px 30px;

  max-width: 1200px;

  margin: auto;

}



.logo img {

  height: 40px;

}



.nav-links {

  display: flex;

  list-style: none;

  gap: 25px;

}



.nav-links li a {

  text-decoration: none;

  color: #333;

  font-weight: 500;

  transition: color 0.3s ease;

}



.nav-links li a:hover {

  color: #25d366;

}



.nav-cta {

  background: #25d366;

  color: #fff !important;

  padding: 8px 16px;

  border-radius: 6px;

}



.menu-toggle {

  display: none;

  font-size: 24px;

  cursor: pointer;

  color: #333;

}



@media (max-width: 768px) {

  .nav-links {

    position: absolute;

    top: 64px;

    left: 0;

    width: 100%;

    background: #fff;

    flex-direction: column;

    display: none;

    padding: 20px 0;

    border-top: 1px solid #eee;

  }



  .nav-links.show {

    display: flex;

  }



  .menu-toggle {

    display: block;

  }

}



/* HERO SECTION */

.hero {

  position: relative;

  background-image: url('fundo.jpg');

  background-size: cover;

  background-position: center;

  height: 100vh;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

}



.hero-overlay {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: rgba(0, 0, 0, 0.5);

  z-index: 1;

}



.hero-content {

  position: relative;

  z-index: 2;

  max-width: 800px;

  padding: 20px;

  color: #fff;

}



.hero-content h1 {

  font-size: 2.8rem;

  margin-bottom: 20px;

}



.hero-content p {

  font-size: 1.2rem;

  margin-bottom: 30px;

}



.btn-cta {

  background-color: #25d366;

  color: #fff;

  text-decoration: none;

  padding: 14px 28px;

  font-size: 1rem;

  border-radius: 8px;

  transition: background 0.3s ease;

}



.btn-cta:hover {

  background-color: #1ebe5d;

}



/* PARA QUEM */

.para-quem {

  padding: 80px 20px;

  background-color: #fff;

  text-align: center;

}



.para-quem h2 {

  font-size: 2rem;

  margin-bottom: 40px;

  color: #222;

}



.para-quem .blocos {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;

  max-width: 1100px;

  margin: auto;

}



.bloco {

  background-color: #f5f5f5;

  padding: 30px 20px;

  border-radius: 12px;

  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);

  transition: transform 0.3s ease;

}



.bloco:hover {

  transform: translateY(-6px);

}



.bloco i {

  font-size: 36px;

  color: #25d366;

  margin-bottom: 20px;

}



.bloco p {

  font-size: 1rem;

  color: #333;

}



/* COMO AJUDAMOS */

.como-ajudamos {

  padding: 80px 20px;

  background-color: #f9f9f9;

  text-align: center;

}



.como-ajudamos h2 {

  font-size: 2rem;

  margin-bottom: 40px;

  color: #222;

}



.servicos-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;

  max-width: 1100px;

  margin: auto;

}



.servico {

  background-color: #fff;

  border-radius: 12px;

  padding: 30px 20px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

  transition: transform 0.3s ease;

}



.servico:hover {

  transform: translateY(-6px);

}



.servico i {

  font-size: 36px;

  color: #25d366;

  margin-bottom: 15px;

}



.servico h3 {

  font-size: 1.2rem;

  margin-bottom: 10px;

  color: #111;

}



.servico p {

  font-size: 0.95rem;

  color: #444;

}



/* DIFERENCIAIS V2 */

.diferenciais-v2 {

  padding: 80px 20px;

  background: linear-gradient(135deg, #e6f4ea, #f3fdf6);

}



.diferenciais-v2 h2 {

  text-align: center;

  font-size: 2rem;

  margin-bottom: 60px;

  color: #111;

}



.diferencial-linha {

  display: flex;

  align-items: flex-start;

  gap: 30px;

  margin-bottom: 40px;

  max-width: 1000px;

  margin-inline: auto;

}



.icone-diferencial {

  min-width: 70px;

  height: 70px;

  border-radius: 50%;

  background-color: #25d366;

  display: flex;

  align-items: center;

  justify-content: center;

}



.icone-diferencial i {

  font-size: 30px;

  color: white;

}



.texto-diferencial h3 {

  font-size: 1.2rem;

  margin-bottom: 10px;

  color: #222;

}



.texto-diferencial p {

  font-size: 0.95rem;

  color: #444;

  line-height: 1.6;

}



@media (max-width: 768px) {

  .diferencial-linha {

    flex-direction: column;

    text-align: center;

    align-items: center;

  }



  .icone-diferencial {

    margin-bottom: 10px;

  }

}



/* COMO FUNCIONA - GRID ESCALONADO */

.como-funciona-grid {

  padding: 80px 20px;

  background-color: #ffffff;

  text-align: center;

}



.como-funciona-grid h2 {

  font-size: 2rem;

  margin-bottom: 50px;

  color: #111;

}



.passos-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;

  max-width: 1100px;

  margin: auto;

}



.passo-card {

  background: #f5f5f5;

  border-radius: 12px;

  padding: 30px 20px;

  box-shadow: 0 5px 10px rgba(0,0,0,0.05);

  position: relative;

  transition: transform 0.3s ease;

}



.passo-card:hover {

  transform: translateY(-6px);

}



.numero-passo {

  position: absolute;

  top: -20px;

  left: 20px;

  width: 40px;

  height: 40px;

  background: #25d366;

  color: #fff;

  font-weight: bold;

  font-size: 1.2rem;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 4px 10px rgba(0,0,0,0.1);

}



.passo-card h3 {

  margin-top: 30px;

  font-size: 1.1rem;

  margin-bottom: 10px;

  color: #222;

}



.passo-card p {

  font-size: 0.95rem;

  color: #444;

  line-height: 1.5;

}







/* DEPOIMENTOS */

.depoimentos {

  padding: 80px 20px;

  background-color: #f9f9f9;

  text-align: center;

}



.depoimentos h2 {

  font-size: 2rem;

  margin-bottom: 50px;

  color: #111;

}



.depoimentos-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 30px;

  max-width: 1000px;

  margin: auto;

}



.depoimento {

  background: #fff;

  border-radius: 10px;

  padding: 25px 20px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.05);

  text-align: left;

  position: relative;

}



.perfil {

  width: 48px;

  height: 48px;

  border-radius: 50%;

  overflow: hidden;

  margin-bottom: 15px;

}



.perfil img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.perfil.letra {

  background-color: #25d366;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: bold;

  font-size: 1.1rem;

  color: #fff;

}



.depoimento p {

  font-size: 0.95rem;

  color: #333;

  line-height: 1.5;

  margin-bottom: 10px;

}



.depoimento strong {

  font-weight: 700;

}



.estrelas {

  color: #f6b200;

  font-size: 1.1rem;

}









/* FAQ */

.faq {

  padding: 80px 20px;

  background-color: #ffffff;

  text-align: center;

}



.faq h2 {

  font-size: 2rem;

  margin-bottom: 40px;

  color: #111;

}



.faq-item {

  max-width: 800px;

  margin: 0 auto 20px auto;

  text-align: left;

}



.faq-question {

  width: 100%;

  padding: 15px 20px;

  font-size: 1rem;

  font-weight: 600;

  border: none;

  background-color: #f5f5f5;

  border-radius: 8px;

  cursor: pointer;

  text-align: left;

  transition: background 0.3s ease;

}



.faq-question:hover {

  background-color: #e9f7ef;

}



.faq-answer {

  padding: 0 20px;

  max-height: 0;

  overflow: hidden;

  background: #f9f9f9;

  transition: max-height 0.4s ease;

  border-radius: 0 0 8px 8px;

}



.faq-answer p {

  font-size: 0.95rem;

  padding: 15px 0;

  color: #444;

}









/* SOBRE A BRUNA */

.sobre-bruna {

  padding: 80px 20px;

  background-color: #f9f9f9;

}



.sobre-content {

  display: flex;

  align-items: center;

  gap: 40px;

  max-width: 1100px;

  margin: auto;

  flex-wrap: wrap;

}



.logo-bruna {

  flex: 1 1 300px;

  text-align: center;

}



.logo-bruna img {

  max-width: 100%;

  height: auto;

}



.texto-bruna {

  flex: 2 1 500px;

}



.texto-bruna h2 {

  font-size: 2rem;

  margin-bottom: 20px;

  color: #111;

}



.texto-bruna p {

  font-size: 1rem;

  color: #444;

  line-height: 1.7;

  margin-bottom: 15px;

}



@media (max-width: 768px) {

  .sobre-content {

    flex-direction: column;

    text-align: center;

  }



  .texto-bruna h2 {

    font-size: 1.6rem;

  }

}







/* CTA FINAL */

.cta-final {

  background: linear-gradient(135deg, #1abc9c, #16a085);

  padding: 80px 20px;

  text-align: center;

  color: #fff;

}



.cta-final h2 {

  font-size: 2rem;

  margin-bottom: 20px;

  font-weight: bold;

}



.cta-final p {

  font-size: 1.1rem;

  margin-bottom: 30px;

  max-width: 700px;

  margin-left: auto;

  margin-right: auto;

}



.botao-whatsapp {

  background-color: #fff;

  color: #16a085;

  font-size: 1.2rem;

  font-weight: bold;

  padding: 18px 40px;

  border-radius: 50px;

  text-decoration: none;

  transition: all 0.3s ease;

  display: inline-block;

}



.botao-whatsapp:hover {

  background-color: #e0f7f5;

  color: #0e6251;

}



@media (max-width: 768px) {

  .cta-final h2 {

    font-size: 1.6rem;

  }



  .botao-whatsapp {

    font-size: 1rem;

    padding: 15px 30px;

  }

}





.footer-quality {

  background-color: #0c0c0c;

  color: #fff;

  padding: 40px 20px 20px;

  font-size: 14px;

}



.container-footer {

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  max-width: 1100px;

  margin: 0 auto;

  padding-bottom: 20px;

  border-bottom: 1px solid #333;

}



.logo-footer img {

  width: 120px;

}



.contato-footer h4 {

  color: #f1c40f;

  margin-bottom: 10px;

  font-size: 16px;

}



.contato-footer a {

  color: #fff;

  text-decoration: none;

}



.contato-footer a:hover {

  text-decoration: underline;

}



.copyright {

  text-align: center;

  padding-top: 15px;

  font-size: 13px;

}



.copyright strong {

  color: #f1c40f;

}



.footer-quality {

  background-color: #0c0c0c;

  color: #fff;

  padding: 40px 20px 20px;

  font-size: 14px;

}



.container-footer {

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  max-width: 1100px;

  margin: 0 auto;

  padding-bottom: 20px;

  border-bottom: 1px solid #333;

}



.logo-footer img {

  width: 120px;

}



.contato-footer h4 {

  color: #f1c40f;

  margin-bottom: 10px;

  font-size: 16px;

}



.contato-footer a {

  color: #fff;

  text-decoration: none;

}



.contato-footer a:hover {

  text-decoration: underline;

}



.social-icons a {

  color: #fff;

  font-size: 18px;

  margin-right: 12px;

}



.social-icons a:hover {

  color: #f1c40f;

}



.copyright {

  text-align: center;

  padding-top: 15px;

  font-size: 13px;

}



.copyright a {

  color: #f1c40f;

  text-decoration: none;

}









.btn-wpp-sessao {

  text-align: center;

  margin: 40px auto;

}



.btn-wpp-sessao a {

  display: inline-block;

  background-color: #25d366;

  color: white;

  font-weight: bold;

  font-size: 16px;

  padding: 15px 30px;

  border-radius: 8px;

  text-decoration: none;

  transition: background 0.3s ease;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

}



.btn-wpp-sessao a i {

  margin-right: 10px;

  font-size: 20px;

}



.btn-wpp-sessao a:hover {

  background-color: #1ebc5b;

}

/* --- SEÇÃO CERTIFICADOS PREMIUM COMPACTA --- */

.certificados-section {
  padding: 50px 20px; /* Reduzi de 100px para 50px */
  position: relative;
  background-color: #f0fdf4;
  overflow: hidden;
  text-align: center;
}

.bg-pattern {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0.4;
  background-image: radial-gradient(#25d366 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0; pointer-events: none;
}

.certificados-section .container {
  position: relative; z-index: 1;
  max-width: 1200px; /* Garante que cabe em telas padrão */
  margin: auto;
}

/* Header Compacto */
.tag-header {
  display: inline-block; background: #e1fcef; color: #0c9646;
  font-weight: 700; font-size: 0.75rem; padding: 5px 12px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 10px;
}

.cert-header h2 {
  font-size: 1.8rem; /* Fonte menor */
  color: #111; margin-bottom: 10px; font-weight: 800;
}

.cert-header p {
  color: #555; font-size: 1rem;
  max-width: 600px; margin: 0 auto 30px auto; /* Margem reduzida */
}

/* Grid Flex para tentar manter 5 na linha */
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px; /* Espaço menor entre cards */
  margin-bottom: 40px;
}

/* Card Premium Compacto */
.cert-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 15px; /* Padding interno MUITO menor */
  flex: 1 1 200px; /* Tenta caber 5, se não der, quebra */
  max-width: 230px; /* Limita a largura para não ficarem gigantes */
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; align-items: center;
}

.cert-card:hover {
  transform: translateY(-10px); /* Pulo ligeiramente menor */
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.15);
  border-color: #25d366;
}

/* Destaque Compacto */
.cert-card.popular {
  border: 2px solid #25d366;
  z-index: 2;
  /* Removi o scale para manter alinhamento compacto */
}

.ribbon {
  position: absolute; top: -10px;
  background: #25d366; color: white;
  font-size: 0.65rem; font-weight: 800;
  padding: 4px 10px; border-radius: 20px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* Ícone Giratório Compacto */
.icon-box {
  width: 50px; height: 50px; /* Ícone menor */
  background: #f0fff4; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 15px; font-size: 20px; color: #25d366;
  transition: 0.4s;
}

/* O EFEITO QUE VOCÊ GOSTOU */
.cert-card:hover .icon-box {
  background: #25d366; color: white;
  transform: rotateY(180deg); 
}

.cert-hours {
  font-size: 1.25rem; font-weight: 800; color: #222; margin-bottom: 5px;
  white-space: nowrap;
}

.cert-price {
  font-size: 1.8rem; font-weight: 800; color: #2c3e50;
  margin-bottom: 15px; display: flex; align-items: flex-start;
  justify-content: center; gap: 2px;
}

.cert-price small {
  font-size: 0.9rem; margin-top: 5px; font-weight: 600; color: #7f8c8d;
}

/* Botão Compacto */
.cert-btn {
  display: inline-block; padding: 10px 20px; font-size: 0.9rem;
  border: 2px solid #25d366; border-radius: 8px;
  text-decoration: none; color: #25d366; font-weight: 700;
  transition: 0.3s; width: 100%;
}

.cert-btn:hover, .cert-btn.btn-fill {
  background: #25d366; color: white;
}

/* Garantia Compacta */
.garantia-container {
  background: white; display: inline-flex; flex-wrap: wrap;
  gap: 20px; padding: 15px 30px; border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  justify-content: center; align-items: center;
}

.garantia-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: #555; font-weight: 600;
}

.garantia-item i { color: #25d366; font-size: 1.1rem; }

/* RESPONSIVIDADE */

/* Tablets menores: Talvez quebre para 3 em cima, 2 embaixo para não esmagar */
@media (max-width: 1024px) {
    .cert-card { flex: 1 1 30%; max-width: 45%; }
}

/* Mobile: Seção bem pequena */
@media (max-width: 768px) {
  .certificados-section { padding: 30px 15px; } /* Seção baixa no mobile */
  .cert-header h2 { font-size: 1.5rem; }
  .cert-header p { margin-bottom: 20px; }
  
  /* 1 card por linha no mobile para manter o estilo premium */
  .cert-card { max-width: 100%; } 
  .cert-grid { gap: 15px; margin-bottom: 25px;}

  .garantia-container { 
    flex-direction: column; border-radius: 15px;
    gap: 10px; padding: 15px; width: 100%;
  }
}