* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0e0e0e;
    color: #fff;
}

/* Header */
.topo {
    position: fixed;
    width: 100%;
    background-color: #0e0e0e;
    padding: 1rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid #1f1f1f;
}

.topo .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.4rem;
    color: #00e1e1;
}

.menu {
    display: flex;
    gap: 2rem;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.menu a:hover {
    color: #00e1e1;
}

.hamburguer {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 100vh;
    background: url(img/laboratorio.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

@keyframes zooHero {
    to {
        opacity: 1;
    }

}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.btn {
    background-color: #00e1e1;
    color: #000;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background-color: #00c9c9;
}

/* TÍTULOS */
.titulo {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #00e1e1;
}

/* SEÇÃO SOLUÇÕES */
.solucoes,
.diferenciais {
    padding: 5rem 1rem;
    background-color: #121212;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.card {
    background: #1f1f1f;
    padding: 2rem;
    border-radius: 10px;
    width: 300px;
    color: #fff;
    transition: transform 0.4s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.card h3 {
    color: #00e1e1;
    margin-bottom: 0.8rem;
}

/* ============================= */
/* SEÇÕES ESTRATÉGICAS CONSULTORIA */
/* ============================= */

.problema,
.metodo,
.resultados,
.case {
  padding: 80px 0;
}

.problema {
  background: #f8fafc;
}

.metodo {
  background: #ffffff;
}

.resultados {
  background: #f1f5f9;
}

.case {
  background: #ffffff;
}

/* TITULOS DAS SEÇÕES */

.problema h2,
.metodo h2,
.resultados h2,
.case h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #0f172a;
}

/* GRID PADRÃO 3 COLUNAS */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARDS */

.grid-3 .card {
  padding: 30px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.grid-3 .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.grid-3 .card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e293b;
}

.grid-3 .card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* LISTA DE RESULTADOS */

.resultados-list,
.case ul {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.resultados-list li,
.case ul li {
  padding: 12px 0;
  font-size: 16px;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
}

.resultados-list li:last-child,
.case ul li:last-child {
  border-bottom: none;
}

/* TEXTO DO BLOCO CASE */

.case p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* ============================= */
/* RESPONSIVO */
/* ============================= */

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .problema,
  .metodo,
  .resultados,
  .case {
    padding: 60px 0;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .problema h2,
  .metodo h2,
  .resultados h2,
  .case h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .grid-3 .card {
    padding: 25px;
  }

  .resultados-list li,
  .case ul li {
    font-size: 15px;
  }
}

/* DIFERENCIAIS */
.lista {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: auto;
}

.lista li {
    background: #1f1f1f;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.05rem;
    transition: 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* ANIMAÇÃO SCROLL */
[data-anime] {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: 0.6s ease-out;
}

[data-anime].animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* DIFERENTES DIREÇÕES */
[data-anime="left"] {
    transform: translate3d(-40px, 0, 0);
}

[data-anime="top"] {
    transform: translate3d(0, -40px, 0);
}

.clientes {
    background: #121212;
    padding: 5rem 1rem;
    text-align: center;
}

.setores {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.setor {
    background-color: #1f1f1f;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    font-size: 1.05rem;
    color: #00e1e1;
    font-weight: 500;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.setor:hover {
    transform: translateY(-5px);
}

.depoimentos {
    padding: 5rem 1rem;
    background-color: #0e0e0e;
    text-align: center;
}

.depoimento-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.depoimento {
    background: #1f1f1f;
    border-left: 4px solid #00e1e1;
    padding: 2rem;
    border-radius: 8px;
    max-width: 320px;
    color: #ddd;
    font-style: italic;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.depoimento:hover {
    transform: translateY(-5px);
}

.depoimento h4 {
    color: #00e1e1;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsivo */
@media (max-width: 768px) {
    .depoimento {
        width: 100%;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .setor {
        width: 100%;
    }
}

/* RODAPÉ */
.rodape {
    background-color: #0e0e0e;
    padding: 3rem 1rem;
    text-align: center;
    border-top: 1px solid #1f1f1f;
}

.rodape p {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.rodape a {
    color: #00e1e1;
    text-decoration: none;
}

.rodape a:hover {
    text-decoration: underline;
}

/* ================================
   CTA FINAL
================================ */

.cta-final {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  text-align: center;
}

.cta-final .container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-final h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 35px;
}

.cta-final .btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ffffff;
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-final .btn:hover {
  background: #e2e8f0;
  transform: translateY(-3px);
}


/* WHATSAPP FIXO */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-button img {
    width: 32px;
    height: 32px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {

  .cta-final {
    padding: 70px 20px;
  }

  .cta-final h2 {
    font-size: 1.5rem;
  }

  .cta-final p {
    font-size: 1rem;
  }

  .cta-final .btn {
    width: 100%;
    padding: 14px;
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .card {
        width: 100%;
    }

    .lista li {
        font-size: 1rem;
    }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background: #0e0e0e;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        padding: 1rem;
    }

    .menu.ativo {
        display: flex;
    }

    .hamburguer {
        display: block;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll !important;
        background-size: cover;
        background-position: center top;
    }
}