/* =====================================================
   CENTRAL REFORMA – style.css
   Mobile-first, Red+Blue+White palette
   ===================================================== */

/* ---- CSS VARIABLES --------------------------------- */
:root {
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-light: #fef2f2;
  --blue: #1e3a5f;
  --blue-mid: #2563eb;
  --blue-light: #eff6ff;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green: #22c55e;
  --gold: #ffdd57;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --transition: 0.22s ease;
}

/* ---- RESET & BASE ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CONTAINER ------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- SECTION HELPERS ------------------------------- */
.section { padding: 72px 0; }
.section--gray { background: var(--gray-50); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---- BUTTONS --------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  border-radius: 9px;
  padding: 13px 24px;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--lg { padding: 16px 32px; font-size: 1.05rem; border-radius: 11px; }

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(220,38,38,.35);
}
.btn--primary:hover { background: var(--red-dark); box-shadow: 0 8px 28px rgba(220,38,38,.45); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn--outline:hover { background: rgba(255,255,255,.12); }

.btn--white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
}
.btn--white:hover { box-shadow: 0 8px 28px rgba(0,0,0,.22); background: var(--gray-50); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); }

/* ---- TOP BAR --------------------------------------- */
.topbar {
  background: var(--blue);
  color: var(--white);
  font-size: .82rem;
  padding: 9px 0;
  z-index: 1000;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__text { color: rgba(255,255,255,.7); }
.topbar__contacts { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 500;
  transition: color var(--transition);
}
.topbar__link:hover { color: var(--gold); }
.topbar__phone {
  background: var(--red);
  padding: 4px 12px;
  border-radius: 6px;
  transition: background var(--transition);
}
.topbar__phone:hover { background: var(--red-dark); color: var(--white); }

/* ---- HEADER ---------------------------------------- */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 1px 0 var(--gray-200);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo__badge {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(220,38,38,.3);
}
.logo__badge--sm { width: 40px; height: 40px; }
.logo__years { color: var(--white); font-size: 18px; font-weight: 900; line-height: 1; }
.logo__years-text { color: var(--gold); font-size: 7px; font-weight: 700; letter-spacing: .05em; line-height: 1; }
.logo__text { display: flex; flex-direction: column; }
.logo__brand { font-size: 1.2rem; font-weight: 400; color: var(--blue); letter-spacing: -.01em; }
.logo__brand strong { font-weight: 900; }
.logo__sub { font-size: .7rem; color: var(--gray-400); font-weight: 500; letter-spacing: .03em; }

/* NAV */
.nav { display: flex; align-items: center; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav__link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--blue); background: var(--blue-light); }
.nav__link--cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 9px;
  box-shadow: 0 3px 12px rgba(220,38,38,.3);
}
.nav__link--cta:hover { background: var(--red-dark) !important; box-shadow: 0 5px 18px rgba(220,38,38,.4); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  background: var(--gray-100);
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO ------------------------------------------ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,22,40,.88) 0%,
    rgba(30,58,95,.75) 50%,
    rgba(10,22,40,.55) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  max-width: 760px;
}
.hero__badge-top { margin-bottom: 28px; }
.seal { display: inline-block; }
.seal__svg { width: 110px; height: 110px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }

.hero__title {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero__title-accent {
  background: linear-gradient(90deg, #ff6b6b, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.75;
}
.hero__subtitle strong { color: var(--white); }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- STATS BAR ------------------------------------- */
.stats-bar {
  background: var(--blue);
  padding: 36px 0;
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 40px;
  text-align: center;
}
.stat-item__num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
}
.stat-item__label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  margin-top: 4px;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.15);
}

/* ---- DIFERENCIAIS ---------------------------------- */
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.card-dif {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-dif:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-dif__icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-dif__icon--red { background: var(--red-light); color: var(--red); }
.card-dif__icon--blue { background: var(--blue-light); color: var(--blue); }
.card-dif__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.card-dif__desc { color: var(--gray-600); font-size: .92rem; line-height: 1.7; }

/* ---- SERVIÇOS -------------------------------------- */
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}
.card-srv {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.card-srv:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-srv__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--gray-100);
}
.card-srv__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.card-srv__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
}
.card-srv__list {
  padding: 16px 24px 22px;
  list-style: none;
}
.card-srv__list li {
  padding: 7px 0;
  font-size: .88rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.card-srv__list li:last-child { border-bottom: none; }
.card-srv__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.servicos__cta {
  text-align: center;
  margin-top: 48px;
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--gray-200);
}
.servicos__cta p {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 18px;
  font-weight: 500;
}

/* ---- SOBRE ----------------------------------------- */
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sobre__media { position: relative; }
.sobre__img-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.sobre__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.sobre__seal-wrapper {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
}
.sobre__seal { width: 110px; height: 110px; filter: drop-shadow(0 4px 16px rgba(0,0,0,.25)); }

.sobre__title { text-align: left; margin-bottom: 0; }
.sobre__text {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .97rem;
}
.sobre__text strong { color: var(--blue); }
.sobre__text em { color: var(--red); font-style: normal; font-weight: 600; }
.sobre__badges { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.sobre__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-800);
}

/* ---- PROCESSO -------------------------------------- */
.processo__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.step__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  opacity: .18;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -.03em;
}
.step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.step__desc { font-size: .88rem; color: var(--gray-600); line-height: 1.65; }
.step__arrow {
  flex-shrink: 0;
  padding: 0 8px;
  opacity: .6;
}

/* ---- DEPOIMENTOS ----------------------------------- */
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 52px;
}
.card-dep {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.card-dep:hover { transform: translateY(-3px); }
.card-dep__stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.card-dep__text {
  color: var(--gray-600);
  font-size: .92rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.card-dep__author { display: flex; align-items: center; gap: 12px; }
.card-dep__avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.card-dep__name { display: block; font-weight: 700; font-size: .9rem; color: var(--blue); }
.card-dep__local { font-size: .78rem; color: var(--gray-400); }

/* SELOS */
.garantia-selos {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 36px;
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37,99,235,.1);
}
.selo-garantia {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 220px;
}
.selo-garantia strong { display: block; font-size: .9rem; font-weight: 700; color: var(--blue); margin-bottom: 2px; }
.selo-garantia span { font-size: .8rem; color: var(--gray-600); }

/* ---- CTA FINAL ------------------------------------- */
.cta-final {
  background: linear-gradient(135deg, var(--blue) 0%, #0f2040 100%);
  padding: 80px 0;
}
.cta-final__inner { text-align: center; }
.cta-final__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.cta-final__title-accent { color: #ff8080; }
.cta-final__desc {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-final__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---------------------------------------- */
.footer {
  background: var(--gray-900);
  padding: 60px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__tagline {
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  margin-top: 14px;
  line-height: 1.6;
  max-width: 280px;
}
.footer__col-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer__list li { margin-bottom: 10px; }
.footer__list a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__list a:hover { color: var(--white); }
.footer__bottom {
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ---- WHATSAPP FLOATING BUTTON ---------------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 3s infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
  animation: none;
}
.whatsapp-fab__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray-900);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.whatsapp-fab__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--gray-900);
}
.whatsapp-fab:hover .whatsapp-fab__tooltip { opacity: 1; }

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===================================================
   RESPONSIVE
   =================================================== */

/* Tablet */
@media (max-width: 900px) {
  .sobre__inner { grid-template-columns: 1fr; gap: 48px; }
  .sobre__img { height: 320px; }
  .sobre__seal-wrapper { bottom: -16px; right: -8px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .stat-item { padding: 10px 24px; }
  .stat-divider { height: 32px; }
}

/* Mobile */
/* ---- SCROLL REVEAL --------------------------------- */
.reveal-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  /* Topbar */
  .topbar__text { display: none; }
  .topbar__contacts { gap: 10px; }
  .topbar__link:not(.topbar__phone) { display: none; }

  /* Header */
  .header__inner { padding-top: 12px; padding-bottom: 12px; }
  .logo__badge { width: 42px; height: 42px; }
  .logo__years { font-size: 14px; }
  .logo__brand { font-size: 1rem; }

  /* Nav Mobile */
  .nav__list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 800;
    padding: 80px 24px 40px;
  }
  .nav__list.open { display: flex; }
  .nav__link { font-size: 1.2rem; }
  .nav__toggle { display: flex; z-index: 810; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__content { padding: 80px 20px 60px; }
  .seal__svg { width: 86px; height: 86px; }
  .hero__actions { flex-direction: column; }
  .btn--lg { padding: 15px 24px; font-size: 1rem; }
  .hero__trust { gap: 10px; }

  /* Stats */
  .stats-bar__inner { flex-direction: column; gap: 6px; }
  .stat-divider { width: 40px; height: 1px; }

  /* Sections */
  .section { padding: 52px 0; }

  /* Cards */
  .diferenciais__grid,
  .servicos__grid,
  .depoimentos__grid { grid-template-columns: 1fr; }

  /* Processo */
  .processo__steps { flex-direction: column; align-items: stretch; }
  .step { min-width: unset; max-width: unset; }
  .step__arrow { transform: rotate(90deg); align-self: center; }

  /* Sobre */
  .sobre__title { font-size: 1.6rem; }
  .sobre__seal { width: 86px; height: 86px; }

  /* Garantia selos */
  .garantia-selos { flex-direction: column; padding: 24px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  /* FAB */
  .whatsapp-fab { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}
