/* ===== RESET & VARIÁVEIS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C97E;
  --gold-dark:   #A07830;
  --gold-glow:   rgba(201,168,76,.18);
  --dark:        #0E0E16;
  --dark-2:      #161622;
  --dark-3:      #1E1E2E;
  --text:        #2A2A38;
  --text-2:      #4A4A5E;
  --text-light:  #8888A0;
  --white:       #FFFFFF;
  --off-white:   #FAF9F6;
  --light-bg:    #F3F1EC;
  --border:      #E8E4DC;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow:      0 4px 24px rgba(0,0,0,.07);
  --shadow-lg:   0 16px 56px rgba(0,0,0,.13);
  --shadow-gold: 0 8px 32px rgba(201,168,76,.28);
}

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

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--dark  { background: var(--dark-2); color: var(--white); }
.section--light { background: var(--light-bg); }

/* ===== SECTION HEADER ===== */
.section__header { text-align: center; max-width: 620px; margin: 0 auto 68px; }

.section__tag {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.28);
  padding: 5px 16px; border-radius: 100px;
  margin-bottom: 18px;
}
.section__tag--light { background: rgba(201,168,76,.14); border-color: rgba(201,168,76,.32); }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.12;
  color: var(--text); margin-bottom: 16px;
}
.section__title em { font-style: italic; color: var(--gold); }
.section__title--light { color: var(--white); }

.section__desc { font-size: 17px; color: var(--text-light); line-height: 1.75; }

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all .22s ease; white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn--gold:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-2px); box-shadow: var(--shadow-gold);
}
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: background .35s, backdrop-filter .35s, padding .35s, box-shadow .35s;
}
.header--scrolled {
  background: rgba(14,14,22,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
  padding: 13px 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo-wrap {
  display: flex; align-items: center;
}
.logo { height: 48px; width: auto; filter: none; transition: height .3s; }
.header--scrolled .logo { height: 40px; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8); letter-spacing: .02em; transition: color .2s; }
.nav a:hover { color: var(--gold); }
.nav__cta {
  display: flex !important; align-items: center; gap: 8px;
  background: var(--gold) !important; color: var(--dark) !important;
  padding: 10px 22px; border-radius: var(--radius); font-weight: 600 !important;
  transition: all .2s !important;
}
.nav__cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.nav-toggle { display: none; background: none; border: none; color: white; font-size: 26px; cursor: pointer; line-height: 1; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px; overflow: hidden;
  background: var(--dark);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: .22;
  filter: grayscale(30%);
}
.hero__bg-logo {
  object-fit: contain;
  object-position: center center;
  opacity: .07;
  filter: none;
  padding: 8%;
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(14,14,22,.97) 0%,
    rgba(14,14,22,.86) 45%,
    rgba(14,14,22,.55) 100%
  );
}
/* Padrão geométrico decorativo no hero */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(201,168,76,.06) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(201,168,76,.04) 0%, transparent 40%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.hero__eyebrow {
  font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before {
  content: ''; display: block;
  width: 36px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 600; line-height: 1.06;
  color: var(--white); margin-bottom: 26px;
  letter-spacing: -.01em;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: 18px; line-height: 1.75;
  color: rgba(255,255,255,.65);
  max-width: 540px; margin-bottom: 44px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px; }
.hero__badges {
  display: flex; align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 22px 36px; width: fit-content;
}
.badge { text-align: center; padding: 0 32px; }
.badge:first-child { padding-left: 0; }
.badge__num {
  display: block; font-family: var(--font-serif);
  font-size: 2.4rem; font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: 5px;
}
.badge__label { font-size: 12px; color: rgba(255,255,255,.45); letter-spacing: .04em; }
.badge__divider { width: 1px; height: 44px; background: rgba(255,255,255,.12); flex-shrink: 0; }

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.35);
  animation: bounce 2s ease-in-out infinite;
  transition: color .2s;
}
.hero__scroll:hover { color: var(--gold); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== STRIP ===== */
.strip { background: var(--gold); padding: 15px 0; }
.strip__inner {
  display: flex; align-items: center; gap: 12px;
  color: var(--dark); font-size: 14px; font-weight: 500;
}
.strip__inner svg { flex-shrink: 0; }

/* ===== ÁREAS ===== */
.areas__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 24px; }

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 38px 32px;
  display: flex; flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  opacity: 0; transform: translateY(24px);
}
.area-card.visible { opacity: 1; transform: translateY(0); }
.area-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

.area-card__icon {
  width: 58px; height: 58px;
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.22);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.area-card__icon svg { width: 30px; height: 30px; stroke: var(--gold); }
.area-card__title {
  font-family: var(--font-serif); font-size: 1.55rem; font-weight: 600;
  color: var(--text); margin-bottom: 12px; line-height: 1.2;
}
.area-card__desc { font-size: 15px; color: var(--text-2); line-height: 1.68; margin-bottom: 22px; }
.area-card__list { list-style: none; margin-bottom: 28px; flex: 1; }
.area-card__list li {
  font-size: 14px; color: var(--text-light);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.area-card__list li:last-child { border-bottom: none; }
.area-card__list li::before {
  content: ''; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%; flex-shrink: 0;
}
.area-card__link {
  font-size: 14px; font-weight: 600; color: var(--gold);
  display: inline-flex; align-items: center; gap: 4px; margin-top: auto;
  transition: gap .2s;
}
.area-card__link:hover { gap: 8px; }

/* ===== SOBRE (WHY) ===== */
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why__desc { font-size: 17px; color: rgba(255,255,255,.6); margin-bottom: 44px; line-height: 1.8; }

.pillars { display: flex; flex-direction: column; gap: 28px; }
.pillar { display: flex; gap: 18px; align-items: flex-start; }
.pillar__icon {
  width: 46px; height: 46px; min-width: 46px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.25);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.pillar__icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.pillar h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 5px; }
.pillar p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; }

.why__image-col { display: flex; flex-direction: column; gap: 20px; }
.why__img-frame {
  position: relative;
  border-radius: var(--radius-xl); overflow: hidden;
}
.why__img-frame::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201,168,76,.2);
  pointer-events: none;
}
.why__gold-line {
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.why__img {
  width: 100%; height: 480px;
  object-fit: cover; object-position: top;
  display: block;
}
.why__img-frame.no-img {
  height: 480px;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark) 100%);
  display: flex; align-items: center; justify-content: center;
}
.why__img-frame.no-img::before {
  content: 'CELMA BAIANO\00A0ADVOGADOS';
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 600;
  color: rgba(201,168,76,.3);
  text-align: center; white-space: pre-line;
  letter-spacing: .08em;
}

.why__stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why__stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 22px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.why__stat:last-child { border-right: none; }
.why__stat-num {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.why__stat-label { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.4; }

/* ===== PROCESSO ===== */
.process__steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start;
}
.step {
  padding: 36px 28px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s, transform .4s, box-shadow .25s;
}
.step.visible { opacity: 1; transform: translateY(0); }
.step:hover { box-shadow: var(--shadow); }
.step__num {
  font-family: var(--font-serif); font-size: 3.2rem; font-weight: 600;
  color: rgba(201,168,76,.18); line-height: 1; margin-bottom: 14px;
}
.step__title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.step__desc { font-size: 14px; color: var(--text-light); line-height: 1.65; }

.step__connector {
  display: flex; align-items: center; justify-content: center;
  padding: 0 8px; padding-top: 56px;
}
.step__connector span {
  display: block; width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ===== EQUIPE ===== */
.team__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-bottom: 56px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .28s, box-shadow .28s, border-color .28s;
  opacity: 0; transform: translateY(20px);
}
.team-card.visible { opacity: 1; transform: translateY(0); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.team-card--featured { border-color: rgba(201,168,76,.3); }

.team-card__photo {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
}
.team-card__photo img {
  width: 100%; height: 300px;
  object-fit: cover; object-position: top;
  transition: transform .4s ease;
  display: block;
}
.team-card--featured .team-card__photo img { height: 340px; }
.team-card:hover .team-card__photo img { transform: scale(1.05); }

/* Fallback elegante quando sem foto */
.team-card__photo.no-photo img { display: none; }
.team-card__photo-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
}
.team-card__photo-fallback span {
  font-family: var(--font-serif);
  font-size: 4rem; font-weight: 600;
  color: rgba(201,168,76,.35); letter-spacing: .05em;
}
.team-card__photo:not(.no-photo) .team-card__photo-fallback {
  display: none;
}

.team-card__info { padding: 26px 28px; }
.team-card__info h3 {
  font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600;
  color: var(--text); margin-bottom: 4px;
}
.team-card__oab {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: .08em; text-transform: uppercase;
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.2);
  padding: 3px 10px; border-radius: 100px; margin-bottom: 12px;
}
.team-card__info p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

.team__group-photo {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border);
}
.team__group-photo img {
  width: 100%; max-height: 460px;
  object-fit: cover; object-position: center 30%;
  display: block;
}

/* ===== PROBLEMAS ===== */
.problems__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin-bottom: 56px;
}
.problem-item {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: border-color .22s, background .22s, transform .22s;
  opacity: 0; transform: translateY(16px);
}
.problem-item.visible { opacity: 1; transform: translateY(0); }
.problem-item:hover { border-color: var(--gold); background: rgba(201,168,76,.04); transform: translateY(-2px); }
.problem-item__icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.problem-item p { font-size: 15px; color: var(--text-2); line-height: 1.58; }
.problem-item p strong { color: var(--text); }

.problems__cta {
  text-align: center;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius-xl); padding: 52px 32px;
}
.problems__cta p { font-size: 18px; color: var(--white); margin-bottom: 30px; line-height: 1.7; }
.problems__cta p strong { color: var(--gold); }

/* ===== CONTATO ===== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact__desc { font-size: 17px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 40px; }
.contact__channels { display: flex; flex-direction: column; gap: 14px; }
.contact__channel {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  transition: border-color .2s, background .2s;
}
.contact__channel:hover { border-color: rgba(201,168,76,.4); background: rgba(201,168,76,.05); }
.contact__channel-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: rgba(255,255,255,.08);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--white); flex-shrink: 0;
}
.contact__channel-icon--green { background: #25D366; }
.contact__channel div:last-child { display: flex; flex-direction: column; }
.contact__channel strong { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.contact__channel span { font-size: 14px; color: rgba(255,255,255,.5); }

/* Form */
.contact__form {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 44px 40px; box-shadow: var(--shadow-lg);
}
.contact__form h3 {
  font-family: var(--font-serif); font-size: 1.55rem; font-weight: 600;
  color: var(--text); margin-bottom: 30px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; letter-spacing: .02em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 15px;
  color: var(--text); background: var(--white);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.14);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }

.form-privacy {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  text-align: center; font-size: 12px; color: var(--text-light); margin-top: 14px;
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); }
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 48px; padding: 72px 24px 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__logo { height: 46px; margin-bottom: 18px; }
.footer__brand p { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 220px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: background .2s, color .2s;
}
.footer__social a:hover { background: var(--gold); color: var(--dark); }

.footer__links { display: flex; flex-direction: column; }
.footer__links h4 { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer__links a,
.footer__links span { font-size: 14px; color: rgba(255,255,255,.4); padding: 5px 0; transition: color .2s; line-height: 1.5; }
.footer__links a:hover { color: var(--gold); }

.footer__bottom { padding: 22px 24px; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,.25); }
.footer__disclaimer { font-style: italic; text-align: right; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  background: #25D366; color: white;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  transition: transform .22s, box-shadow .22s;
  animation: fadeInUp .5s .8s ease both;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,.55); }
@keyframes fadeInUp { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: translateY(0); } }

/* ===== ANIMAÇÕES ===== */
.area-card       { transition-delay: calc(var(--i, 0) * 80ms); }
.problem-item    { transition-delay: calc(var(--i, 0) * 50ms); }
.step            { transition-delay: calc(var(--i, 0) * 120ms); }

/* ===== RESPONSIVO ===== */
@media (max-width: 1100px) {
  .process__steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .step__connector { display: none; }
}
@media (max-width: 960px) {
  .why__grid { grid-template-columns: 1fr; gap: 52px; }
  .why__image-col { order: -1; }
  .why__img { height: 360px; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 52px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(14,14,22,.97); backdrop-filter: blur(12px);
    padding: 24px; gap: 18px; border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav--open { display: flex; }
  .nav-toggle { display: block; }
  .hero__badges { flex-direction: column; gap: 20px; padding: 22px; }
  .badge { padding: 0; text-align: left; }
  .badge__divider { width: 48px; height: 1px; }
  .team__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__disclaimer { text-align: center; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 16px; border-radius: 50%; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .process__steps { grid-template-columns: 1fr; }
  .why__stats { grid-template-columns: 1fr 1fr; }
  .why__stat:last-child { grid-column: span 2; border-right: none; border-top: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 480px) {
  .areas__grid, .problems__grid { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 20px; }
  .hero__title { font-size: 2.6rem; }
  .hero__badges { display: none; }
  .footer__inner { grid-template-columns: 1fr; }
}
