/* ============================================================
   aberturadeportasantas.pt — styles.css
   Mobile-first | Profissional · Local · Transparente · Urgência controlada
   Petróleo #103A43 + Navy #082B4C + Âmbar CTA #FFB000
   ============================================================ */

:root {
  --deep-blue:     #102F45;
  --petrol:        #246578;
  --teal:          #2A9D96;
  --navy:          #082B4C;
  --graphite:      #17242B;
  --amber:         #F4B400;
  --amber-hover:   #DFA200;
  --amber-text:    #5C4200;
  --ivory:         #FAF9F5;
  --light-gray:    #F1F5F6;
  --white:         #FFFFFF;
  --trust-green:   #298461;
  --text:          #17242B;
  --muted:         #5D6871;
  --border:        #DDE4E7;
  --error:         #B42318;
  --radius-card:   16px;
  --radius-btn:    10px;
  --radius-chip:   999px;
  --radius-input:  10px;
  --shadow-card:   0 4px 20px rgba(23, 32, 39, 0.08);
  --shadow-amber:  0 10px 24px rgba(255, 176, 0, 0.30);
  --font:          'Inter', 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition:    0.22s ease;
  --sticky-h:      68px;
  --max-w:         1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-h);
}
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
address { font-style: normal; }
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 20px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--graphite);
  color: rgba(255,255,255,0.8);
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 0;
}
.top-bar__inner {
  max-width: var(--max-w); margin-inline: auto; padding-inline: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.top-bar__left { display: flex; align-items: center; gap: 6px; }
.top-bar__left svg { color: var(--amber); flex-shrink: 0; }
.top-bar__right { display: flex; gap: 20px; }
.top-bar__item { display: flex; align-items: center; gap: 6px; }
.top-bar__item svg { color: var(--trust-green); flex-shrink: 0; }
.top-bar__item--2, .top-bar__item--3 { display: none; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; height: 68px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo__icon { flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__brand { font-size: 14.5px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.logo__brand .logo__porto { color: var(--amber); }
.logo__tagline { font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: 0.02em; }

/* Nav */
.header__nav { display: none; }
.nav__list { display: flex; gap: 2px; align-items: center; }
.nav__link {
  font-size: 13px; font-weight: 600; color: var(--text); padding: 8px 10px;
  border-radius: 8px; transition: color var(--transition), background var(--transition); white-space: nowrap;
}
.nav__link:hover, .nav__link--active { color: var(--navy); background: var(--light-gray); }

/* Header CTAs */
.header__phones { display: none; align-items: center; gap: 8px; }
.header__phone-btn {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: var(--radius-btn);
  font-size: 13.5px; font-weight: 700; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.header__phone-btn--fixed { background: var(--navy); color: var(--white); }
.header__phone-btn--fixed:hover { background: var(--petrol); transform: translateY(-1px); }
.header__phone-btn--mobile { background: var(--amber); color: var(--navy); }
.header__phone-btn--mobile:hover { background: var(--amber-hover); transform: translateY(-1px); }

/* Hamburger */
.header__hamburger {
  display: flex; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; border-radius: 8px; transition: background var(--transition);
}
.header__hamburger:hover { background: var(--light-gray); }
.header__hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.header__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__nav.is-open {
  display: block; position: absolute; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 20px; box-shadow: 0 8px 24px rgba(23,32,39,0.12);
}
.header__nav.is-open .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
.header__nav.is-open .nav__link { font-size: 15px; padding: 12px 14px; border-radius: 10px; }
.header__nav.is-open .nav__list::after {
  content: '';
  display: block; height: 1px; background: var(--border); margin: 10px 0;
}
.header__nav.is-open .header__phones {
  display: flex; flex-direction: column; gap: 8px; padding-top: 4px;
}
.header__nav.is-open .header__phone-btn { justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 14px 22px; border-radius: var(--radius-btn);
  font-family: var(--font); font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer; border: 2px solid transparent; text-align: center; line-height: 1.2; text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn span { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.btn span small { font-size: 11px; font-weight: 600; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.04em; }

.btn--amber { background: var(--amber); color: var(--navy); box-shadow: var(--shadow-amber); }
.btn--amber:hover { background: var(--amber-hover); transform: translateY(-1px); }

.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--petrol); transform: translateY(-1px); }

.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }

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

.btn--lg { min-height: 58px; padding: 16px 28px; font-size: 16px; }
.btn--full { width: 100%; }
.btn--full-mobile { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--ivory); padding: 36px 0 40px; }
.hero__inner { display: flex; flex-direction: column; gap: 28px; }
.hero__content { max-width: 620px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--petrol); margin-bottom: 12px;
}
.hero__eyebrow svg { color: var(--amber); flex-shrink: 0; }

.hero__h1 {
  font-size: 36px; font-weight: 800; color: var(--navy); margin-bottom: 12px;
  letter-spacing: -0.02em; line-height: 1.1;
}
.hero__h1 .accent { color: var(--teal); display: block; }
.hero__sub { font-size: 16.5px; line-height: 1.6; color: var(--text); margin-bottom: 8px; font-weight: 500; max-width: 520px; }
.hero__detail { font-size: 14px; line-height: 1.65; color: var(--muted); margin-bottom: 18px; max-width: 500px; }

.hero__benefits { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.hero__benefit { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text); }
.hero__benefit svg { color: var(--trust-green); flex-shrink: 0; }

.hero__ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }
.hero__ctas-phones { display: flex; flex-direction: column; gap: 10px; }
.hero__cta-estimate { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: var(--radius-btn); background: var(--white); transition: border-color var(--transition), background var(--transition); }
.hero__cta-estimate:hover { border-color: var(--navy); background: var(--light-gray); }
.hero__cta-estimate svg { color: var(--navy); flex-shrink: 0; }
.hero__local { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); font-weight: 500; margin-top: 6px; }
.hero__local svg { color: var(--amber); flex-shrink: 0; }

/* Hero media */
.hero__media { position: relative; }
.hero__media picture, .hero__media img {
  width: 100%; border-radius: var(--radius-card); object-fit: cover; aspect-ratio: 4/3; display: block;
}
.hero__media-badge {
  position: absolute; right: 12px; bottom: 12px; background: var(--white);
  border-radius: 12px; padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; color: var(--navy); box-shadow: var(--shadow-card); max-width: 200px;
}
.hero__media-badge svg { color: var(--amber); flex-shrink: 0; }
.hero__media-badge small { display: block; font-weight: 500; color: var(--muted); font-size: 11px; margin-top: 1px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; }
.trust-strip__inner { display: flex; gap: 12px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.trust-strip__inner::-webkit-scrollbar { display: none; }
.trust-item { display: flex; align-items: center; gap: 9px; white-space: nowrap; flex-shrink: 0; }
.trust-item__icon {
  display: flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  background: var(--light-gray); border-radius: 10px; color: var(--navy); flex-shrink: 0;
}
.trust-item__label { font-size: 12.5px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.trust-item__label small { display: block; font-weight: 500; color: var(--muted); font-size: 11px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 56px 0; }
.section--ivory { background: var(--ivory); }
.section--white { background: var(--white); }
.section--dark { background: var(--petrol); }
.section--navy { background: var(--navy); }
.section--light { background: var(--light-gray); }

.section__title {
  font-size: 26px; font-weight: 800; color: var(--navy);
  line-height: 1.2; margin-bottom: 8px; letter-spacing: -0.01em; text-align: center;
}
.section__title--left { text-align: left; }
.section__title--white { color: var(--white); }
.section__sub { font-size: 15.5px; color: var(--muted); line-height: 1.65; text-align: center; margin-bottom: 28px; max-width: 640px; margin-inline: auto; }
.section__sub--left { text-align: left; margin-inline: 0; }

/* ============================================================
   SITUATION CARDS
   ============================================================ */
.situations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.situation-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-card);
  padding: 16px 14px; display: flex; align-items: center; gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.situation-card:hover { border-color: var(--amber); box-shadow: 0 4px 18px rgba(255,176,0,0.14); transform: translateY(-1px); }
.situation-card__icon {
  display: flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  background: var(--ivory); border-radius: 10px; color: var(--navy); flex-shrink: 0;
}
.situation-card__title { font-size: 13.5px; font-weight: 700; color: var(--navy); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.service-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-card);
  padding: 20px 18px; display: flex; align-items: flex-start; gap: 14px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { border-color: var(--navy); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.service-card__icon {
  display: flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  background: var(--ivory); border-radius: 12px; color: var(--navy); flex-shrink: 0;
}
.service-card__content { flex: 1; }
.service-card__title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.service-card__text { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; align-items: flex-start; gap: 16px; }
.step__num {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; min-width: 38px; background: var(--amber);
  color: var(--navy); font-size: 16px; font-weight: 800;
  border-radius: 50%; flex-shrink: 0; margin-top: 2px;
}
.step__content { flex: 1; padding-bottom: 24px; border-left: 2px solid var(--border); padding-left: 16px; margin-left: -30px; padding-right: 0; }
.step:last-child .step__content { border-left-color: transparent; padding-bottom: 0; }
.step__title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step__text  { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   TRANSPARENCY BLOCK
   ============================================================ */
.transparency-block { display: flex; flex-direction: column; gap: 24px; }
.transparency-block__image img { border-radius: var(--radius-card); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.transparency-list { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.transparency-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text); }
.transparency-item svg { color: var(--trust-green); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   WHY CHOOSE / VANTAGENS
   ============================================================ */
.why-block { display: flex; flex-direction: column; gap: 28px; }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 600; color: var(--white); }
.why-check {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 26px; height: 26px; background: var(--amber); border-radius: 50%; color: var(--navy); margin-top: 1px;
}
.why-image img { border-radius: var(--radius-card); width: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ============================================================
   LOCAL AREA BLOCK
   ============================================================ */
.local-block { display: flex; flex-direction: column; gap: 24px; }
.local-block__image img { border-radius: var(--radius-card); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.local-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.local-chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-chip);
  font-size: 13px; font-weight: 600; color: var(--navy); background: var(--white);
  transition: background var(--transition), border-color var(--transition);
}
.local-chip svg { color: var(--amber); flex-shrink: 0; }
.local-chip:hover { background: var(--ivory); border-color: var(--amber); }

/* ============================================================
   LEGITIMACY BLOCK
   ============================================================ */
.legitimacy-block {
  background: var(--ivory); border: 1.5px solid var(--border); border-radius: var(--radius-card);
  padding: 24px; display: flex; align-items: flex-start; gap: 16px;
}
.legitimacy-block__icon {
  display: flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  background: var(--white); border-radius: 12px; color: var(--navy); flex-shrink: 0;
}
.legitimacy-block__title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.legitimacy-block__text { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius-card); overflow: hidden; background: var(--white); transition: border-color var(--transition); }
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: var(--amber); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 16px 18px; font-size: 14.5px; font-weight: 600; color: var(--text); gap: 12px;
  min-height: 56px; text-align: left; transition: background var(--transition), color var(--transition);
}
.faq-question:hover { background: var(--ivory); color: var(--navy); }
.faq-question[aria-expanded="true"] { color: var(--navy); background: var(--ivory); }
.faq-chevron { flex-shrink: 0; transition: transform var(--transition), color var(--transition); color: var(--muted); }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--amber); }
.faq-answer { padding: 0 18px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding var(--transition); }
.faq-answer:not([hidden]) { max-height: 400px; padding: 0 18px 18px; }
.faq-answer[hidden] { display: block !important; }
.faq-answer p { font-size: 14px; line-height: 1.7; color: var(--muted); }

/* ============================================================
   ESTIMATE FORM
   ============================================================ */
.form-card { background: var(--white); border-radius: 20px; padding: 28px 24px; box-shadow: 0 8px 32px rgba(23,32,39,0.10); }
.form-card__title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.form-card__title .accent { color: var(--amber); }
.form-card__sub { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; line-height: 1.55; }
.form-grid { display: flex; flex-direction: column; gap: 0; }
.form-group { margin-bottom: 12px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-required { color: var(--amber); }
.form-hint { font-size: 11.5px; color: var(--muted); font-weight: 500; margin-left: 4px; }
.form-input-wrap { position: relative; }
.form-input {
  width: 100%; height: 48px; padding: 0 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-input); font-family: var(--font); font-size: 14px; color: var(--text);
  background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); appearance: none;
}
select.form-input { cursor: pointer; }
.form-input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(8,43,76,0.12); }
.form-input::placeholder { color: #aab8c9; }
.form-textarea { height: auto; padding-top: 14px; resize: vertical; min-height: 80px; }
.form-photo-area {
  border: 2px dashed var(--border); border-radius: var(--radius-input); padding: 16px;
  text-align: center; cursor: pointer; transition: border-color var(--transition), background var(--transition);
  background: var(--light-gray);
}
.form-photo-area:hover { border-color: var(--navy); background: var(--ivory); }
.form-photo-area input { display: none; }
.form-photo-area__label { display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer; }
.form-photo-area svg { color: var(--muted); }
.form-photo-area__text { font-size: 13px; color: var(--muted); font-weight: 600; }
.form-photo-area__hint { font-size: 11px; color: var(--muted); }
.form-photo-name { font-size: 12px; color: var(--trust-green); margin-top: 6px; font-weight: 600; display: none; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.55; cursor: pointer; }
.form-check input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--navy); cursor: pointer; }
.form-security { display: flex; align-items: flex-start; gap: 6px; font-size: 12px; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.form-security svg { flex-shrink: 0; margin-top: 2px; color: var(--trust-green); }
.form-security a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.form-honeypot, .hp-field { position: absolute; top: 0; left: 0; width: 0; height: 0; overflow: hidden; opacity: 0; pointer-events: none; }
.form-feedback { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; font-weight: 600; padding: 12px 14px; border-radius: var(--radius-input); margin-top: 10px; line-height: 1.5; }
.form-feedback--success { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.form-feedback--error   { background: #fdecea; color: var(--error); border: 1px solid #ef9a9a; }
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 0.8s linear infinite; }
.contact-form { position: relative; }

/* Form sidebar trust block */
.form-trust-block { background: var(--amber); border-radius: 14px; padding: 20px; }
.form-trust-block__title { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.form-trust-list { display: flex; flex-direction: column; gap: 10px; }
.form-trust-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--navy); }
.form-trust-item svg { flex-shrink: 0; margin-top: 2px; color: var(--navy); }
.form-trust-item small { display: block; font-weight: 500; font-size: 12px; color: rgba(8,43,76,0.7); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { background: var(--navy); padding: 40px 0; }
.cta-final__inner { display: flex; flex-direction: column; gap: 28px; }
.cta-final__hl { font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 8px; line-height: 1.2; }
.cta-final__hl .accent { color: var(--amber); }
.cta-final__text { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 20px; line-height: 1.65; }
.cta-final__phones { display: flex; flex-direction: column; gap: 12px; }
.cta-final__phone-btn {
  display: flex; align-items: center; gap: 12px; padding: 18px 22px; border-radius: var(--radius-btn);
  font-size: 20px; font-weight: 800; text-decoration: none; transition: background var(--transition), transform var(--transition); letter-spacing: -0.01em;
}
.cta-final__phone-btn small { font-size: 11px; font-weight: 600; display: block; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.06em; }
.cta-final__phone-btn--fixed { background: var(--white); color: var(--navy); }
.cta-final__phone-btn--fixed:hover { background: var(--ivory); transform: translateY(-1px); }
.cta-final__phone-btn--mobile { background: var(--amber); color: var(--navy); box-shadow: var(--shadow-amber); }
.cta-final__phone-btn--mobile:hover { background: var(--amber-hover); transform: translateY(-1px); }
.cta-final__image img { border-radius: var(--radius-card); width: 100%; object-fit: cover; aspect-ratio: 16/9; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--graphite); }
.footer__inner { display: flex; flex-direction: column; gap: 36px; padding-top: 48px; padding-bottom: 36px; }
.footer__brand-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; margin: 12px 0 16px; max-width: 280px; }
.footer__col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber); margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__links li { font-size: 13.5px; color: rgba(255,255,255,0.65); }
.footer__phones-list { display: flex; flex-direction: column; gap: 10px; }
.footer__phone { display: flex; align-items: center; gap: 8px; }
.footer__phone a { font-size: 15px; font-weight: 700; color: var(--white); transition: color var(--transition); }
.footer__phone a:hover { color: var(--amber); }
.footer__phone__label { font-size: 11px; color: rgba(255,255,255,0.45); display: block; }
.footer__hours { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer__hours strong { color: rgba(255,255,255,0.8); font-weight: 600; }
.footer__bottom { background: rgba(0,0,0,0.3); padding: 14px 0; }
.footer__bottom-inner { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer__bottom-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.footer__bottom-links a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--white); }
.footer__seo { font-size: 11.5px; color: rgba(255,255,255,0.25); }

/* ============================================================
   STICKY BOTTOM BAR — dois botões
   ============================================================ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  height: var(--sticky-h); display: flex;
  box-shadow: 0 -4px 20px rgba(23,32,39,0.22);
}
.sticky-bar__btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-size: 15px; font-weight: 800; letter-spacing: 0.01em;
  text-decoration: none; transition: background var(--transition);
}
.sticky-bar__btn:active { opacity: 0.9; }
.sticky-bar__btn--fixed { background: var(--navy); color: var(--white); }
.sticky-bar__btn--fixed:hover { background: var(--petrol); }
.sticky-bar__btn--mobile { background: var(--amber); color: var(--navy); }
.sticky-bar__btn--mobile:hover { background: var(--amber-hover); }
.sticky-bar__btn__text { display: flex; flex-direction: column; line-height: 1.2; }
.sticky-bar__btn__text small { font-size: 10px; font-weight: 600; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
@media print { .sticky-bar, .header__hamburger, .top-bar { display: none; } body { padding-bottom: 0; } }

/* ============================================================
   DESKTOP BREAKPOINTS
   ============================================================ */
@media (min-width: 640px) {
  .situations-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero__ctas-phones { flex-direction: row; }
  .btn--full-mobile { width: auto; }
}

@media (min-width: 768px) {
  .container { padding-inline: 24px; }
  .section { padding: 72px 0; }
  .section__title { font-size: 30px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-group--full { grid-column: 1 / -1; }
  .top-bar__item--2 { display: flex; }
  .cta-final__phones { flex-direction: row; }
}

@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .sticky-bar { display: none; }
  .container { padding-inline: 32px; }
  .section { padding: 88px 0; }
  .section__title { font-size: 34px; }

  .top-bar__item--3 { display: flex; }

  /* Header */
  .header__nav { display: flex; }
  .header__hamburger { display: none; }
  .header__phones { display: flex; }
  .header__inner { height: 76px; }

  /* Hero */
  .hero { padding: 60px 0 72px; }
  .hero__inner { flex-direction: row; align-items: center; gap: 64px; }
  .hero__content { flex: 1.1; max-width: none; }
  .hero__media { flex: 1; }
  .hero__h1 { font-size: 56px; }
  .hero__h1 .accent { display: inline; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas-phones { flex-direction: row; }

  /* Trust strip */
  .trust-strip__inner { justify-content: space-between; overflow-x: visible; }

  /* Situations */
  .situations-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .service-card { flex-direction: column; align-items: flex-start; padding: 24px; }

  /* Steps */
  .steps-list { flex-direction: row; gap: 0; }
  .step { flex: 1; flex-direction: column; align-items: flex-start; }
  .step__content { border-left: none; padding-left: 0; margin-left: 0; border-top: 2px solid var(--border); padding-top: 16px; padding-bottom: 0; }
  .step:last-child .step__content { border-top-color: var(--border); }

  /* Transparency block */
  .transparency-block { flex-direction: row; align-items: center; gap: 56px; }
  .transparency-block__image { flex: 0 0 440px; }
  .transparency-block__text { flex: 1; }

  /* Why block */
  .why-block { flex-direction: row; align-items: center; gap: 56px; }
  .why-text { flex: 1; }
  .why-image { flex: 0 0 420px; }

  /* Local block */
  .local-block { flex-direction: row; align-items: flex-start; gap: 48px; }
  .local-text { flex: 1; }
  .local-image { flex: 0 0 400px; }

  /* Form section */
  .form-section__inner { display: flex; gap: 48px; align-items: flex-start; }
  .form-section__main { flex: 1.3; }
  .form-section__aside { flex: 0 0 300px; display: flex; flex-direction: column; gap: 20px; }

  /* CTA final */
  .cta-final__inner { flex-direction: row; align-items: center; gap: 64px; }
  .cta-final__left { flex: 1; }
  .cta-final__right { flex: 1; }
  .cta-final__hl { font-size: 38px; }

  /* Footer */
  .footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr; gap: 48px; align-items: start; }
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1280px) {
  .hero__h1 { font-size: 62px; }
  .section__title { font-size: 36px; }
}
