/* =========================================================
   Roberto Vilela — Página de Espera
   Identidade visual oficial: laranja #E86D25 + carvão + cinza claro
   ========================================================= */

:root {
  --orange: #e86d25;
  --orange-dark: #cf5c1a;
  --orange-light: #f2915a;
  --charcoal: #232323;
  --charcoal-2: #2c2c2c;
  --text-dark: #232323;
  --text-gray: #5c5c60;
  --bg-light: #eef0f1;
  --bg-card: #ffffff;
  --line: rgba(0, 0, 0, 0.08);
  --line-dark: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 6px 18px -8px rgba(20, 20, 20, 0.12);
  --shadow-lg: 0 24px 60px -24px rgba(20, 20, 20, 0.35);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-light);
  color: var(--text-gray);
  font-family: "Inter", -apple-system, "Segoe UI", sans-serif;
  min-height: 100vh;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero { flex: 1; }

h1, h2, h3, .brand-word {
  font-family: "Poppins", "Inter", sans-serif;
}

/* ---------- Topbar (carvão, como o site original) ---------- */

.topbar {
  background: var(--charcoal);
  padding: 1.1rem clamp(1.25rem, 4vw, 4rem);
}

.brand img { height: 34px; width: auto; display: block; }

.top-social a {
  color: #b9b9bc;
  font-size: 1.05rem;
  margin-left: 1.15rem;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
  display: inline-block;
}

.top-social a:hover { color: var(--orange); transform: translateY(-2px); }

/* ---------- Background atmosphere (seção clara) ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 4vw, 4rem) clamp(2.5rem, 5vw, 4rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(46rem 30rem at 108% -12%, rgba(232, 109, 37, 0.10), transparent 60%),
    radial-gradient(40rem 26rem at -10% 118%, rgba(35, 35, 35, 0.06), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner { max-width: 640px; }

.hero-photo {
  position: relative;
  width: 100%;
  max-width: 360px;
  justify-self: center;
}

.hero-photo-shape {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 20px;
  z-index: 0;
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 240px; margin: 0 auto 0.5rem; }
  .hero-photo-shape { top: -14px; left: -14px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem 0.4rem 0.7rem;
  border: 1px solid rgba(232, 109, 37, 0.35);
  border-radius: 999px;
  background: rgba(232, 109, 37, 0.08);
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(232, 109, 37, 0.55);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 109, 37, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(232, 109, 37, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 109, 37, 0); }
}

.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.14;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.hero h1 .accent { color: var(--orange); }

.hero .lead {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--text-gray);
  max-width: 640px;
  margin-bottom: 1.75rem;
}

.role-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}

.role-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.role-pill i { color: var(--orange); margin-right: 0.4rem; }

/* ---------- CTA buttons ---------- */

.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 3rem; }

.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 14px 28px -12px rgba(232, 109, 37, 0.55);
}

.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(232, 109, 37, 0.65); color: #fff; }

.btn-outline-line {
  border: 1px solid var(--line);
  color: var(--text-dark);
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--bg-card);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
  box-shadow: var(--shadow-sm);
}

.btn-outline-line:hover { border-color: var(--orange); color: var(--orange-dark); transform: translateY(-2px); }

/* ---------- Stats ---------- */

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  max-width: 440px;
  box-shadow: var(--shadow-sm);
}

.stat-cell {
  background: var(--bg-card);
  padding: 1.15rem 1.1rem;
  text-align: left;
}

.stat-num {
  font-family: "Poppins", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-gray);
  margin-top: 0.4rem;
  letter-spacing: 0.01em;
}

/* ---------- Contact strip ---------- */

.contact-strip {
  position: relative;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.25rem clamp(1.25rem, 4vw, 4rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-item { display: flex; gap: 0.85rem; align-items: flex-start; }

.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  font-size: 1.05rem;
}

.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-gray);
  margin-bottom: 0.2rem;
}

.contact-value {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-value:hover { color: var(--orange-dark); }

/* ---------- Footer (carvão) ---------- */

.site-footer {
  background: var(--charcoal);
  padding: 1.25rem clamp(1.25rem, 4vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  color: #9d9da0;
  font-size: 0.8rem;
}

.footer-social a {
  color: #9d9da0;
  margin-left: 1rem;
  font-size: 1rem;
  transition: color 0.2s var(--ease);
}

.footer-social a:hover { color: var(--orange); }

@media (max-width: 576px) {
  .stats-row { grid-template-columns: 1fr; }
  .top-social { display: none; }
}
