/* =============================================
   Busca Empregos Oficial — style.css
   ============================================= */

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

:root {
  --blue:      #1565C0;
  --blue-2:    #1976D2;
  --blue-light:#E3F2FD;
  --green:     #25D366;
  --green-dark:#128C7E;
  --bg:        #F8FAFF;
  --bg-dark:   #0D1B2A;
  --ink:       #0D1B2A;
  --ink-2:     #4A5568;
  --border:    #E2E8F0;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(21,101,192,0.10);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--ink); background: #fff; line-height: 1.6; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

/* ── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-primary  { background: var(--blue); color: #fff; }
.btn-secondary{ background: #fff; color: var(--blue); border: 2px solid var(--blue); }
.btn-whatsapp { background: var(--green); color: #fff; }
.btn-whatsapp:hover { background: var(--green-dark); }
.btn-lg  { padding: 15px 32px; font-size: 1.05rem; }
.btn-full{ width: 100%; justify-content: center; }

/* ── NAV ────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled { border-color: var(--border); box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.nav__inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.25rem; font-weight: 700; color: var(--ink);
}
.nav__logo strong { color: var(--blue); }
.logo-icon {
  width: 36px; height: 36px; background: var(--blue);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 0.9rem;
}
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { font-size: 0.9rem; font-weight: 500; color: var(--ink-2); transition: color 0.2s; }
.nav__links a:hover { color: var(--blue); }
.nav__cta { margin-left: 16px; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; margin-left: auto;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav__mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 24px 24px; background: #fff;
  border-top: 1px solid var(--border);
}
.nav__mobile.open { display: flex; }
.nav__mobile a { padding: 10px 0; font-weight: 500; border-bottom: 1px solid var(--border); }
.nav__mobile .btn { margin-top: 12px; }

/* ── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; position: relative;
  background: linear-gradient(135deg, #0D1B2A 0%, #1565C0 100%);
  padding-top: 68px;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__content {
  position: relative; z-index: 1; padding: 60px 0 40px;
  max-width: 720px;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); color: #fff;
  padding: 6px 14px; border-radius: 100px; font-size: 0.85rem;
  font-weight: 500; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.highlight { color: #FFD54F; }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 560px; }
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__social { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero__social span { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.social-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 100px; font-size: 0.85rem;
  font-weight: 600; color: #fff; transition: transform 0.2s;
}
.social-pill:hover { transform: translateY(-2px); }
.social-pill.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-pill.facebook  { background: #1877F2; }

.hero__stats { background: rgba(255,255,255,0.07); border-top: 1px solid rgba(255,255,255,0.1); padding: 28px 0; }
.hero__stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat__num { display: block; font-size: 1.5rem; font-weight: 800; color: #FFD54F; }
.stat__label { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ── SECTION HEADER ─────────────────────── */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.tag {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  padding: 4px 12px; border-radius: 100px; font-size: 0.8rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 12px;
}
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.section-header p { color: var(--ink-2); font-size: 1rem; }

/* ── SOBRE ──────────────────────────────── */
.sobre { background: var(--bg); }
.sobre__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sobre__img-inner {
  width: 100%; aspect-ratio: 1; max-width: 360px;
  background: linear-gradient(135deg, var(--blue), #42A5F5);
  border-radius: 24px; display: flex; align-items: center;
  justify-content: center; font-size: 5rem; color: rgba(255,255,255,0.3);
}
.sobre__content .tag { margin-bottom: 16px; }
.sobre__content h2 { margin-bottom: 16px; }
.sobre__content p { color: var(--ink-2); margin-bottom: 12px; }
.sobre__features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.feature { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; }
.feature i { color: var(--blue); font-size: 1rem; }

/* ── TRABALHADOR ────────────────────────── */
.trabalhador { background: #fff; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  width: 52px; height: 52px; background: var(--blue-light);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; color: var(--blue);
  margin-bottom: 16px;
}
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--ink-2); font-size: 0.9rem; }

.cta-box {
  text-align: center; background: var(--blue-light);
  border-radius: var(--radius); padding: 32px;
}
.cta-box p { font-size: 1.1rem; font-weight: 600; color: var(--blue); margin-bottom: 16px; }

/* ── EMPRESAS ───────────────────────────── */
.empresas { background: var(--bg-dark); }
.empresas .section-header .tag { background: rgba(255,255,255,0.1); color: #FFD54F; }
.empresas h2 { color: #fff; }
.empresas .section-header p { color: rgba(255,255,255,0.7); }
.empresa__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-bottom: 40px; }
.empresa__item {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  padding: 32px; transition: background 0.3s;
}
.empresa__item:hover { background: rgba(255,255,255,0.09); }
.empresa__num { font-size: 2.5rem; font-weight: 800; color: rgba(255,213,79,0.25); margin-bottom: 12px; }
.empresa__item h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.empresa__item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.empresas .cta-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.empresas .cta-box p { color: rgba(255,255,255,0.9); }

/* ── VAGAS / SOCIAL ─────────────────────── */
.vagas { background: #fff; }
.social__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.social__card {
  display: block; border-radius: var(--radius); padding: 40px 28px;
  text-align: center; color: #fff; transition: transform 0.3s, box-shadow 0.3s;
}
.social__card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.social__card i { font-size: 2.5rem; margin-bottom: 16px; }
.social__card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.social__card p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 20px; }
.social__btn { font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; gap: 6px; }
.social__card.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366); }
.social__card.facebook  { background: #1877F2; }
.social__card.whatsapp  { background: linear-gradient(135deg, #25D366, #128C7E); }

/* ── CTA FINAL ──────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, var(--blue), #42A5F5);
  padding: 80px 0; text-align: center;
}
.cta-final h2 { color: #fff; margin-bottom: 12px; }
.cta-final p  { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.05rem; }

/* ── CONTATO ────────────────────────────── */
.contato { background: var(--bg); }
.contato__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contato__info h2 { margin-bottom: 24px; }
.contato__item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 20px;
}
.contato__item i { font-size: 1.3rem; color: var(--blue); margin-top: 2px; min-width: 20px; }
.contato__item a { color: var(--blue); }
.contato__form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow);
}
.contato__form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.form__group { margin-bottom: 16px; }
.form__group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-2); }
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.2s; outline: none; background: var(--bg);
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--blue); background: #fff; }
.form__group textarea { resize: vertical; }

/* ── FOOTER ─────────────────────────────── */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer__brand .nav__logo { color: #fff; margin-bottom: 16px; }
.footer__brand p { font-size: 0.9rem; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: background 0.2s, color 0.2s;
}
.footer__social a:hover { background: var(--blue); color: #fff; }
.footer__links h4, .footer__contato h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer__links ul li { margin-bottom: 10px; }
.footer__links a { font-size: 0.9rem; transition: color 0.2s; }
.footer__links a:hover { color: #fff; }
.footer__contato p { font-size: 0.9rem; margin-bottom: 10px; display: flex; gap: 8px; align-items: center; }
.footer__contato i { color: var(--blue); min-width: 16px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; text-align: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
}

/* ── FLOAT WA ───────────────────────────── */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(37,211,102,0.5); }

/* ── REVEAL ANIMATION ───────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__img { display: none; }
  .cards { grid-template-columns: 1fr; }
  .empresa__grid { grid-template-columns: 1fr; }
  .social__grid { grid-template-columns: 1fr; }
  .contato__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero h1 { font-size: 1.8rem; }
  .hero__btns { flex-direction: column; }
  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Assets reais: vídeo hero, logo, foto do CEO ===== */
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero__bg {
  background: linear-gradient(135deg, rgba(13,27,42,0.90) 0%, rgba(21,101,192,0.72) 100%) !important;
  z-index: 1;
}
.hero__content { z-index: 2; }
.hero__stats { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }

.nav__logo-img { height: 42px; width: auto; display: block; }
.footer__logo-mark { width: 34px; height: 34px; object-fit: contain; }

.sobre__photo-wrap {
  position: relative; max-width: 380px; margin: 0; border-radius: 24px;
  overflow: hidden; box-shadow: 0 20px 50px rgba(13,27,42,0.22);
}
.sobre__photo { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.sobre__photo-wrap figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 20px 16px;
  background: linear-gradient(transparent, rgba(13,27,42,0.88)); color: #fff;
}
.sobre__photo-wrap figcaption strong { display: block; font-size: 1.05rem; font-weight: 700; }
.sobre__photo-wrap figcaption span { font-size: 0.85rem; color: #cbd5e0; }

@media (max-width: 768px) {
  .sobre__img { display: block !important; }      /* mostra a foto do fundador no mobile */
  .sobre__photo-wrap { max-width: 320px; margin: 0 auto 10px; }
  .nav__logo-img { height: 36px; }
}
