/* =========================================================
   CONCRECIA — Site institucional
   Componentes específicos do site (extende colors_and_type.css)
   ========================================================= */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--primary); }

/* =========================================================
   ACCENT TEXT READABILITY OVERRIDES
   Light backgrounds need a darker yellow for AA contrast.
   These rules force the readable shade on text-only accent uses.
   Dark backgrounds (.section--dark, .page-head--dark, .hero, .cta-strip, etc.)
   continue using --accent (#F5C518) because contrast against navy is fine.
   ========================================================= */
.section-eyebrow:not(.section--dark .section-eyebrow):not(.hero .section-eyebrow):not(.page-head--dark .section-eyebrow):not(.cta-strip .section-eyebrow),
.featured-hero__cat,
.featured-hero__tag,
.article-card__cat,
.blog-card__cat,
.editorial-eyebrow .num,
.post-head__category,
.post-section-num,
.testimonial__quote::before,
.svc-block__eyebrow,
.value-item__num,
.channel__num,
.info-card .label,
.faq-section__num,
.featured__cat {
  color: var(--c-yellow-700);
}
/* Section-eyebrow scoped: dark contexts keep bright yellow */
.section--dark .section-eyebrow,
.page-head--dark .section-eyebrow,
.hero__eyebrow,
.cta-strip .section-eyebrow,
.svc-section--dark .svc-block__eyebrow,
.inline-cta__title .accent { color: var(--accent); }

/* =========================================================
   LAYOUT — container + grid
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--narrow { max-width: 1100px; }
.container--wide   { max-width: 1640px; }

.section {
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(48px, 6vw, 88px);
}
.section--tight { padding-top: 56px; padding-bottom: 56px; }
.section--dark {
  background: var(--c-navy-950);
  color: var(--fg-inverse);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark .lead { color: var(--c-white); }
.section--dark p { color: var(--c-stone-300); }
.section--dark .eyebrow { color: var(--accent); }

.section--paper { background: var(--c-paper); }
.section--stone { background: var(--c-stone-100); }

/* =========================================================
   ANNOUNCE BAR — top-most thin strip
   ========================================================= */
.announce {
  background: var(--c-navy-950);
  color: var(--c-stone-300);
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  height: 36px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.announce__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-6);
  width: 100%;
}
.announce__left, .announce__right {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.announce a {
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur-fast) var(--ease-out);
}
.announce a:hover { color: var(--accent); }
.announce__dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
@media (max-width: 720px) {
  .announce__right .hide-mobile { display: none; }
}

/* =========================================================
   HEADER — fixed, white, horizontal nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: var(--s-6);
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-shrink: 0;
}
.site-header__mark {
  width: 38px; height: 38px;
  color: var(--accent);
  flex-shrink: 0;
}
.site-header__wordmark {
  height: 18px;
  width: auto;
  color: var(--primary);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.site-nav a {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--c-stone-700);
  position: relative;
  padding: 8px 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.site-nav a:hover { color: var(--primary); }
.site-nav a.is-active {
  color: var(--primary);
}
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
}
.site-header__cta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-shrink: 0;
}
.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--c-stone-700);
  letter-spacing: var(--ls-wide);
}
.site-header__phone svg { color: var(--accent); }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  padding: 0;
}
.menu-toggle:hover { background: var(--c-stone-100); }

/* embeds (mapa, video) nunca estouram a largura no mobile */
iframe { max-width: 100%; }

@media (max-width: 1080px) {
  .site-nav { display: none; }
  .site-header__phone { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header__inner { height: 72px; }
  /* botao de orcamento do header sai no mobile: drawer + barra inferior ja oferecem o CTA */
  .site-header__cta .btn { display: none; }
}
@media (max-width: 640px) {
  .site-header__cta .btn--ghost { display: none; }
  .site-header__wordmark { display: none; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--c-navy-950);
  color: var(--c-white);
  z-index: 200;
  transform: translateY(-100%);
  transition: transform var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-drawer__close {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--c-white);
  width: 44px; height: 44px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 32px var(--gutter);
  gap: 4px;
}
.mobile-drawer__nav a {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: 28px;
  letter-spacing: var(--ls-display);
  color: var(--c-white);
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-drawer__nav a:hover { color: var(--accent); }
.mobile-drawer__nav a .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: var(--fw-regular);
  color: var(--c-stone-400);
  letter-spacing: var(--ls-wider);
}
.mobile-drawer__footer {
  margin-top: auto;
  padding: 32px var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  padding: 14px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  text-transform: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { flex-shrink: 0; }

.btn--primary {
  background: var(--primary);
  color: var(--c-white);
}
.btn--primary:hover { background: var(--c-navy-800); }

.btn--accent {
  background: var(--accent);
  color: var(--primary);
}
.btn--accent:hover { background: var(--c-yellow-400); }

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--c-stone-300);
}
.btn--ghost:hover {
  background: var(--c-stone-100);
  border-color: var(--c-stone-400);
}

.btn--ghost-inverse {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost-inverse:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.6);
}

.btn--whats {
  background: #25D366;
  color: #FFFFFF;
}
.btn--whats:hover { background: #1FB855; }

.btn--lg {
  padding: 18px 28px;
  font-size: 16px;
}

.btn--xl {
  padding: 22px 36px;
  font-size: 17px;
}

/* =========================================================
   EYEBROW + section header
   ========================================================= */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: 0 0 var(--s-5);
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--accent);
}
.section--dark .section-eyebrow { color: var(--c-stone-300); }

.section-title {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: var(--ls-display);
  margin: 0 0 var(--s-5);
  text-wrap: balance;
}
.section-title--lg {
  font-size: clamp(34px, 4.4vw, 60px);
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
  font-weight: var(--fw-black);
}
.section-sub {
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: var(--lh-relaxed);
  color: var(--fg-dim);
  max-width: 62ch;
  margin: 0;
}
.section--dark .section-sub { color: var(--c-stone-300); }

/* =========================================================
   PAGE HEAD — unified intro pattern used by all inner pages
   ========================================================= */
.page-head {
  padding-top: clamp(56px, 6.5vw, 96px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
/* Yellow filete signature — brandbook corner mark */
.page-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(48px, 6vw, 96px);
  height: 4px;
  background: var(--accent);
}
.page-head__crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: var(--s-6);
}
.page-head__crumb a { color: var(--fg-dim); text-decoration: none; }
.page-head__crumb a:hover { color: var(--primary); }
.page-head__crumb span { color: var(--c-stone-300); }
/* Unified CENTERED editorial head used by EVERY inner page (home keeps its own hero) */
.page-head__grid { display: block; max-width: 74ch; margin-left: auto; margin-right: auto; text-align: center; }
.page-head__crumb { justify-content: center; }
.page-head .section-eyebrow { justify-content: center; margin: 0 0 clamp(14px, 1.6vw, 20px); }
.page-head__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: none;
  margin: 0 auto clamp(16px, 2vw, 24px);
  max-width: 24ch;
  text-wrap: balance;
  color: var(--fg);
}
.page-head__lead {
  font-family: var(--ff-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--fg-dim);
  margin: 0 auto;
  max-width: 58ch;
}
.page-head .ph-cta { margin-top: clamp(24px, 3vw, 32px); justify-content: center; }
/* dark variant for pages that lead with navy hero */
.page-head--dark {
  background: var(--c-navy-950);
  color: var(--c-white);
  border-bottom: 0;
  overflow: hidden;
}
.page-head--dark .page-head__title { color: var(--c-white); }
.page-head--dark .page-head__lead { color: var(--c-stone-200); }
.page-head--dark .page-head__crumb { color: var(--c-stone-400); }
.page-head--dark .page-head__crumb a { color: var(--c-stone-300); }
.page-head--dark .page-head__crumb a:hover { color: var(--accent); }
.page-head--dark .section-eyebrow { color: var(--accent); }
.page-head--dark > .container { position: relative; z-index: 1; }
/* Line pages (Fundacao, Laje): vector centered ABOVE the centered text */
.page-head__line {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.page-head__art { display: flex; justify-content: center; margin: 0 0 clamp(20px, 3vw, 34px); }
.page-head__art svg { width: 100%; max-width: 190px; height: auto; opacity: 0.92; }
/* single-column is now the default; alias kept for existing markup */
.page-head__grid--stack { display: block; }
.page-head__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 12px;
}
.page-head__meta .label {
  margin: 0;
}
.page-head__meta p {
  font-size: 17px;
  color: var(--fg-dim);
  margin: 4px 0 0;
  max-width: 42ch;
}

/* =========================================================
   PHOTO FRAME with yellow corner brackets
   ========================================================= */
.photo-frame {
  position: relative;
  overflow: hidden;
  background: var(--c-stone-200);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-frame--bracket::before,
.photo-frame--bracket::after {
  content: "";
  position: absolute;
  width: 32px; height: 32px;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
  z-index: 2;
}
.photo-frame--bracket::before {
  top: 12px; left: 12px;
  border-top-width: 3px;
  border-left-width: 3px;
}
.photo-frame--bracket::after {
  bottom: 12px; right: 12px;
  border-bottom-width: 3px;
  border-right-width: 3px;
}
.photo-frame__tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 6px 10px;
  z-index: 3;
}
.photo-frame__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px;
  color: var(--c-white);
  background: linear-gradient(
    to top,
    rgba(5,15,46,0.85) 0%,
    rgba(5,15,46,0.4) 60%,
    rgba(5,15,46,0) 100%
  );
  z-index: 2;
}
.photo-frame__caption .label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: var(--ls-wider);
  color: var(--accent);
  text-transform: uppercase;
}
.photo-frame__caption h4 {
  margin: 6px 0 0;
  color: var(--c-white);
  font-size: 22px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-display);
}

/* =========================================================
   STAT BLOCK
   ========================================================= */
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: var(--bw-bold) solid var(--rule-bold);
  padding-top: 16px;
}
.section--dark .stat { border-top-color: var(--c-white); }
.stat__num {
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  color: var(--primary);
}
.section--dark .stat__num { color: var(--c-white); }
.stat__num .unit {
  font-size: 0.55em;
  font-weight: var(--fw-bold);
  color: var(--accent);
  margin-left: 4px;
}
.stat__label {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: 8px;
}
.section--dark .stat__label { color: var(--c-stone-300); }

/* =========================================================
   CARD — generic content card
   ========================================================= */
.card {
  background: var(--c-white);
  border: 1px solid var(--rule);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.card:hover { border-color: var(--c-stone-400); }
.card__num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--fg-mute);
}
.card__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: var(--ls-display);
  margin: 0;
  color: var(--fg);
}
.card__text {
  font-size: 15px;
  line-height: var(--lh-relaxed);
  color: var(--fg-dim);
  margin: 0;
}
.card__link {
  margin-top: auto;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--rule);
}
.card__link:hover { color: var(--c-navy-700); }
.card__link::after {
  content: "→";
  transition: transform var(--dur-fast) var(--ease-out);
}
.card:hover .card__link::after { transform: translateX(4px); }

.card--accent {
  background: var(--primary);
  color: var(--c-white);
  border-color: var(--primary);
}
.card--accent:hover { border-color: var(--primary); background: var(--c-navy-800); }
.card--accent .card__title { color: var(--c-white); }
.card--accent .card__text { color: var(--c-stone-300); }
.card--accent .card__num { color: var(--accent); }
.card--accent .card__link { color: var(--accent); border-top-color: rgba(255,255,255,0.15); }

/* Top yellow filete on cards */
.card--filete::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 4px;
  background: var(--accent);
}

/* =========================================================
   GRID UTILITIES
   ========================================================= */
.grid {
  display: grid;
  gap: var(--col-gap);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* =========================================================
   FORM
   ========================================================= */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--fg-dim);
}
.field__label .req { color: var(--accent); margin-left: 2px; }
.field input,
.field textarea,
.field select {
  font-family: var(--ff-body);
  font-size: 16px;
  padding: 14px 16px;
  background: var(--c-white);
  border: 1px solid var(--rule-strong);
  color: var(--fg);
  width: 100%;
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,31,92,0.08);
}
.field textarea { resize: vertical; min-height: 120px; }
.field__hint {
  font-size: 13px;
  color: var(--fg-mute);
}

/* =========================================================
   FLOATING WHATSAPP — always visible
   ========================================================= */
.whats-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px -8px rgba(37,211,102,0.5);
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.whats-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -8px rgba(37,211,102,0.6);
}
.whats-fab svg { width: 30px; height: 30px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--c-navy-950);
  color: var(--c-stone-300);
  padding-top: clamp(64px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background-image: repeating-linear-gradient(
    45deg,
    var(--accent) 0,
    var(--accent) 14px,
    var(--c-navy-950) 14px,
    var(--c-navy-950) 28px
  );
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-7);
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .site-footer__top { grid-template-columns: 1fr; }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.site-footer__brand .mark {
  color: var(--accent);
  width: 48px; height: 48px;
}
.site-footer__brand p {
  color: var(--c-stone-400);
  font-size: 15px;
  max-width: 40ch;
}
.site-footer__col h5 {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--accent);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.site-footer__col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.site-footer__col a {
  color: var(--c-stone-300);
  font-size: 15px;
  transition: color var(--dur-fast) var(--ease-out);
}
.site-footer__col a:hover { color: var(--c-white); }
.site-footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-footer__contact-item .label {
  font-size: 10px;
  color: var(--c-stone-400);
}
.site-footer__contact-item .value {
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--c-white);
  letter-spacing: 0.02em;
}

.site-footer__cities {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: var(--ls-wide);
  color: var(--c-stone-300);
  line-height: 1.6;
}
.site-footer__cities-label {
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  color: var(--accent);
  letter-spacing: var(--ls-wider);
  font-size: 10px;
  padding-right: 4px;
  flex-shrink: 0;
}
.site-footer__cities-list {
  flex: 1;
  min-width: 240px;
  color: var(--c-stone-300);
}
.site-footer__cities-note {
  font-size: 11px;
  color: var(--c-stone-400);
  padding-left: 10px;
  border-left: 2px solid var(--accent);
  white-space: nowrap;
}
.site-footer__cities-note strong { color: var(--c-white); font-weight: var(--fw-medium); }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-stone-400);
}
.site-footer__bottom a:hover { color: var(--c-white); }
.site-footer__social {
  display: flex;
  gap: 12px;
}
.site-footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-stone-300);
  transition: all var(--dur-fast) var(--ease-out);
}
.site-footer__social a:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

/* =========================================================
   GRID OVERLAY — used over dark surfaces
   ========================================================= */
.grid-overlay {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.grid-overlay--subtle {
  background-image:
    linear-gradient(to right, rgba(10,31,92,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,31,92,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* =========================================================
   LIST WITH MARKERS
   ========================================================= */
.checklist {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.checklist li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg);
  align-items: start;
}
.checklist li::before {
  content: "";
  margin-top: 8px;
  width: 12px; height: 2px;
  background: var(--accent);
}
.section--dark .checklist li { color: var(--c-stone-200); }

/* =========================================================
   CTA STRIP — bottom of pages
   ========================================================= */
.cta-strip {
  background: var(--c-navy-950);
  color: var(--c-white);
  padding: clamp(64px, 8vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.cta-strip__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-7);
  align-items: end;
}
@media (max-width: 900px) {
  .cta-strip__inner { grid-template-columns: 1fr; }
}
.cta-strip h2 {
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
  color: var(--c-white);
  margin: 0 0 var(--s-5);
  text-wrap: balance;
}
.cta-strip__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .cta-strip__actions { align-items: flex-end; }
}
.cta-strip__actions .btn { width: 100%; max-width: 320px; }
.cta-strip__filete {
  width: 56px; height: 4px;
  background: var(--accent);
  margin-bottom: var(--s-5);
}

/* Vertical accent rule for paragraphs */
.lead--accent {
  border-left: 4px solid var(--accent);
  padding-left: 24px;
}

/* =========================================================
   TESTIMONIALS — prova social grid
   ========================================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
  margin-top: var(--s-6);
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--c-white);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--primary);
  padding: clamp(24px, 2.8vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial:nth-child(2) { border-top-color: var(--accent); }
.testimonial__quote {
  font-family: var(--ff-display);
  font-weight: var(--fw-light);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.45;
  letter-spacing: var(--ls-display);
  color: var(--fg);
  margin: 0;
  position: relative;
}
.testimonial__quote::before {
  content: "“";
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  font-size: 3em;
  color: var(--accent);
  line-height: 0.4;
  margin-right: 6px;
  vertical-align: -0.05em;
}
.testimonial__meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.testimonial__name {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--fg);
}
.testimonial__obra {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 4px;
}

/* =========================================================
   INLINE CTA STRIPE — between sections on home
   ========================================================= */
.inline-cta {
  background: var(--c-navy-950);
  color: var(--c-white);
  padding: clamp(40px, 5vw, 64px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.inline-cta .grid-backdrop { z-index: -1; }
.inline-cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 760px) { .inline-cta__inner { grid-template-columns: 1fr; } }
.inline-cta__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: var(--ls-display);
  color: var(--c-white);
  margin: 0;
  text-wrap: balance;
}
.inline-cta__title .accent { color: var(--accent); }
.inline-cta__sub { color: var(--c-stone-300); font-size: 15px; line-height: 1.5; margin: 10px 0 0; max-width: 48ch; }
.inline-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
@media (max-width: 760px) { .inline-cta__actions { justify-content: flex-start; } }

/* =========================================================
   STICKY MOBILE BAR — fixed bottom on small screens
   ========================================================= */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 760px) {
  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9000;
    background: var(--c-navy-950);
    border-top: 4px solid var(--accent);
    box-shadow: 0 -12px 24px -10px rgba(5,15,46,0.4);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .mobile-cta-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 12px;
    font-family: var(--ff-body);
    font-weight: var(--fw-semibold);
    font-size: 14px;
    color: var(--c-white);
    text-decoration: none;
    transition: background var(--dur-fast) var(--ease-out);
  }
  .mobile-cta-bar a:hover,
  .mobile-cta-bar a:active { background: rgba(255,255,255,0.06); }
  .mobile-cta-bar a + a { border-left: 1px solid rgba(255,255,255,0.1); }
  .mobile-cta-bar a.is-whats { background: #25D366; }
  .mobile-cta-bar a.is-whats:hover { background: #1FB855; }
  .mobile-cta-bar svg { width: 18px; height: 18px; flex-shrink: 0; }
  /* push the floating whats fab out of the way */
  .whats-fab { bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important; }
  /* breathing room so content not hidden (barra + safe-area do iPhone) */
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
}

/* =========================================================
   TRUST BAR — stat strip used on home below ticker
   ========================================================= */
.trust-bar {
  background: var(--c-paper);
  border-bottom: 1px solid var(--rule);
  padding: clamp(28px, 3.6vw, 48px) 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  align-items: start;
}
@media (max-width: 760px) {
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 420px) {
  .trust-bar__grid { grid-template-columns: 1fr; }
}
.trust-stat__num {
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  color: var(--primary);
}
.trust-stat__num .unit {
  font-size: 0.5em;
  margin-left: 6px;
  color: var(--fg-mute);
  font-weight: var(--fw-medium);
}
.trust-stat__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 10px;
  line-height: 1.4;
}

/* =========================================================
   GRID BACKDROP — brandbook technical grid for dark sections
   ========================================================= */
.grid-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 85%);
  pointer-events: none;
}

/* =========================================================
   ANIMATIONS — discreet, professional
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out),
              transform 600ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- Ajustes finos de mobile (auditoria) ---- */
@media (max-width: 640px) {
  .site-footer__cities-note { white-space: normal; }
  .site-footer__col a { display: inline-block; padding: 6px 0; }
  .site-footer__social a { width: 44px; height: 44px; }
}
