  --coral: #ef6b57;
  --darkblue: #0e4f66;
  --text: #111;
  --white: #fff;
  --container: 1200px;
  --coral-dark: #d65444;
  --cinza: #f3f3f3;
  --dark: #4a4a4a;
  --container: 1200px;
}

* {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* ================= SESSÃO 1 ================= */

.sessao1 {
  background: #fff;
  padding: 80px 0 60px;
  text-align: center;
}

.s1-header{
    z-index:0;
}

.s1-header h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.s1-header p {
  font-size: 20px;
  margin-bottom: 10px;
}

/* CARDS */
.cards-servicos {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #fff;
  width: 320px;
  padding: 40px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.icon-circle {
  width: 100px;
  height: 100px;
  background: var(--coral);
  border-radius: 50%;
  margin: -80px auto 20px;
  z-index:10px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}



.card button {
  background: var(--coral);
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  margin-top: auto;
}

.card button:hover {
  background: var(--coral-dark);
}

/* ================= SESSÃO 2 ================= */ 

.sessao2 {
  position: relative;
  background: url("../arquivos/3_Servicos/consultoria.png") center/cover no-repeat;
  padding: 140px 0;
  color: #fff;
  z-index: 0; /* cria contexto */
}

.sessao2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4, 76, 94, 0.619),
    rgba(14, 87, 102, 0.548),
    rgba(8, 120, 151, 0.715),
    rgba(14, 72, 88, 0.857)
  );
  z-index: 0; /* 👈 atrás do conteúdo */
}

.s2-content {
  position: relative;
  z-index: 1; /* 👈 texto acima do overlay */
}
.s2-header .sub {
  font-size: 14pt;
  letter-spacing: 1px;
}

.s2-header h2 {
  font-size: 40pt;
  margin: 10px 0 20px; 
}

.s2-header .line {
  width: 780px;
  height: 2px;
  background: #fff;
  margin-bottom: 60px;
}

/* steps */
.steps {
  display: flex;
  gap: 40px;
}

.step {
  max-width: 320px;
}

.step h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step p {
  font-size: 16px;
  line-height: 1.6;
}

/* ================= RESPONSIVO ================= */

@media (max-width: 900px) {
  .sessao2 {
    padding: 100px 0;
  }

  .s2-header h2 {
    font-size: 34px;
  }

  .steps {
    flex-direction: column; /* empilha um abaixo do outro */
    gap: 30px;
  }

  .step {
    max-width: 100%; /* ocupa largura total */
  }
}

@media (max-width: 480px) {
  .s2-header h2 {
    font-size: 28px;
  }

  .step h4 {
    font-size: 18px;
  }

  .step p {
    font-size: 15px;
  }
}




/* ================= SESSÃO 4 ================= */

.sessao4 {
  display: flex;
  min-height: 600px;
  margin-bottom: 70px;
}

.left-agenda {
  flex: 1;
  background: #555;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  z-index: 1;
}

.agenda-content {
  max-width: 350px;
}

.agenda-content h2 {
  font-size: 42px;
  line-height: 1.2;
}

.line {
  width: 120px;
  height: 3px;
  background: #fff;
  margin: 20px 0;
}

.right-form {
  flex: 1.2;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  right: 10%;
}

.form-agenda {
  background: var(--coral);
  padding: 40px;
  width: 700px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.form-agenda label {
  color: #fff;
  font-size: 16pt;
  display: block;
  margin: 10px 0 5px;
}

.form-agenda input,
.form-agenda select,
.form-agenda textarea {
  width: 100%;
  padding: 10px;
  border: none;
  margin-bottom: 10px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.btn-enviar {
  background: #333;
  color: #fff;
  border: none;
  padding: 7px 20px;
  cursor: pointer;
  font-size: 14pt;
}
.btn-enviar:hover {
  background: #555;
}
button img {
  align-items: center;
  justify-content: center; 
  margin: 0 8px;
}

/* ================= MOBILE SESSAO 4 ================= */

@media (max-width: 900px) {
  .sessao4 {
    flex-direction: column; /* empilha */
    min-height: auto;
  }

  .left-agenda {
    width: 100%;
    height: 100vw;
    padding: 60px 25px 120px; /* espaço para o card sobrepor */
    text-align: left;
  }

  .agenda-content {
    max-width: 100%;
  }

  .agenda-content h2 {
    font-size: 36px;
  }

  .right-form {
    width: 100%;
    right: 0; /* remove deslocamento */
    margin-top: -80px; /* faz sobreposição suave */
    padding: 0 20px;
  }

  .form-agenda {
    width: 100%;
    padding: 30px 20px;
  }

  .grid-2 {
    grid-template-columns: 1fr; /* 1 coluna no mobile */
  }
}




/* ==========================================
   SERVICOS - ESTILOS MOBILE (max-width: 768px)
   ========================================== */
/* Re-declaração de variáveis para garantir que funcionem */
:root { 
    --coral: #ef6b57;
    --coral-dark: #d65444;
    --white: #fff; }
    /* ================= SESSÃO 1 (HERO + CARDS) ================= */
    .sessao1 { 
        padding: 60px 0 40px;
        } 
        .s1-header h2 { 
            margin-top: 90px;
            font-size: 28px; 
            /* Reduzido de 40pt*/ 
            margin-bottom: 5px;
            } 
            
            
            .s1-header p { 
                font-size: 15px; /* Reduzido de 20pt */
                margin-bottom: 10px;
                padding: 0 14px; /* Espaço lateral para não colar na borda */ }


/* Cards em coluna única */
.cards-servicos {
  flex-direction: column;
  align-items: center;
  gap: 50px; /* Espaço entre os cards */
}

.card {
  width: 90%; /* Largura adaptável */
  max-width: 380px; /* Limite de largura para não ficar enorme */
  padding: 30px 20px 20px;
}

/* Ícone proporcional */
.icon-circle {
  width: 80px;
  height: 80px;
  margin: -70px auto 20px; /* Ajuste da sobreposição */
}

.card h3 {
  font-size: 18px;
}

.card p {
  font-size: 13px;
}

.card button {
  font-size: 14px;
  padding: 12px 0;
}

/* ================= SESSÃO 2 (COMO FUNCIONA) ================= */
.sessao2 {
  padding: 80px 0;
  /* Garante que a imagem de fundo cubra bem em mobile */
  background-position: center;
  background-attachment: scroll; /* Remove parallax que buga em mobile */
}

.s2-header {
  text-align: center;
  padding: 0 20px;
}

.s2-header .sub {
  font-size: 12px;
}

.s2-header h2 {
  font-size: 26px; /* Reduzido de 40pt */
  margin: 10px 0 15px;
}

/* Linha centralizada e curta */
.s2-header .line {
  width: 60px;
  margin: 0 auto 40px;
}

/* Passos em coluna */
.steps {
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}

.step {
  max-width: 90%;
}

.step h4 {
  font-size: 18px;
}

.step p {
  font-size: 14px;
}

/* ================= SESSÃO 3 (LIMPA E CORRIGIDA) ================= */
.sessao3 {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}

.titulo-centro {
  font-size: 28px;
  margin-bottom: 50px;

}

/* CARDS */
.cards-top {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
gap: 50px 20px; 

  margin-top: 30px;
  

}

/* CARD MINI */
.card-mini,
.card-grande {
  background: #fff;
  width: 320px;
  padding: 40px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  text-align: center;
}

/* ÍCONE IGUAL SESSÃO 1 (NUNCA CORTADO) */
.card-mini .icon-circle,
.card-grande .icon-circle {
  width: 90px;
  height: 90px;
  background: var(--coral);
  border-radius: 50%;
  margin: -60px auto 20px;
  position: relative;
  z-index: 2;
}

/* TEXTO */
.card-mini p,
.card-grande ul {
  font-size: 14px;
  margin-bottom: 20px;
  color: #444;
}

/* BOTÃO */
.card-mini a,
.card-grande a {
  background: var(--coral);
  color: #fff;
  padding: 12px;
  text-decoration: none;
  width: 100%;
  display: block;

}

.card-mini a:hover,
.card-grande a:hover {
  background: var(--coral-dark);
}

.card ul.lista-servicos {
  padding: 0;
  margin: 0 0 1.0rem 0;
  text-align: left;
}

.card ul.lista-servicos li {
  position: relative;
  /*padding-left: 0.6rem;*/
  margin-bottom: 0.75rem;
  margin-left: 0.3rem;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #444;
  line-height: 1.6;
}
.recaptcha-box {
    width: 100%;
    overflow: hidden;
}

.recaptcha-box .g-recaptcha {
    transform: scale(0.85);
    transform-origin: left top;
}

@supports (-webkit-touch-callout: none) {

  *{
    font-family: 'Poppins', sans-serif !important;
  }

}

