/* ── Variáveis ───────────────────────────────────────────── */
:root {
  --navy:   #0f1f7a;
  --navy2:  #0a1550;
  --red:    #ff0000;
  --white:  #ffffff;
  --gray:   #f4f4f4;
  --text:   #333333;
  --edge-inset: max(24px, calc((100vw - 1180px) / 2.6 + 24px));
}

/* ── Reset / Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Muli', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Utilitários ─────────────────────────────────────────── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-block; padding: 15px 34px;
  background: var(--red); color: var(--white);
  font-size: .9rem; font-weight: 700;
  border: none; border-radius: 999px; cursor: pointer; transition: opacity .2s, transform .15s;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }

/* ── HEADER ──────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  padding: 16px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo { height: 76px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 24px; }
.header__nav a { font-size: .95rem; font-weight: 700; color: #1a1a1a; }
.header__nav a:hover { color: var(--navy); }
.header__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); display: inline-block; }
.header__cta { background: var(--red); color: var(--white); padding: 10px 22px; border-radius: 999px; font-size: .9rem; font-weight: 700; }
.header__burger { display: none; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--white) url('../assets/img/hero-banner.jpg') top center / cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}
.hero__content { max-width: 620px; margin-left: var(--edge-inset); padding: 60px 24px 60px 0; }
.hero__title { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 900; text-transform: uppercase; line-height: 1.15; margin-bottom: 20px; }
.hero__title .navy { color: var(--navy); }
.hero__title .red { color: var(--red); }
.hero__sub { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.hero__tags { font-size: .95rem; color: var(--navy); margin-bottom: 32px; }
.hero__tags strong { font-weight: 700; }

/* ── INTRO CARD ──────────────────────────────────────────── */
.intro { background: linear-gradient(180deg, #2c4fd6, var(--navy)); padding: 60px 0; }
.intro__card {
  background: var(--white); border-radius: 16px;
  padding: 40px; display: grid; grid-template-columns: 1fr 1px 1fr; gap: 32px; align-items: center;
}
.intro__title { color: var(--red); font-size: 1.5rem; font-weight: 900; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.intro__title img { width: 28px; }
.intro__text { font-size: .95rem; line-height: 1.6; color: var(--text); }
.intro__divider { background: #ddd; height: 100%; }
.intro__list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.intro__list li { list-style: none; font-size: .95rem; font-weight: 700; color: var(--navy); display: flex; align-items: baseline; gap: 8px; }
.intro__list li::before { content: '●'; color: var(--red); font-size: .6rem; }

/* ── PARA SUA EMPRESA ────────────────────────────────────── */
.empresa { background: var(--navy); padding: 60px 0 70px; }
.empresa__title { color: var(--red); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; text-transform: uppercase; margin-bottom: 16px; }
.empresa__sub { color: var(--white); font-size: .95rem; line-height: 1.6; margin-bottom: 40px; max-width: 720px; }
.empresa__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 20px; }
.empresa__grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin: 0 auto 40px; }
.b2b-card { background: var(--white); border-radius: 10px; overflow: hidden; }
.b2b-card img {
  width: 100%;
  aspect-ratio: 250 / 158;   /* area com foto dentro do PNG 250x324 */
  object-fit: cover;
  object-position: top;      /* a foto fica no topo; o resto e transparente */
  display: block;
}
.b2b-card__body { padding: 18px 16px; }
.b2b-card__title { color: var(--red); font-size: .95rem; font-weight: 800; margin-bottom: 8px; }
.b2b-card__desc { font-size: .82rem; color: var(--text); line-height: 1.55; }
.empresa__cta { text-align: center; }

/* ── PARA VOCÊ ───────────────────────────────────────────── */
.voce { background: var(--gray); padding: 60px 0; text-align: center; }
.voce__title { color: var(--red); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 16px; }
.voce__sub { font-size: .95rem; color: var(--text); max-width: 760px; margin: 0 auto 40px; }
.voce__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.b2c-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.b2c-card img {
  width: 100%;
  aspect-ratio: 305 / 182;   /* area com foto dentro do PNG 305x359 */
  object-fit: cover;
  object-position: top;
  display: block;
}
.b2c-card__body { padding: 18px; text-align: center; }
.b2c-card__title { color: var(--red); font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.b2c-card__desc { font-size: .85rem; color: var(--text); line-height: 1.6; }

/* ── DEPOIMENTOS ─────────────────────────────────────────── */
.depoimentos { background: var(--white); padding: 70px 0; }
.depoimentos__title { color: var(--red); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 8px; }
.depoimentos__sub { font-size: .95rem; color: var(--text); margin-bottom: 40px; }
.depoimentos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.depo-card { background: var(--navy); border-radius: 12px; padding: 40px 24px 24px; text-align: center; position: relative; color: var(--white); }
.depo-card__avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin: -60px auto 16px; border: 3px solid var(--white); }
.depo-card__text { font-size: .85rem; line-height: 1.6; font-style: italic; margin-bottom: 16px; }
.depo-card__name { font-weight: 800; font-size: .9rem; }
.depo-card__role { font-size: .78rem; opacity: .8; }

/* ── CONTATO ─────────────────────────────────────────────── */
.contato { background: var(--navy) url('../assets/img/bg-azul2.jpg') center / cover no-repeat; padding: 70px 0; }
.contato__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contato__title { color: var(--white); font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 900; line-height: 1.2; margin-bottom: 32px; }
.contato__regiao { margin-bottom: 20px; }
.contato__regiao strong { color: var(--white); display: block; margin-bottom: 6px; font-size: .95rem; }
.contato__regiao a { color: #cfe0ff; font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.contato__actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.btn--whatsapp { background: #25d366; display: inline-flex; align-items: center; gap: 8px; }

.form-box { background: transparent; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-grid input, .form-grid select, .form-full textarea, .form-full select {
  width: 100%; padding: 14px 16px; font-family: 'Muli', sans-serif; font-size: .9rem;
  background: #fff; border: none; border-radius: 6px; outline: none;
}
.form-full { margin-bottom: 12px; }
.form-full textarea { min-height: 90px; resize: vertical; }
.form-disclaimer { font-size: .78rem; color: rgba(255,255,255,.75); line-height: 1.5; margin-top: 12px; }
.form__msg { margin-top: 12px; font-size: .9rem; display: none; }
.form__msg--ok  { color: #6ee7b7; }
.form__msg--err { color: #fca5a5; }

/* ── PARCEIROS ───────────────────────────────────────────── */
.parceiros { background: var(--white); padding: 60px 0 70px; text-align: center; }
.parceiros__title { color: var(--red); font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 900; margin-bottom: 8px; }
.parceiros__sub { font-size: .9rem; color: var(--text); margin-bottom: 40px; }
.parceiros__grid { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.parceiros__grid img { max-height: 56px; width: auto; object-fit: contain; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--navy2); padding: 24px 0; text-align: center; }
.footer p { font-size: .78rem; color: rgba(255,255,255,.6); }
.footer a { color: rgba(255,255,255,.8); text-decoration: underline; }

/* ── WhatsApp Flutuante ──────────────────────────────────── */
.btn-wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.5); transition: transform .2s;
}
.btn-wa-float:hover { transform: scale(1.08); }
.btn-wa-float img { width: 32px; }

/* ── RESPONSIVO ──────────────────────────────────────────── */
@media (max-width: 1023px) {
  .empresa__grid { grid-template-columns: repeat(2, 1fr); }
  .voce__grid, .depoimentos__grid { grid-template-columns: 1fr; }
  .intro__card { grid-template-columns: 1fr; }
  .intro__divider { display: none; }
  .contato__inner { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .header__nav { display: none; }
  /* header fica sticky; no mobile o logo maior comeria viewport demais */
  .header__logo { height: 56px; }
  .hero { background-image: none; background-color: var(--navy); min-height: auto; padding-top: 40px; }
  .hero__content { margin-left: 0; padding: 40px 24px; }
  .hero__title .navy { color: var(--white); }
  .empresa__grid { grid-template-columns: 1fr; }
  .empresa__grid--3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .parceiros__grid { gap: 28px; }
  .parceiros__grid img { max-height: 40px; }
}
