/* =====================
   VARIÁVEIS DE CORES
===================== */
:root {
  --cor-principal: #18618e;
  --cor-secundaria: #199b96;
  --gradiente: linear-gradient(to right, #18618e, #199b96, #e1b12b);
  --texto-escuro: #333;
  --cinza-claro: #f5f5f5;
}

/* Destaque da marca: usar mesma cor do botão do carrossel */
.brand-highlight {
  color: var(--cor-secundaria);
  font-weight: 700;
}

/* =====================
   RESET BÁSICO
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--texto-escuro);
  line-height: 1.6;
}

/* =====================
   HEADER
===================== */
header {
  background: #fff;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  color: var(--cor-principal);
  font-size: 1.6rem;
}

header h1 img {
  height: 70px;
  width: auto;
}

header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--cor-secundaria);
  font-weight: bold;
}

h3{
  color: var(--cor-principal);
}

header nav a:hover {
  color: var(--cor-principal);
}

/* =====================
   CARROSSEL
===================== */
.banner {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.banner-content {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
}

.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.banner-content p {
  max-width: 500px;
  margin-bottom: 20px;
}

.banner-content button {
  width: fit-content;
  padding: 12px 25px;
  background: var(--cor-secundaria);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}

.banner-content button:hover {
  opacity: 0.9;
}

/* =====================
   CONTADORES - VISUAL LIVRE
===================== */
.contadores {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.contador-box {
  padding: 10px 0;
}

.contador-box i {
  font-size: 2.2rem;
  color: var(--cor-secundaria);
  margin-bottom: 12px;
}

.contador-numero {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--cor-principal);
  line-height: 1.1;
}

.contador-texto {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #666;
  letter-spacing: 0.5px;
}



/* =====================
   TÍTULOS DE SESSÃO
===================== */
.section-title {
  margin-bottom: 30px;
}

.section-title h2 {
  color: var(--cor-principal);
  font-size: 2rem;
}

.section-title .linha {
  width: 80px;
  height: 4px;
  background: var(--gradiente);
  margin-top: 8px;
}

/* =====================
   SESSÕES
===================== */
section {
  padding: 60px 5%;
}

.sobre {
  background: #fff;
}

.servicos {
  background: var(--cinza-claro);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 1200px) {
  .servicos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
}

.card-actions {
  margin-top: auto;
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: #555;
  line-height: 1.4;
}

.card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cor-secundaria);
  font-weight: bold;
}

/* =====================
   LISTAS DE PONTOS (Pilares)
===================== */
.pontos {
  list-style: none;
  padding-left: 0;
}

.pontos li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: #555;
  line-height: 1.4;
}

.pontos li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cor-secundaria);
  font-weight: bold;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card i {
  font-size: 2.5rem;
  color: var(--cor-secundaria);
  margin-bottom: 15px;
  display: block;
}

.card h3 {
  color: var(--cor-principal);
  margin-bottom: 10px;
}

/* =====================
   PROVA SOCIAL
===================== */
.prova-social {
  background: #fff;
}

.depoimentos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.depoimento-card {
  background: var(--cinza-claro);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  position: relative;
}

.depoimento-card i {
  font-size: 2rem;
  color: var(--cor-secundaria);
  margin-bottom: 15px;
}

.depoimento-texto {
  font-style: italic;
  margin-bottom: 20px;
}

.depoimento-autor {
  font-weight: bold;
  color: var(--cor-principal);
}

.depoimento-cargo {
  font-size: 0.9rem;
  color: #777;
}

/* =====================
   PARCEIROS (CARROSSEL)
===================== */
.parceiros {
  background: #fff;
}

.parceiros-wrapper {
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.parceiros-track {
  display: flex;
  transition: transform 0.6s ease;
}

.parceiro-logo {
  flex: 0 0 25%; /* 4 por vez */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.parceiro-logo img {
  width: 200px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}

.parceiro-logo img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .parceiro-logo {
    flex: 0 0 50%; /* 2 por vez no mobile */
  }
}

@media (max-width: 480px) {
  .parceiro-logo img {
    width: 140px;
    height: 56px;
  }
}

/* =====================
   FAIXA DE DESTAQUE
===================== */
.destaque {
  background: var(--gradiente);
  color: #fff;
  text-align: center;
  padding: 50px 5%;
}

.destaque h2 {
  font-size: 2rem;
}

/* =====================
   FORMULÁRIO
===================== */
.contato {
  background: #fff;
}

.form-box {
  max-width: 600px;
  margin: auto;
}

.contato-logo {
  text-align: center;
  margin-bottom: 40px;
}

.contato-logo img {
  height: 160px;
  width: auto;
}

form input, form textarea, form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
}

form button {
  background: var(--cor-secundaria);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

/* =====================
   FOOTER
===================== */
footer {
  background: #000;
  color: #fff;
  padding: 50px 5%;
  text-align: left;
}

footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

footer h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: bold;
}

footer .footer-logo {
  margin-bottom: 30px;
}

footer .footer-logo img {
  height: 100px;
  width: auto;
}

footer .footer-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

footer .footer-text {
  font-size: 1rem;
  color: #ccc;
  max-width: 500px;
}

footer .footer-cta {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

footer .footer-cta:hover {
  background: #fff;
  color: #000;
}

footer .footer-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  border-top: 1px solid #333;
  padding-top: 40px;
}

footer .contact-item {
  display: flex;
  flex-direction: column;
}

footer .contact-label {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

footer .contact-info {
  font-size: 1.3rem;
  font-weight: bold;
}

footer .footer-copyright {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #666;
}

/* =====================
   RESPONSIVO
===================== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  header nav {
    margin-top: 10px;
  }

  .banner-content h2 {
    font-size: 2rem;
  }

  @media (max-width: 768px) {
    footer .footer-contact {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }
}

.btn-outline {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  border: 2px solid var(--cor-secundaria);
  color: var(--cor-secundaria);
  background: transparent;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: var(--cor-secundaria);
  color: #fff;
}

.card-actions {
  display: flex;
  justify-content: flex-end;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* espaço entre texto e seta */
}

.footer-minimal {
  background: #0f0f0f;
  color: #aaa;
  padding: 6px 20px 0px;
  text-align: center;
}

.footer-logo img {
  max-width: 160px;
  margin-bottom: 20px;
}

.footer-tagline {
  max-width: 480px;
  margin: 0 auto 25px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

.footer-contact {
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact .divider {
  color: #444;
}

.footer-copyright {
  font-size: 0.8rem;
  color: #555;
}
/* =====================
   SEÇÃO PILAR DETALHE
===================== */
.pilar-detalhe {
  padding: 60px 5%;
  line-height: 1.8;
}

.pilar-detalhe p {
  margin-bottom: 20px;
  color: #555;
  font-size: 1.05rem;
}

.pilar-detalhe h2 {
  color: var(--cor-principal);
  margin-bottom: 10px;
}

/* =====================
   DESTAQUE COM PADDING
===================== */
.destaque p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* =====================
   WHATSAPP FIXO
===================== */

  #whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  background: #25d366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform: scale(0.9);
}

#whatsapp img {
  width: 32px;
  height: 32px;
  display: block;
}

#whatsapp:hover {
  transform: scale(1.0);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}


/* =====================
   FORMULARIO CONTATO
===================== */

#formContato {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

#formContato input,
#formContato textarea {
  width: 100%;
  padding: 18px 20px;
  margin-bottom: 18px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

#formContato textarea {
  min-height: 140px;
  resize: vertical;
}

#formContato button {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
