/*
 * PovoaSeg — style.css v6.0
 * Design system "Structured Depth"
 * Dependências: DM Sans (Google Fonts), Font Awesome 6.4 (CDN)
 * Última atualização: 2026-04-13
 */

/* ─── 1. RESET & BASE ──────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── 2. CUSTOM PROPERTIES ─────────────────────────────────────────────────── */

:root {
  /* Brand */
  --red:        #d60000;
  --red-dark:   #b30000;
  --red-light:  rgba(214,0,0,0.08);
  --red-mid:    rgba(214,0,0,0.15);

  /* Neutrals */
  --dark:       #0F0F0F;
  --dark-2:     #1A1A1A;
  --dark-3:     #2A2A2A;
  --text:       #111111;
  --text-2:     #444444;
  --text-3:     #777777;
  --line:       #E4E4E0;
  --line-2:     #EDEDEA;
  --bg:         #F7F7F5;
  --bg-2:       #EFEFEC;
  --white:      #FFFFFF;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.05);
  --shadow-lg:  0 8px 24px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);

  /* Layout */
  --wrap:       1140px;
  --r:          8px;
  --r-lg:       14px;
  --gap:        24px;

  /* Transitions */
  --t:          160ms ease;
}

/* ─── 3. TYPOGRAPHY ────────────────────────────────────────────────────────── */

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--text); }

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

p { color: var(--text-2); line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}

.section-title { margin-bottom: .5rem; }
.section-sub   { color: var(--text-2); max-width: 560px; }

/* ─── 4. LAYOUT HELPERS ─────────────────────────────────────────────────────── */

.wrap    { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.section-white  { background: var(--white); }
.section-alt    { background: var(--bg); }
.section-dark   { background: var(--dark); }
.section-red    { background: var(--red); }

/* ─── 5. BUTTONS ───────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  padding: .7em 1.5em;
  border-radius: var(--r);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t), transform var(--t);
  white-space: nowrap;
}

.btn:active { transform: scale(.98); }

.btn-red {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 4px 14px rgba(214,0,0,.25);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--text-3);
  background: var(--bg);
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: var(--bg);
  border-color: var(--bg);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-ghost-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--line);
}
.btn-ghost:hover { border-color: var(--text-3); }

/* ─── 6. NAVBAR ────────────────────────────────────────────────────────────── */

.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--red);
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: .45em .85em;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  transition: color var(--t), background var(--t);
  letter-spacing: .01em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.14);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  font-size: .84rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  gap: .4em;
  letter-spacing: .01em;
}
.nav-phone:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
}
.nav-drawer.open { display: block; }

.nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
}

.nav-panel-close {
  align-self: flex-end;
  color: rgba(255,255,255,.6);
  font-size: 1.4rem;
  padding: 4px 8px;
  margin-bottom: 16px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-panel-close:hover { color: var(--white); }

.nav-panel a {
  display: block;
  padding: .7em 0;
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--t);
}
.nav-panel a:hover,
.nav-panel a.active { color: var(--white); }

.nav-panel .panel-phone {
  margin-top: 24px;
  color: var(--red);
  font-weight: 700;
  border-bottom: none;
}

/* ─── 7. HERO ──────────────────────────────────────────────────────────────── */

.hero {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

/* Coluna esquerda: empurra o conteúdo para a direita (lado do centro da página) */
.hero-left {
  display: flex;
  justify-content: flex-end;
  background: var(--white);
}

/* Container interno que respeita o alinhamento do wrap */
.hero-content {
  width: 100%;
  max-width: 570px;          /* ≈ metade do --wrap de 1140px */
  padding: 72px 56px 72px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  background: var(--red-light);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35em .85em;
  border-radius: 40px;
  border: 1px solid var(--red-mid);
  margin-bottom: 1.2rem;
  width: fit-content;
}

.hero-h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.0;
  margin-bottom: 1.1rem;
}

.hero-h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 28px;
}

.hero-stat-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  display: block;
  line-height: 1;
}

.hero-stat-lbl {
  font-size: .78rem;
  color: var(--text-3);
  letter-spacing: .04em;
}

/* Right column — red gradient panel */
.hero-right {
  background: linear-gradient(145deg, #7a0000 0%, #c50000 45%, #d60000 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 52px;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero-right::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: rgba(0,0,0,.15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-sim-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
}

.hero-sim-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}

.hero-sim-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.hero-sim-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  transition: background var(--t), border-color var(--t), transform var(--t);
}

.hero-sim-pill:hover {
  background: rgba(0,0,0,.28);
  border-color: rgba(255,255,255,.25);
  transform: translateX(4px);
}

.hero-sim-pill-icon {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-sim-pill .pill-arrow {
  margin-left: auto;
  color: rgba(255,255,255,.35);
  font-size: .8rem;
  transition: color var(--t);
}
.hero-sim-pill:hover .pill-arrow { color: rgba(255,255,255,.7); }

.hero-sim-note {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  line-height: 1.5;
}

/* ─── 8. TRUST BAR ─────────────────────────────────────────────────────────── */

.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .55em;
  font-size: .82rem;
  color: var(--text-3);
  font-weight: 500;
}
.trust-item i {
  color: var(--red);
  font-size: .9rem;
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--line);
}

/* ─── 9. SECTION HEADERS ───────────────────────────────────────────────────── */

.section-head { margin-bottom: 48px; }

.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ─── 10. SERVICE CARDS ────────────────────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-top: 3px solid var(--red);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--red-light);
  color: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.service-card h3 { margin-bottom: .5rem; }
.service-card p  { font-size: .9rem; }

/* ─── 11. PRODUCT CARDS ────────────────────────────────────────────────────── */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-top: 3px solid var(--red);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card-body {
  padding: 24px 22px;
  flex: 1;
}

.product-icon {
  width: 46px;
  height: 46px;
  background: var(--red-light);
  color: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.product-card h3 {
  margin-bottom: .35rem;
  font-size: 1.05rem;
}

.product-card-body > p {
  font-size: .85rem;
  margin-bottom: 14px;
}

.product-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-list li {
  font-size: .82rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: .5em;
}

.product-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-card-foot {
  padding: 14px 22px;
  border-top: 1px solid var(--line-2);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.product-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .35em;
  transition: gap var(--t);
}
.product-link:hover { gap: .6em; }

.product-link-outline {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: .35em;
  transition: color var(--t), gap var(--t);
  padding: .3em .7em;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.product-link-outline:hover {
  color: var(--text);
  border-color: var(--text-3);
  gap: .55em;
}

/* ─── 12. SIMULATOR CTA BAND ───────────────────────────────────────────────── */

.sim-band {
  background-color: var(--dark);
  background-image:
    radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    radial-gradient(circle at 10% 110%, rgba(214,0,0,.12) 0%, transparent 50%);
  background-size: 22px 22px, 100% 100%;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.sim-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(214,0,0,.07);
  border-radius: 50%;
  pointer-events: none;
}

.sim-band-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.sim-band h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: .6rem;
}

.sim-band p {
  color: rgba(255,255,255,.5);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.sim-band-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.sim-btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: .8em 1.8em;
  font-weight: 700;
  font-size: .92rem;
  transition: background var(--t), border-color var(--t), transform var(--t);
}

.sim-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.sim-btn i { font-size: 1.05rem; }

/* ─── 13. BRANCH CARDS ─────────────────────────────────────────────────────── */

.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.branch-card {
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.branch-head {
  background: var(--red);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.branch-head h3 { color: var(--white); font-size: 1.1rem; }

.branch-head-badge {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: .25em .7em;
  border-radius: 40px;
}

.branch-body {
  background: var(--white);
  padding: 24px;
}

.branch-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: .9rem;
  color: var(--text-2);
}
.branch-row:last-child { border-bottom: none; }

.branch-row i {
  color: var(--red);
  font-size: .9rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.branch-row a:hover { color: var(--red); }

.branch-map {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-size: .82rem;
  font-weight: 600;
  color: var(--red);
  margin-top: 14px;
  transition: gap var(--t);
}
.branch-map:hover { gap: .65em; }

/* ─── 14. CTA BANNER ───────────────────────────────────────────────────────── */

.cta-banner { text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: .5rem; }
.cta-banner p  { color: rgba(255,255,255,.7); margin-bottom: 1.8rem; }

.cta-banner-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── 15. PAGE HEADER ──────────────────────────────────────────────────────── */

.page-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line-2);
  padding: 44px 0 36px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: attr(data-bg);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 7rem;
  font-weight: 800;
  color: rgba(0,0,0,.04);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.page-header h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .3rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4em;
  font-size: .8rem;
  color: var(--text-3);
}

.breadcrumb a { color: var(--red); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--line); }

/* ─── 16. ABOUT PAGE ───────────────────────────────────────────────────────── */

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 { margin-bottom: 1rem; }
.about-text p  { margin-bottom: 1rem; }

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: .65em;
  font-size: .92rem;
  color: var(--text-2);
}
.about-checklist li i { color: var(--red); font-size: .85rem; flex-shrink: 0; }

.about-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 380px; object-fit: cover; }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-card-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: .3rem;
}

.stat-card-lbl {
  font-size: .85rem;
  color: var(--text-3);
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.timeline-item {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.tl-dot {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-weight: 800;
  font-size: .9rem;
  margin: 0 auto 12px;
}

.tl-year {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: .3rem;
}

.tl-desc {
  font-size: .82rem;
  color: var(--text-3);
  line-height: 1.5;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.value-card {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--red-light);
  color: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.value-card h3 { margin-bottom: .5rem; }
.value-card p  { font-size: .9rem; }

/* ASF block */
.asf-block {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-left: 4px solid var(--red);
  border-radius: var(--r);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.asf-block i { color: var(--red); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.asf-block p { font-size: .85rem; line-height: 1.6; }

/* ─── 17. SERVICES PAGE ────────────────────────────────────────────────────── */

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

/* Process flow */
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 56px;
  height: 56px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(214,0,0,.3);
}

.process-step h4 { margin-bottom: .35rem; font-size: .95rem; }
.process-step p  { font-size: .82rem; }

/* Why choose us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-item i {
  width: 40px;
  height: 40px;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1rem;
  flex-shrink: 0;
}

.why-item h4 { margin-bottom: .2rem; }
.why-item p  { font-size: .85rem; }

/* ─── 18. PRODUCTS PAGE ────────────────────────────────────────────────────── */

.tabs-bar {
  display: flex;
  gap: 4px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 4px;
  width: fit-content;
  margin-bottom: 36px;
}

.tab-btn {
  padding: .6em 1.5em;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-3);
  transition: color var(--t), background var(--t), box-shadow var(--t);
  letter-spacing: .01em;
  cursor: pointer;
}

.tab-btn.active,
.tab-btn:hover { color: var(--text); }

.tab-btn.active {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--red);
}

.tab-panel { display: none; }
.tab-panel.active { display: grid; }

.products-full-grid { grid-template-columns: repeat(3, 1fr); gap: var(--gap); }

/* ─── 19. CONTACTS PAGE ────────────────────────────────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-branches {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.contact-info-block {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-top: 4px;
}

.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: .9rem;
}
.info-row:last-child { border-bottom: none; }

.info-row i {
  color: var(--red);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-row-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  display: block;
}

/* Form card */
.form-card {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.form-card-head {
  background: linear-gradient(135deg, var(--red) 0%, #e8234a 100%);
  padding: 24px 28px;
}

.form-card-head h3 { color: var(--white); margin-bottom: .2rem; }
.form-card-head p  { color: rgba(255,255,255,.7); font-size: .85rem; }

.form-card-body { padding: 28px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: .9rem;
  padding: .65em .9em;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(214,0,0,.08);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-honey { display: none !important; }

.form-submit { width: 100%; justify-content: center; margin-top: 4px; }

.form-msg {
  display: none;
  padding: 14px 16px;
  border-radius: var(--r);
  font-size: .9rem;
  margin-top: 12px;
  align-items: center;
  gap: .5em;
}

.form-msg.success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  display: flex;
}

.form-msg.error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  display: flex;
}

/* ─── 20. FID BAR ──────────────────────────────────────────────────────────── */

.fid-bar {
  background: var(--dark-2);
  padding: 20px 0;
}

.fid-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.fid-bar p { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ─── 21. FOOTER ───────────────────────────────────────────────────────────── */

.footer {
  background: var(--dark);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .f-logo {
  height: 36px;
  opacity: .85;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: .83rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 16px;
}

.footer-social { display: flex; gap: 8px; }

.f-social-btn {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .95rem;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.f-social-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}

.footer-col ul li + li { margin-top: 7px; }

.footer-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--t);
}
.footer-col a:hover { color: var(--white); }

.footer-contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 9px;
}

.footer-contact-row i {
  color: var(--red);
  font-size: .85rem;
  width: 14px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-row span,
.footer-contact-row a {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  transition: color var(--t);
}
.footer-contact-row a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p   { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-asf        { font-size: .74rem; color: rgba(255,255,255,.25); }

/* ─── 22. FIDELIDADE BRANDING ───────────────────────────────────────────────── */

/* Badge no hero-right */
.hero-fid-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.hero-fid-badge i { color: rgba(255,255,255,.7); }

/* Tag "Fidelidade" nos product cards */
.product-fid-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product-fid-tag::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Badge na sim-band */
.sim-fid-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(214,0,0,.16);
  border: 1px solid rgba(214,0,0,.35);
  color: rgba(255,255,255,.75);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.sim-fid-badge i { color: var(--red); }

/* ── Secção Parceria Fidelidade ── */
.fid-partner {
  background-color: var(--dark-2);
  background-image:
    radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 90% -15%, rgba(214,0,0,.18) 0%, transparent 55%);
  background-size: 22px 22px, 100% 100%;
  padding: 64px 0 108px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 44px), 0 100%);
}
.fid-partner::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(214,0,0,.16) 0%, transparent 68%);
  pointer-events: none;
}
.fid-partner::after { display: none; }

/* Secção a seguir ao fid-partner — desliza por cima da diagonal */
.fid-partner + section {
  margin-top: -44px;
  padding-top: calc(80px + 44px);
  position: relative;
  z-index: 2;
}
.fid-partner-inner { position: relative; z-index: 1; }

.fid-partner-head {
  text-align: center;
  margin-bottom: 40px;
}
.fid-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.fid-partner-head h2 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  margin-bottom: 8px;
}
.fid-partner-head p {
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  max-width: 480px;
  margin: 0 auto;
}

.fid-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.fid-fact-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: 28px 16px 22px;
  text-align: center;
  transition: background var(--t), border-color var(--t);
}
.fid-fact-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(214,0,0,.28);
}
.fid-fact-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.fid-fact-num em { color: var(--red); font-style: normal; }
.fid-fact-lbl {
  font-size: .7rem;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1.5;
}

.fid-awards-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.fid-award-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  transition: background var(--t), border-color var(--t);
}
.fid-award-pill:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(214,0,0,.3);
}
.fid-award-pill i { color: var(--red); }

/* Footer — parceiro badge */
.footer-fid-partner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 10px;
  padding: 5px 12px;
  background: rgba(214,0,0,.12);
  border: 1px solid rgba(214,0,0,.2);
  border-radius: 100px;
}
.footer-fid-partner i { color: var(--red); }

/* ─── 23. SCROLL REVEAL ────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── 23. RESPONSIVE ───────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }

  .hero-left {
    order: 2;
    justify-content: flex-start;
  }

  .hero-content {
    max-width: 100%;
    padding: 48px 24px;
  }

  .hero-right {
    order: 1;
    min-height: 260px;
    padding: 32px 24px;
  }

  .hero-sim-pills {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero-sim-pill { flex: 1; min-width: 140px; }

  .services-grid,
  .services-page-grid,
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .products-grid,
  .products-full-grid { grid-template-columns: repeat(2, 1fr); }

  .fid-fact-grid { grid-template-columns: repeat(2, 1fr); }

  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-img { display: none; }

  .contact-layout { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .process-flow { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-flow::before { display: none; }

  .timeline { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .timeline::before { display: none; }
}

@media (max-width: 768px) {
  .section    { padding: 56px 0; }
  .section-sm { padding: 40px 0; }

  .nav-links,
  .nav-phone  { display: none; }
  .hamburger  { display: flex; }

  .hero-stats { gap: 16px; }
  .hero-content { padding: 44px 20px; }

  .services-grid,
  .services-page-grid,
  .values-grid,
  .products-grid,
  .products-full-grid,
  .why-grid { grid-template-columns: 1fr; }

  .branches-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .form-row2 { grid-template-columns: 1fr; }

  .trust-sep { display: none; }

  .sim-band-btns { flex-direction: column; align-items: center; }
  .sim-btn { width: 100%; max-width: 280px; justify-content: center; }

  .page-header::after { display: none; }

  .hero-right { min-height: 220px; }
  .hero-sim-pills { flex-direction: column; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }

  .stats-row { grid-template-columns: 1fr 1fr; }

  .process-flow { grid-template-columns: 1fr; gap: 24px; }
  .timeline { grid-template-columns: 1fr; }

  .tabs-bar { width: 100%; }
  .tab-btn  { flex: 1; text-align: center; }
}
