/* ============================================================
   EFFE CAPITAL — style.css
   Paleta:  #222e59 (navy) | #1a1a1a (black) | #007dc2 (blue) | #f2f2f2 (light)
   Fontes:  Albert Sans · Cormorant Garamond
   Logos:   LOGO1 (escuro, texto preto)  → fundos claros  (branco / #f2f2f2)
            LOGO2 (claro, texto branco)  → fundos escuros (navy / #1a1a1a)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #222e59;
  --black:  #1a1a1a;
  --blue:   #007dc2;
  --light:  #f2f2f2;
  --white:  #ffffff;
  --text:   #3d3d3d;
  --muted:  #666;

  --font-body:    'Albert Sans', sans-serif;
  --font-display: 'Cormorant Garamond', serif;

  --max-w: 1180px;
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --t:     0.32s var(--ease);
  --r:     5px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ── Tipografia ── */
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}
h2 em { font-style: italic; color: var(--blue); }

h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.45rem; }
h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
p  { font-size: 0.94rem; color: var(--muted); line-height: 1.75; }

.label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
}

/* ── Botões ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--r);
  border: 2px solid transparent;
  transition: background var(--t), border-color var(--t), color var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--blue);  color: var(--white); border-color: var(--blue);  }
.btn--primary:hover { background: var(--navy); border-color: var(--navy); }
.btn--ghost   { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--dark    { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--dark:hover { background: var(--blue); border-color: var(--blue); }
.btn--full { width: 100%; text-align: center; }

/* ── Animações ── */
[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible { opacity: 1; transform: none; }


/* ============================================================
   NAV
   Sempre sobre fundo escuro (hero + scroll → preto)
   → logo-light (LOGO2) sempre visível; logo-dark oculto
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t), box-shadow var(--t);
}
.nav .logo-dark  { display: none;  }
.nav .logo-light { display: block; }
.nav.scrolled {
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.28);
}
/* Após scroll fundo continua escuro → logo claro permanece */
.nav.scrolled .logo-dark  { display: none;  }
.nav.scrolled .logo-light { display: block; }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 2rem;
}
.nav__logo img { height: 34px; object-fit: contain; }

.nav__links { display: flex; align-items: center; gap: 1.8rem; }
.nav__links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: color var(--t);
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.48rem 1.2rem;
  border-radius: var(--r);
  font-weight: 600 !important;
}
.nav__cta:hover { background: var(--navy) !important; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--t);
}
.nav__mobile {
  display: none; flex-direction: column;
  background: rgba(26,26,26,0.98);
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s ease;
}
.nav__mobile.open { display: flex; max-height: 320px; }
.nav__mobile a {
  color: rgba(255,255,255,0.78); font-size: 0.95rem;
  padding: 0.82rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t);
}
.nav__mobile a:hover { background: rgba(255,255,255,0.06); color: var(--white); }


/* ============================================================
   HERO — fundo escuro (foto mountain + gradient overlay)
   Textos brancos. Sem logo (na nav).
   ============================================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1.00); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    130deg,
    rgba(26,26,26,0.85) 0%,
    rgba(34,46,89,0.68) 55%,
    rgba(0,125,194,0.25) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 2rem; padding-top: 7rem;
  animation: fadeUp 0.85s 0.2s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hero__eyebrow {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1.1rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 400; color: var(--white);
  line-height: 1.12; margin-bottom: 1.3rem;
}
.hero__title em { font-style: italic; color: #a8c8e8; }
.hero__sub {
  font-size: 1.02rem; color: rgba(255,255,255,0.72);
  max-width: 560px; margin-bottom: 0.9rem; line-height: 1.75;
}
.hero__parceira {
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  margin-bottom: 2.2rem; letter-spacing: 0.02em;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
}
.hero__scroll span {
  display: block; width: 1.5px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(0.4); opacity: 0.4; }
  50%     { transform: scaleY(1);   opacity: 1; }
}


/* ============================================================
   STRIP — fundo navy
   ============================================================ */
.strip { background: var(--navy); padding: 2.2rem 2rem; }
.strip__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 0;
}
.strip__item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0.8rem 3rem; flex: 1; min-width: 160px;
}
.strip__item strong {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 600;
  color: var(--white); line-height: 1; margin-bottom: 0.3rem;
}
.strip__item span { font-size: 0.77rem; color: rgba(255,255,255,0.55); letter-spacing: 0.03em; }
.strip__divider { width: 1px; height: 44px; background: rgba(255,255,255,0.14); flex-shrink: 0; }


/* ============================================================
   DIAGNÓSTICO — fundo branco
   CTA principal. Sem logo.
   ============================================================ */
.diagnostico {
  padding: 6rem 2rem;
  background: var(--white);
  border-bottom: 1px solid rgba(34,46,89,0.07);
}
.diagnostico__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center;
}
.diagnostico__texto h2 { margin-bottom: 1.1rem; }
.diagnostico__texto p  { max-width: 520px; margin-bottom: 1.8rem; }
.diagnostico__icone {
  width: 140px; height: 140px; flex-shrink: 0; opacity: 0.7;
}
.diagnostico__icone svg { width: 100%; height: 100%; }


/* ============================================================
   QUEM SOU — fundo #f2f2f2
   Card esquerdo com LOGO1 (escuro) sobre fundo claro ✓
   ============================================================ */
.quem { padding: 7rem 2rem; background: var(--light); }
.quem__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 380px 1fr;
  gap: 5rem; align-items: center;
}
/* Foto ocupa coluna inteira, sem logo abaixo */
.quem__foto-col { display: flex; flex-direction: column; }
.quem__foto-wrap {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 12px 48px rgba(34,46,89,0.18);
}
.quem__foto-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.quem__texto h2   { margin-bottom: 0.5rem; }
.quem__nome       { font-size: 1rem; font-weight: 600; color: var(--blue); margin-bottom: 1.6rem; letter-spacing: 0.02em; }
.quem__lista      { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.quem__lista li {
  font-size: 0.93rem; color: var(--text); line-height: 1.6;
  padding-left: 1.4rem; position: relative;
}
.quem__lista li::before {
  content: '';
  position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%;
}


/* ============================================================
   SERVIÇOS — fundo navy escuro
   Cards com borda azul no hover. Textos claros.
   ============================================================ */
.servicos { padding: 7rem 2rem; background: var(--navy); }
.servicos__inner { max-width: var(--max-w); margin: 0 auto; }
.servicos__header { margin-bottom: 3.5rem; }
.servicos__header h2 { color: var(--white); margin-top: 0.3rem; }
.servicos__header h2 em { color: #a8c8e8; }

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.servico-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 2rem 1.8rem;
  position: relative; overflow: hidden;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.servico-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.servico-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.servico-card:hover::after { transform: scaleX(1); }
.servico-card__icon { width: 42px; height: 42px; color: var(--blue); margin-bottom: 1rem; }
.servico-card__icon svg { width: 100%; height: 100%; }
.servico-card h3 { color: var(--white); }
.servico-card p  { color: rgba(255,255,255,0.58); font-size: 0.88rem; }


/* ============================================================
   DIFERENCIAIS — fundo branco
   ============================================================ */
.diferenciais { padding: 7rem 2rem; background: var(--white); }
.diferenciais__inner { max-width: var(--max-w); margin: 0 auto; }
.diferenciais__header { margin-bottom: 3.5rem; }

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.diferencial-card {
  border: 1px solid rgba(34,46,89,0.09);
  border-radius: var(--r);
  padding: 2.2rem;
  transition: box-shadow var(--t), transform var(--t);
  position: relative; overflow: hidden;
}
.diferencial-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--blue);
  transform: scaleY(0); transform-origin: top;
  transition: transform var(--t);
}
.diferencial-card:hover { box-shadow: 0 8px 32px rgba(34,46,89,0.09); transform: translateY(-3px); }
.diferencial-card:hover::before { transform: scaleY(1); }
.diferencial-card__topo { margin-bottom: 1.2rem; }
.diferencial-card__topo h3 { margin-bottom: 0.4rem; }
.diferencial-card ul {
  list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
}
.diferencial-card li {
  font-size: 0.9rem; color: var(--text);
  padding-left: 1.2rem; position: relative;
}
.diferencial-card li::before {
  content: '';
  position: absolute; left: 0; top: 0.52em;
  width: 5px; height: 5px;
  background: var(--blue); border-radius: 50%;
}


/* ============================================================
   PROPOSTA DE VALOR — fundo navy
   Sem logo. Textos claros.
   ============================================================ */
.proposta { padding: 6rem 2rem; background: var(--navy); }
.proposta__inner { max-width: var(--max-w); margin: 0 auto; }
.proposta__header { margin-bottom: 3rem; }
.proposta__header h2 { color: var(--white); }
.proposta__header h2 em { color: #a8c8e8; }

.proposta__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  overflow: hidden;
}
.proposta-item {
  padding: 2rem 1.6rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--t);
}
.proposta-item:last-child { border-right: none; }
.proposta-item:hover { background: rgba(255,255,255,0.05); }
.proposta-item__num {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 300;
  color: var(--blue); line-height: 1; margin-bottom: 0.8rem;
}
.proposta-item h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 0.95rem; }
.proposta-item p  { color: rgba(255,255,255,0.55); font-size: 0.85rem; }


/* ============================================================
   MÉTODO — fundo #f2f2f2
   ============================================================ */
.metodo { padding: 7rem 2rem; background: var(--light); }
.metodo__inner { max-width: var(--max-w); margin: 0 auto; }
.metodo__header { margin-bottom: 3.5rem; max-width: 700px; }

.metodo__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
/* Linha conectora */
.metodo__steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(50% / 5); right: calc(50% / 5);
  height: 1px;
  background: linear-gradient(to right, var(--blue), rgba(34,46,89,0.25));
  z-index: 0;
}
.metodo-step {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 1rem; position: relative; z-index: 1;
}
.metodo-step__num {
  width: 56px; height: 56px;
  background: var(--navy); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 400;
  margin-bottom: 1.2rem;
  border: 3px solid var(--blue);
  box-shadow: 0 0 0 6px var(--light);
  transition: background var(--t), transform var(--t);
}
.metodo-step:hover .metodo-step__num {
  background: var(--blue); transform: scale(1.08);
}
.metodo-step__linha { display: none; }
.metodo-step h4 { color: var(--navy); font-size: 0.9rem; margin-bottom: 0.35rem; }
.metodo-step p  { font-size: 0.84rem; }


/* ============================================================
   CONTATO — fundo branco
   ============================================================ */
.contato { padding: 7rem 2rem; background: var(--white); }
.contato__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contato__texto h2 { margin-bottom: 1.1rem; }
.contato__texto > p { margin-bottom: 1.2rem; }
.contato__email-direto { font-size: 0.9rem; }
.contato__email-direto a { color: var(--blue); font-weight: 600; transition: color var(--t); }
.contato__email-direto a:hover { color: var(--navy); }

.contato__form {
  background: var(--light);
  border-radius: 8px;
  padding: 2.4rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.form__group { display: flex; flex-direction: column; gap: 0.35rem; }
.form__group label {
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy);
}
.form__group input,
.form__group textarea {
  font-family: var(--font-body); font-size: 0.92rem;
  color: var(--black); background: var(--white);
  border: 1.5px solid rgba(34,46,89,0.12);
  border-radius: var(--r); padding: 0.7rem 1rem;
  outline: none; resize: vertical;
  transition: border-color var(--t);
}
.form__group input:focus,
.form__group textarea:focus { border-color: var(--blue); }
.form__sucesso {
  font-size: 0.88rem; color: var(--navy);
  background: rgba(0,125,194,0.08);
  border: 1px solid rgba(0,125,194,0.2);
  border-radius: var(--r);
  padding: 1rem 1.2rem;
  line-height: 1.6;
}


/* ============================================================
   FOOTER — fundo #1a1a1a (preto)
   LOGO2 claro sobre preto ✓
   ============================================================ */
.footer {
  background: var(--black);
  padding: 3rem 2rem;
  text-align: center;
}
.footer__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.2rem;
}
/* Fundo preto → LOGO2 claro, legível ✓ */
.footer__logo { max-height: 38px; object-fit: contain; }
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.32); }


/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .proposta__grid { grid-template-columns: repeat(3, 1fr); }
  .proposta-item:nth-child(3) { border-right: none; }
  .proposta-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); }
  .proposta-item:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.1); border-right: none; }

  .metodo__steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .metodo__steps::before { display: none; }

  .quem__inner { grid-template-columns: 300px 1fr; gap: 3.5rem; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .diagnostico__inner { grid-template-columns: 1fr; }
  .diagnostico__icone { display: none; }

  .quem__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .quem__foto-wrap { max-width: 320px; margin: 0 auto; aspect-ratio: 3/4; }

  .servicos__grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais__grid { grid-template-columns: 1fr; }
  .proposta__grid { grid-template-columns: repeat(2, 1fr); }
  .proposta-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .proposta-item:last-child { border-bottom: none; }

  .metodo__steps { grid-template-columns: 1fr 1fr; }

  .contato__inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 640px) {
  .hero__actions { flex-direction: column; }
  .strip__inner { flex-direction: column; gap: 0; }
  .strip__divider { width: 60%; height: 1px; }
  .servicos__grid { grid-template-columns: 1fr; }
  .proposta__grid { grid-template-columns: 1fr; }
  .metodo__steps { grid-template-columns: 1fr; }
  .quem__foto-wrap { max-width: 260px; }
}
