/* 
  Universo AGV - MG150 | Premium Design System
  Version: 3.0.0 — Visual Transformation
  Aesthetic: Nubank + Porto Seguro + Fintech Premium
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */

:root {
  /* ── Brand Palette — Universo AGV ── */
  --navy-950: #030e6b;
  --navy-900: #051a8f;
  --navy-800: #0029bc;
  --navy-700: #1233c9;
  --navy-600: #1e40d6;
  --navy-500: #2f52e0;
  --navy-400: #4d6ce6;
  --navy-300: #7d92ee;

  --gold-600: #e8890a;
  --gold-500: #ffa811;
  --gold-400: #ffb93d;
  --gold-300: #ffc966;
  --gold-200: #ffe0a3;
  --gold-100: #fff3dd;

  /* ── Semantic Colors ── */
  --brand-primary: var(--navy-800);
  --brand-primary-mid: var(--navy-600);
  --brand-primary-light: var(--navy-400);
  --brand-accent: var(--gold-500);
  --brand-accent-dark: var(--gold-600);
  --brand-accent-light: var(--gold-300);

  --text-heading: #0f1b2d;
  --text-body: #2d3748;
  --text-muted: #637088;
  --text-light: #8896a6;
  --text-inverse: #ffffff;

  --bg-white: #ffffff;
  --bg-cream: #fafbfc;
  --bg-alt: #f4f6f9;
  --bg-dark: var(--navy-950);

  --success-green: #22c55e;
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1da851;

  /* ── Spacing — 8pt Grid ── */
  --sp-1: 0.25rem;  /* 4px */
  --sp-2: 0.5rem;   /* 8px */
  --sp-3: 0.75rem;  /* 12px */
  --sp-4: 1rem;     /* 16px */
  --sp-5: 1.25rem;  /* 20px */
  --sp-6: 1.5rem;   /* 24px */
  --sp-8: 2rem;     /* 32px */
  --sp-10: 2.5rem;  /* 40px */
  --sp-12: 3rem;    /* 48px */
  --sp-16: 4rem;    /* 64px */
  --sp-20: 5rem;    /* 80px */
  --sp-24: 6rem;    /* 96px */
  --sp-32: 8rem;    /* 128px */

  /* ── Typography ── */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.0625rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: clamp(1.75rem, 3vw, 2.25rem);
  --fs-4xl: clamp(2rem, 4vw, 3rem);
  --fs-hero: clamp(2.25rem, 5vw, 3.75rem);

  --lh-tight: 1.15;
  --lh-heading: 1.25;
  --lh-body: 1.7;

  /* ── Radii ── */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-pill: 9999px;

  /* ── Shadows (layered for realism) ── */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 40px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  --shadow-premium: 0 25px 60px -12px rgba(10, 26, 51, 0.18);
  --shadow-gold: 0 4px 14px rgba(212, 160, 23, 0.25);
  --shadow-gold-lg: 0 8px 30px rgba(212, 160, 23, 0.3);
  --shadow-up: 0 -4px 16px rgba(15, 23, 42, 0.08);

  /* ── Motion ── */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-base: 300ms;
  --duration-slow: 500ms;

  --transition: all var(--duration-base) var(--ease-out);
  --header-height: 104px;

  /* ── Section spacing ── */
  --section-gap: clamp(4rem, 8vw, 6.5rem);
}


/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: var(--lh-body);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: var(--lh-heading);
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

p {
  max-width: 72ch;
}


/* ═══════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════ */

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.text-right { text-align: right; }

.text-agv-blue { color: var(--brand-primary-mid); }
.text-agv-gold { color: var(--brand-accent); }

.bg-alt { background-color: var(--bg-alt); }

.section-padding {
  padding: var(--section-gap) 0;
}

/* Spacing helpers */
.mt-sm { margin-top: var(--sp-4); }
.mt-md { margin-top: var(--sp-6); }
.mt-lg { margin-top: var(--sp-10); }
.mt-xl { margin-top: var(--sp-16); }
.mt-2xl { margin-top: var(--sp-24); }

.mb-sm { margin-bottom: var(--sp-4); }
.mb-md { margin-bottom: var(--sp-6); }
.mb-lg { margin-bottom: var(--sp-10); }
.mb-2xl { margin-bottom: var(--sp-24); }

.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }

.opacity-07 { opacity: 0.75; }
.opacity-05 { opacity: 0.55; }

.flex-center { display: flex; justify-content: center; align-items: center; }
.gap-md { gap: var(--sp-6); }

.img-container { padding: 0; overflow: hidden; border-radius: var(--radius-lg); }
.img-container img { width: 100%; height: 100%; object-fit: cover; }

.fw-bold { font-weight: 700; }
.pt-header { padding-top: calc(var(--header-height) + var(--sp-16)); }
.max-w-prose { max-width: 680px; }
.p-xl { padding: var(--sp-16); }

/* Font sizes */
.fs-xs { font-size: var(--fs-xs); }
.fs-sm { font-size: var(--fs-sm); }
.fs-lg { font-size: var(--fs-lg); }
.fs-xl { font-size: var(--fs-xl); }
.fs-2xl { font-size: var(--fs-2xl); }
.fs-3xl { font-size: var(--fs-3xl); }
.fs-4xl { font-size: var(--fs-4xl); }


/* ═══════════════════════════════════════════
   SECTION TITLE
   ═══════════════════════════════════════════ */

.section-title h2 {
  color: var(--navy-800);
  margin-bottom: var(--sp-3);
}

.section-title p {
  color: var(--text-muted);
  font-size: var(--fs-md);
  max-width: 560px;
}

.section-title.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
  margin-top: var(--sp-5);
}

.section-title.text-center::after {
  margin-left: auto;
  margin-right: auto;
}

.mb-lg + .features-grid,
.mb-lg + .grid-2 {
  margin-top: var(--sp-12);
}


/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--fs-base);
  border-radius: var(--radius-lg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #20bd5a);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20bd5a, #1da851);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  border: 2px solid var(--navy-600);
  color: var(--navy-600);
  background: transparent;
}

.btn-outline:hover {
  background: var(--navy-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}


/* ═══════════════════════════════════════════
   HEADER — Brand Presence
   ═══════════════════════════════════════════ */

.site-header {
  height: 104px;
  display: flex;
  align-items: flex-end;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(18, 26, 159, 0.09);
  box-shadow: 0 12px 30px rgba(16, 24, 80, 0.08);
  transition: var(--transition);
}

.site-header::before {
  content: 'proteção veicular  |  assistência 24h com atendimento regional  |  Escritório AGV MG 167';
  position: absolute;
  inset: 0 0 auto;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060a68;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 74px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* ── MG150 Authority Seal ── */
.mg150-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f8b316;
  color: #060a68;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 900;
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
}

.mg150-tag::before {
  content: 'AGV';
  font-size: 0.55rem;
  opacity: 0.9;
  margin-right: 2px;
}

/* ── Navigation ── */
.nav-menu {
  display: flex;
  gap: var(--sp-10);
  align-items: center;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
  color: #060a68;
  position: relative;
  padding: var(--sp-1) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
  transition: width var(--duration-base) var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--gold-600);
}

.nav-link.active {
  color: #121a9f;
  font-weight: 700;
}

/* ── Header CTA ── */
.header-actions .btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.78rem;
  border-radius: var(--radius-md);
}

.header-actions .wa-icon {
  font-size: 16px;
  color: var(--navy-900);
}

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-700);
  position: relative;
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: inherit;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger::before { top: -7px; left: 0; }
.hamburger::after { bottom: -7px; left: 0; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle.active .hamburger::after { transform: rotate(-45deg); bottom: 0; }


/* ═══════════════════════════════════════════
   HERO — Primary Sales Section
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-swiper {
  height: 92vh;
  min-height: 650px;
  max-height: 900px;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

/* Smart lateral gradient — reveals image on right, protects text on left */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(5, 13, 26, 0.94) 0%,
    rgba(10, 26, 51, 0.88) 30%,
    rgba(15, 40, 71, 0.6) 55%,
    rgba(15, 40, 71, 0.2) 75%,
    transparent 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

/* ── Hero Content Block — Structured, not floating text ── */
.hero-content {
  max-width: 620px;
  padding: var(--sp-12) var(--sp-10);
  position: relative;
  border-left: 4px solid var(--gold-500);
  margin-left: var(--sp-2);
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -4px;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 13, 26, 0.35), rgba(5, 13, 26, 0.15));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  z-index: -1;
}

/* ── Hero Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
  box-shadow: 0 2px 12px rgba(212, 160, 23, 0.3);
}

.hero-badge i {
  font-size: 0.7rem;
}

/* ── Hero Title ── */
.hero-title {
  font-size: var(--fs-hero);
  color: #fff;
  font-weight: 900;
  line-height: var(--lh-tight);
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-5);
}

.hero-title strong {
  color: var(--gold-300);
}

/* ── Hero Subtitle ── */
.hero-subtitle {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--lh-body);
  max-width: 520px;
  margin-bottom: var(--sp-6);
}

/* ── Hero Feature bullets ── */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: var(--fs-sm);
}

.feature-icon {
  color: var(--gold-400);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Hero CTA ── */
.hero-btns {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero-btns .btn-primary {
  font-size: var(--fs-base);
  padding: 1rem 2.5rem;
}

/* ── Swiper Navigation ── */
.swiper-button-next,
.swiper-button-prev {
  color: rgba(255,255,255,0.7) !important;
  transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--gold-400) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px !important;
  font-weight: 900;
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.6) !important;
  width: 10px !important;
  height: 10px !important;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--gold-400) !important;
  width: 28px !important;
  border-radius: 5px !important;
}


/* ═══════════════════════════════════════════
   PAGE HERO — Internal Pages
   ═══════════════════════════════════════════ */

.page-hero {
  padding: calc(var(--header-height) + var(--sp-16)) 0 var(--sp-16);
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 70, 112, 0.15), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 160, 23, 0.08), transparent 50%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-700) 40%, var(--navy-600) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-600));
}

.page-hero .hero-title {
  font-size: var(--fs-4xl);
  margin-bottom: var(--sp-3);
}

.page-hero .hero-subtitle {
  font-size: var(--fs-md);
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255,255,255,0.8);
}


/* ═══════════════════════════════════════════
   CARDS — Premium Depth System
   ═══════════════════════════════════════════ */

.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-8);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-base) var(--ease-out);
  height: 100%;
  border: 1px solid rgba(15, 40, 71, 0.06);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212, 160, 23, 0.12);
}

.card:hover::before {
  opacity: 1;
}

/* Cards with centered text — icon wrapper */
.card.text-center i.fa-3x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto var(--sp-6);
  background: linear-gradient(135deg, var(--bg-alt), rgba(15, 40, 71, 0.03));
  border-radius: var(--radius-md);
  font-size: 1.75rem !important;
  transition: var(--transition);
}

.card:hover i.fa-3x {
  background: linear-gradient(135deg, var(--gold-100), rgba(212, 160, 23, 0.1));
  transform: scale(1.05);
}

.card h3 {
  color: var(--navy-800);
  margin-bottom: var(--sp-3);
  font-size: var(--fs-xl);
}

.card p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════
   GRID SYSTEMS
   ═══════════════════════════════════════════ */

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

/* Features Grid — auto-responsive */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-8);
}

/* Details Grid — Content + Image */
.details-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-20);
  align-items: center;
}


/* ═══════════════════════════════════════════
   LISTS & CHECKLISTS
   ═══════════════════════════════════════════ */

.icon-list {
  display: grid;
  gap: var(--sp-4);
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-weight: 500;
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--text-body);
}

.icon-list i {
  color: var(--gold-500);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.82rem;
  margin-bottom: var(--sp-6);
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--brand-accent);
}

.breadcrumb span::before {
  content: '/';
  margin-right: var(--sp-3);
  opacity: 0.4;
}


/* ═══════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════ */

.blog-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.blog-card-img {
  height: 220px;
  background-color: var(--bg-alt);
  background-size: cover;
  background-position: center;
  transition: transform var(--duration-slow) var(--ease-out);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.03);
}

.blog-card-body {
  padding: var(--sp-8);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body .mg150-tag {
  margin: 0 0 var(--sp-4) 0;
  align-self: flex-start;
  font-size: 0.6rem;
}

.blog-card-body a {
  margin-top: auto;
  color: var(--navy-600);
  font-weight: 700;
  font-size: var(--fs-sm);
}

.blog-card-body a:hover {
  color: var(--gold-600);
}


/* ═══════════════════════════════════════════
   ARTICLE LAYOUT
   ═══════════════════════════════════════════ */

.article-layout {
  align-items: flex-start;
  gap: var(--sp-16);
}

.article-body {
  font-size: var(--fs-lg);
  line-height: 1.85;
}

.blockquote-gold {
  border-left: 4px solid var(--gold-500);
  padding: var(--sp-6) var(--sp-8);
  background: var(--gold-100);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-body);
}


/* ═══════════════════════════════════════════
   FORM CONTROLS
   ═══════════════════════════════════════════ */

.form-group {
  margin-bottom: var(--sp-6);
}

.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--text-heading);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-white);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--navy-400);
  box-shadow: 0 0 0 3px rgba(26, 70, 112, 0.1);
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23637088' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}


/* ═══════════════════════════════════════════
   FOOTER — Institutional Presence
   ═══════════════════════════════════════════ */

.site-footer {
  background: linear-gradient(180deg, var(--navy-950) 0%, #020a4a 100%);
  color: #fff;
  padding: var(--sp-20) 0 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-600));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--sp-12);
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--sp-5);
  filter: brightness(1.1);
}

.footer-col p {
  max-width: 280px;
}

.footer-title {
  font-size: var(--fs-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-6);
  color: var(--gold-400);
  font-family: var(--font-heading);
}

.footer-links li {
  margin-bottom: var(--sp-3);
}

.footer-links a {
  opacity: 0.6;
  font-size: var(--fs-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold-300);
  transform: translateX(3px);
}

.footer-links a i {
  font-size: 0.85rem;
  width: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--sp-8) 0;
  margin-top: var(--sp-16);
}

.footer-bottom p {
  opacity: 0.4;
  font-size: var(--fs-xs);
  max-width: 100%;
}


/* ═══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════ */

.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #20bd5a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 1001;
  transition: var(--transition);
}

.floating-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.wa-icon {
  font-size: 30px;
  color: #fff;
}

/* Pulse animation — subtle, not aggressive */
@keyframes pulse-wa {
  0% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-wa {
  animation: pulse-wa 3s infinite;
}

.floating-wa:hover {
  animation: none;
}


/* ═══════════════════════════════════════════
   MOBILE STICKY CTA — Refined & Elegant
   ═══════════════════════════════════════════ */

.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-up);
  z-index: 999;
  display: none;
  transform: translateY(100%);
  transition: transform var(--duration-base) var(--ease-out);
  border-top: 1px solid rgba(15, 40, 71, 0.06);
}

.mobile-sticky-cta.visible {
  display: block;
  transform: translateY(0);
}

.mobile-sticky-cta .btn {
  border-radius: var(--radius-md);
  padding: 0.75rem var(--sp-6);
  font-size: var(--fs-sm);
}


/* ═══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════ */

/* ── Large Desktop (1440px+) — Default covers this ── */

/* ── Laptop (1366px) ── */
@media (max-width: 1366px) {
  :root {
    --section-gap: clamp(3.5rem, 6vw, 5.5rem);
  }
  .container { max-width: 1140px; }
}

/* ── Tablet Landscape / Small Laptop (1024px) ── */
@media (max-width: 1024px) {
  .nav-menu { gap: var(--sp-6); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .details-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero-content { max-width: 540px; }
}

/* ── Tablet Portrait (768px) ── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    justify-content: center;
    gap: var(--sp-8);
    padding: var(--sp-20) var(--sp-10);
    transition: right var(--duration-base) var(--ease-out);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
    z-index: 1050;
  }

  .nav-menu.active { right: 0; }

  .nav-link {
    font-size: var(--fs-base);
    letter-spacing: 0.04em;
  }

  .header-actions { display: none; }

  .hero-swiper {
    height: 75vh;
    min-height: 550px;
  }

  .hero-content {
    max-width: 100%;
    padding: var(--sp-8) var(--sp-6);
    margin-left: 0;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .slide-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 13, 26, 0.92) 0%,
      rgba(10, 26, 51, 0.85) 40%,
      rgba(15, 40, 71, 0.6) 70%,
      rgba(15, 40, 71, 0.4) 100%
    );
  }

  .grid-3,
  .grid-2 { grid-template-columns: 1fr; }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .mobile-sticky-cta {
    display: block;
  }

  /* Push WhatsApp button above CTA bar */
  .floating-wa {
    bottom: 80px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .floating-wa .wa-icon {
    font-size: 26px;
  }

  .page-hero {
    padding: calc(var(--header-height) + var(--sp-10)) 0 var(--sp-10);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    text-align: center;
  }

  .footer-col p {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-logo {
    margin: 0 auto var(--sp-4);
  }
}

/* ── Mobile (480px and below) ── */
@media (max-width: 480px) {
  :root {
    --section-gap: clamp(2.5rem, 6vw, 4rem);
  }

  .hero-swiper {
    height: 70vh;
    min-height: 500px;
  }

  .hero-content {
    padding: var(--sp-6) var(--sp-5);
    border-left-width: 3px;
  }

  .hero-content::before {
    backdrop-filter: blur(4px);
  }

  .hero-title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }

  .hero-subtitle {
    font-size: var(--fs-sm);
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: var(--sp-1) var(--sp-3);
  }

  .feature-item {
    font-size: var(--fs-xs);
  }

  .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  .hero-btns .btn-primary {
    padding: 0.875rem var(--sp-6);
    font-size: var(--fs-sm);
  }

  .card {
    padding: var(--sp-8) var(--sp-6);
  }

  .card.text-center i.fa-3x {
    width: 60px;
    height: 60px;
    font-size: 1.5rem !important;
  }

  .logo-img {
    height: 42px;
  }

  .mg150-tag {
    padding: 3px 10px;
    font-size: 0.6rem;
  }

  .footer-bottom {
    margin-top: var(--sp-10);
    padding: var(--sp-6) 0;
  }
}

/* ── Small Mobile (360px) ── */
@media (max-width: 375px) {
  .hero-content {
    padding: var(--sp-5) var(--sp-4);
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .hero-features {
    gap: var(--sp-2);
  }

  .container {
    padding: 0 var(--sp-4);
  }
}

/* ═══════════════════════════════════════════
   INTERNAL PAGE COMPONENTS
   ═══════════════════════════════════════════ */

/* ── Page Hero (sub-pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: calc(var(--header-height) + var(--sp-8)) 0 var(--sp-8);
  text-align: center;
  color: var(--text-inverse);
}
.page-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-inverse);
  margin-bottom: 0;
}
.page-hero .hero-title strong {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero .hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-base);
  max-width: 600px;
  margin: var(--sp-2) auto 0;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  padding: var(--sp-3) 0;
}
.breadcrumb a {
  color: var(--brand-primary-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--brand-accent); }
.breadcrumb span::before {
  content: "›";
  margin-right: var(--sp-2);
  color: var(--text-light);
}

/* ── Details Grid (2-col layout) ── */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.details-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--text-heading);
}
.details-content p {
  color: var(--text-body);
  line-height: 1.7;
}
.details-img .img-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 0;
}
.details-img .img-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ── Icon List ── */
.icon-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-base);
  color: var(--text-body);
  line-height: 1.6;
}
.icon-list li i {
  color: var(--brand-accent);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── Grid Utilities ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

/* ── Blog Card ── */
.blog-card {
  padding: 0;
  overflow: hidden;
}
.blog-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.blog-card-body {
  padding: var(--sp-5);
}
.blog-card-body h2 {
  font-family: var(--font-heading);
  color: var(--text-heading);
}
.blog-card-body .mg150-tag {
  display: inline-block;
  margin-bottom: var(--sp-2);
}

/* ── Article Layout ── */
.article-layout {
  grid-template-columns: 2fr 1fr;
}
.article-body h2 { color: var(--text-heading); }
.article-body p { color: var(--text-body); line-height: 1.8; }
.sidebar .card { position: sticky; top: 100px; }
.blockquote-gold {
  border-left: 4px solid var(--brand-accent);
  padding-left: var(--sp-4);
}

/* ── Form Controls ── */
.form-group {
  margin-bottom: var(--sp-4);
}
.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--sp-2);
}
.form-control {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 2px solid var(--bg-alt);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text-body);
  background: var(--bg-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--brand-primary-mid);
  box-shadow: 0 0 0 4px rgba(26,70,112,0.1);
}
select.form-control {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23637088'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px;
  padding-right: 40px;
}

/* ── Utility: pt-header ── */
.pt-header { padding-top: calc(var(--header-height) + var(--sp-6)); }
.p-xl { padding: var(--sp-8); }

/* ── Text Utilities ── */
.text-agv-blue { color: var(--brand-primary); }
.fw-bold { font-weight: 700; }
.fs-2xl { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.fs-3xl { font-size: clamp(1.8rem, 4vw, 2.8rem); }

/* ── Button: Outline ── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--brand-primary-mid);
  color: var(--brand-primary-mid);
  background: transparent;
}
.btn-outline:hover {
  background: var(--brand-primary-mid);
  color: var(--text-inverse);
}

/* ═══════════════════════════════════════════
   INTERNAL PAGES — RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
  .page-hero {
    padding: calc(80px + var(--sp-6)) 0 var(--sp-6);
  }
  .details-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .sidebar .card { position: static; }
  .p-xl { padding: var(--sp-5); }
}

/* Universo AGV MG 167 home refresh */
.u-home {
  --u-blue: #121a9f;
  --u-blue-dark: #060a68;
  --u-blue-soft: #eef2ff;
  --u-yellow: #f8b316;
  --u-yellow-dark: #e39a00;
  --u-text: #29334d;
  --u-muted: #6f7689;
  --u-border: #e6e9f2;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--u-text);
  background: #fff;
}

.u-home h1,
.u-home h2,
.u-home h3 {
  letter-spacing: 0;
}

.u-topbar {
  background: var(--u-blue-dark);
  color: #fff;
  font-size: 14px;
}

.u-topbar-inner,
.u-top-links,
.u-nav-inner,
.u-menu,
.u-hero-actions,
.u-store-row {
  display: flex;
  align-items: center;
}

.u-topbar-inner {
  min-height: 44px;
  justify-content: space-between;
  gap: 24px;
}

.u-top-links {
  gap: 28px;
  flex-wrap: wrap;
}

.u-top-links a,
.u-social {
  color: #fff;
}

.u-social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.u-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 10px 35px rgba(16, 24, 80, 0.08);
}

.u-nav-inner {
  min-height: 88px;
  justify-content: space-between;
  gap: 24px;
}

.u-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 245px;
}

.u-logo img {
  width: 170px;
  height: auto;
}

.u-logo span,
.u-eyebrow {
  display: inline-flex;
  align-items: center;
  background: var(--u-yellow);
  color: var(--u-blue-dark);
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.u-menu {
  justify-content: flex-end;
  gap: 24px;
  font-weight: 800;
  color: var(--u-blue-dark);
}

.u-menu a {
  font-size: 15px;
}

.u-menu a:hover {
  color: var(--u-yellow-dark);
}

.u-nav-cta,
.u-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 900;
  text-align: center;
}

.u-nav-cta,
.u-btn-primary {
  background: var(--u-yellow);
  color: var(--u-blue-dark);
  box-shadow: 0 8px 22px rgba(248, 179, 22, 0.28);
}

.u-btn-primary:hover,
.u-nav-cta:hover {
  background: var(--u-yellow-dark);
  color: #fff;
}

.u-btn-ghost {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.u-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
}

.u-menu-toggle span,
.u-menu-toggle span::before,
.u-menu-toggle span::after {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--u-blue);
  content: "";
  margin: auto;
  transition: .2s ease;
}

.u-menu-toggle span::before { transform: translateY(-8px); }
.u-menu-toggle span::after { transform: translateY(5px); }

.u-menu-toggle.active span { background: transparent; }
.u-menu-toggle.active span::before { transform: translateY(3px) rotate(45deg); }
.u-menu-toggle.active span::after { transform: translateY(0) rotate(-45deg); }

.u-hero {
  min-height: 640px;
  background:
    linear-gradient(90deg, rgba(5, 9, 88, .92), rgba(18, 26, 159, .68) 50%, rgba(18, 26, 159, .10)),
    url("../img/universo/carro_bandeira.png") right center / contain no-repeat,
    var(--u-blue);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 72px 0;
}

.u-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 420px;
  gap: 48px;
  align-items: center;
}

.u-hero-copy h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  max-width: 720px;
  margin: 22px 0 20px;
  line-height: .98;
  font-weight: 900;
}

.u-hero-copy p {
  color: rgba(255, 255, 255, .88);
  font-size: 1.15rem;
  max-width: 620px;
}

.u-hero-actions {
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.u-about-card,
.u-sim-panel,
.u-step-list article,
.u-service-card,
.u-faq-list details,
.u-test-grid article {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(16, 24, 80, .12);
}

.u-about-card {
  color: var(--u-text);
  padding: 36px;
  border-top: 8px solid var(--u-yellow);
}

.u-about-card h2 {
  color: var(--u-blue);
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.u-about-card a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--u-blue);
  font-weight: 900;
}

.u-simulation,
.u-steps,
.u-services,
.u-app,
.u-faq,
.u-testimonials,
.u-clube {
  padding: clamp(56px, 8vw, 96px) 0;
}

.u-simulation {
  background: #f6f7fb;
}

.u-sim-grid,
.u-section-grid,
.u-band-grid,
.u-app-grid,
.u-clube-grid,
.u-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.u-sim-image {
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  background: #dbe2f3;
}

.u-sim-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.u-sim-panel {
  padding: clamp(28px, 4vw, 52px);
}

.u-sim-panel h2,
.u-section-head h2,
.u-section-grid h2,
.u-band h2,
.u-app h2,
.u-clube h2 {
  color: var(--u-blue);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 16px 0;
  font-weight: 900;
}

.u-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.u-form label {
  display: grid;
  gap: 7px;
  color: var(--u-blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.u-form input,
.u-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--u-border);
  border-radius: 6px;
  padding: 0 14px;
  font: inherit;
  color: var(--u-text);
  background: #fff;
}

.u-form small,
.u-form button {
  grid-column: 1 / -1;
}

.u-form small {
  color: var(--u-muted);
  line-height: 1.45;
}

.u-section-grid {
  grid-template-columns: .8fr 1.2fr;
}

.u-section-grid > div:first-child p,
.u-section-head p,
.u-band p,
.u-app p,
.u-clube p {
  color: var(--u-muted);
  font-size: 1.05rem;
}

.u-step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.u-step-list article {
  padding: 26px;
  border: 1px solid var(--u-border);
}

.u-step-list strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--u-blue);
  color: #fff;
  margin-bottom: 18px;
}

.u-step-list h3,
.u-service-card span {
  color: var(--u-blue);
  font-size: 1.25rem;
  font-weight: 900;
}

.u-services,
.u-testimonials {
  background: #f7f8fd;
}

.u-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.u-section-head .u-eyebrow {
  margin: 0 auto;
}

.u-service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.u-service-card {
  padding: 0 0 24px;
  overflow: hidden;
  border: 1px solid var(--u-border);
  text-align: center;
  color: var(--u-text);
}

.u-service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef2ff;
}

.u-service-card span {
  display: block;
  margin: 20px 18px 6px;
}

.u-service-card p {
  margin: 0 auto;
  color: var(--u-muted);
  padding: 0 16px;
}

.u-service-card:hover {
  transform: translateY(-4px);
}

.u-band {
  background: var(--u-blue);
  color: #fff;
  padding: 64px 0;
  overflow: hidden;
}

.u-band h2,
.u-band p {
  color: #fff;
}

.u-band img {
  margin: -70px 0 -82px auto;
  max-height: 380px;
  object-fit: contain;
}

.u-app {
  background: #fff;
}

.u-phone {
  max-height: 560px;
  margin: 0 auto;
}

.u-store-row {
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.u-store-row img {
  height: 48px;
}

.u-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.u-faq-list details {
  border: 1px solid var(--u-border);
  padding: 0;
  overflow: hidden;
}

.u-faq-list summary {
  cursor: pointer;
  padding: 22px 28px;
  color: var(--u-blue);
  font-size: 1.15rem;
  font-weight: 900;
}

.u-faq-list p {
  padding: 0 28px 24px;
  color: var(--u-muted);
  max-width: none;
}

.u-test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.u-test-grid article {
  padding: 28px;
  border: 1px solid var(--u-border);
}

.u-test-grid p {
  color: var(--u-text);
  font-weight: 600;
}

.u-test-grid img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  margin: 24px 0 8px;
}

.u-test-grid strong,
.u-test-grid span {
  display: block;
}

.u-test-grid span {
  color: var(--u-muted);
  font-size: .9rem;
}

.u-clube {
  background: var(--u-blue-dark);
  color: #fff;
  overflow: hidden;
}

.u-clube h2,
.u-clube p {
  color: #fff;
}

.u-clube-grid > img {
  max-height: 210px;
  margin: 0 auto;
}

.u-logo-strip {
  display: flex;
  gap: 54px;
  align-items: center;
  justify-content: center;
  padding: 36px 24px 0;
  flex-wrap: wrap;
}

.u-logo-strip img {
  max-height: 42px;
  max-width: 150px;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.u-footer {
  background: #05083f;
  color: #fff;
  padding-top: 64px;
}

.u-footer-grid {
  grid-template-columns: 1.5fr repeat(3, 1fr);
  align-items: start;
}

.u-footer img {
  max-width: 180px;
  margin-bottom: 18px;
}

.u-footer p,
.u-footer a {
  color: rgba(255, 255, 255, .72);
}

.u-footer h3 {
  color: var(--u-yellow);
  font-size: 1rem;
  margin-bottom: 18px;
}

.u-footer a {
  display: block;
  margin-bottom: 10px;
}

.u-copy {
  margin-top: 52px;
  padding: 22px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: .85rem;
}

.u-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 34px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .34);
}

@media (max-width: 1080px) {
  .u-menu { gap: 14px; }
  .u-service-grid { grid-template-columns: repeat(3, 1fr); }
  .u-hero-grid,
  .u-sim-grid,
  .u-section-grid,
  .u-app-grid,
  .u-clube-grid,
  .u-footer-grid {
    grid-template-columns: 1fr;
  }
  .u-band-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .u-band img {
    margin: 10px auto -80px;
  }
}

@media (max-width: 820px) {
  .u-topbar { display: none; }
  .u-nav-inner { min-height: 76px; }
  .u-logo { min-width: 0; }
  .u-logo img { width: 140px; }
  .u-logo span { font-size: 10px; padding: 5px 7px; }
  .u-menu-toggle { display: grid; place-items: center; }
  .u-menu {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 20px 35px rgba(16, 24, 80, .15);
  }
  .u-menu.active { display: flex; }
  .u-menu a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--u-border);
  }
  .u-nav-cta { margin-top: 10px; border-bottom: 0 !important; }
  .u-hero {
    min-height: 0;
    padding: 58px 0;
    background:
      linear-gradient(180deg, rgba(5, 9, 88, .94), rgba(18, 26, 159, .86)),
      url("../img/universo/carro_bandeira.png") center bottom / 110% auto no-repeat,
      var(--u-blue);
  }
  .u-about-card { padding: 26px; }
  .u-sim-image,
  .u-sim-image img {
    min-height: 320px;
  }
  .u-step-list,
  .u-test-grid {
    grid-template-columns: 1fr;
  }
  .u-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .u-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .u-logo span { display: none; }
  .u-hero-copy h1 {
    font-size: 2.2rem;
  }
  .u-btn,
  .u-nav-cta {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .u-service-grid {
    grid-template-columns: 1fr;
  }
  .u-band img {
    max-height: 260px;
  }
  .u-footer-grid {
    gap: 28px;
  }
}

/* Global AGV MG 167 identity unification */
body:not(.u-home) {
  background: #fff;
}

body:not(.u-home) .site-header {
  height: 96px;
  background: #fff;
  border-bottom: 1px solid rgba(18, 26, 159, .1);
  box-shadow: 0 12px 30px rgba(16, 24, 80, .08);
}

body:not(.u-home) .site-header::before {
  height: 28px;
  background: #060a68;
  color: #fff;
  content: 'proteção veicular | assistência 24h com atendimento regional | Escritório AGV MG 167';
}

body:not(.u-home) .header-container {
  min-height: 68px;
}

body:not(.u-home) .logo-wrapper {
  gap: 14px;
}

body:not(.u-home) .logo-img {
  height: 42px;
  min-width: 145px;
  object-fit: contain;
}

body:not(.u-home) .mg150-tag {
  background: #f8b316;
  color: #060a68;
  border-radius: 5px;
  padding: 7px 10px;
  box-shadow: none;
  letter-spacing: 0;
}

body:not(.u-home) .mg150-tag::before {
  content: 'Escritório';
  font-size: .58rem;
  margin-right: 3px;
}

body:not(.u-home) .nav-menu {
  gap: 24px;
}

body:not(.u-home) .nav-link {
  color: #060a68;
  font-size: .9rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}

body:not(.u-home) .nav-link::after {
  background: #f8b316;
}

body:not(.u-home) .header-actions .btn,
body:not(.u-home) .btn-primary {
  background: #f8b316;
  color: #060a68;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(248, 179, 22, .24);
}

body:not(.u-home) .header-actions .btn:hover,
body:not(.u-home) .btn-primary:hover {
  background: #e39a00;
  color: #fff;
}

body:not(.u-home) .pt-header {
  padding-top: calc(96px + var(--sp-8));
}

body:not(.u-home) .page-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(96px + 64px) 0 72px;
  background:
    linear-gradient(90deg, rgba(5, 9, 88, .95), rgba(18, 26, 159, .74) 50%, rgba(18, 26, 159, .2)),
    url("../img/universo/carro_bandeira.png") right center / auto 95% no-repeat,
    #121a9f;
}

body:not(.u-home) .page-hero::after {
  content: 'Escritório AGV MG 167';
  position: absolute;
  left: auto;
  right: clamp(18px, 6vw, 86px);
  bottom: 28px;
  width: auto;
  height: auto;
  background: #f8b316;
  color: #060a68;
  border-radius: 5px;
  padding: 9px 14px;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

body:not(.u-home) .page-hero .container {
  position: relative;
  z-index: 1;
}

body:not(.u-home) .page-hero .hero-title {
  color: #fff;
  max-width: 760px;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.02;
  font-weight: 900;
  text-align: left;
}

body:not(.u-home) .page-hero .hero-title strong {
  color: #f8b316;
  background: none;
  -webkit-text-fill-color: currentColor;
}

body:not(.u-home) .page-hero .hero-subtitle {
  color: rgba(255,255,255,.88);
  max-width: 620px;
  margin-left: 0;
  text-align: left;
}

body:not(.u-home) .page-hero .hero-btns {
  justify-content: flex-start;
}

body:not(.u-home) .breadcrumb {
  color: #6f7689;
  border-bottom: 1px solid #e6e9f2;
  margin-bottom: 34px;
}

body:not(.u-home) .section-title h2,
body:not(.u-home) .details-content h2,
body:not(.u-home) .card h3,
body:not(.u-home) .card h4 {
  color: #121a9f;
}

body:not(.u-home) .card {
  border-radius: 8px;
  border: 1px solid #e6e9f2;
  box-shadow: 0 18px 45px rgba(16, 24, 80, .1);
}

body:not(.u-home) .img-container {
  border-radius: 8px;
}

body:not(.u-home) .btn-outline {
  border-color: #121a9f;
  color: #121a9f;
  border-radius: 6px;
}

body:not(.u-home) .btn-outline:hover {
  background: #121a9f;
  color: #fff;
}

body:not(.u-home) .site-footer {
  background: #05083f;
}

body:not(.u-home) .site-footer::before {
  background: #f8b316;
}

body:not(.u-home) .footer-logo {
  height: auto;
  max-width: 180px;
}

@media (max-width: 1024px) {
  body:not(.u-home) .nav-menu {
    gap: 16px;
  }

  body:not(.u-home) .logo-img {
    height: 38px;
    min-width: 128px;
  }
}

@media (max-width: 768px) {
  body:not(.u-home) .site-header {
    height: 78px;
    align-items: center;
  }

  body:not(.u-home) .site-header::before {
    display: none;
  }

  body:not(.u-home) .header-container {
    min-height: 78px;
  }

  body:not(.u-home) .nav-menu {
    top: 78px;
  }

  body:not(.u-home) .page-hero {
    min-height: 0;
    padding: calc(78px + 48px) 0 56px;
    background:
      linear-gradient(180deg, rgba(5, 9, 88, .96), rgba(18, 26, 159, .88)),
      url("../img/universo/carro_bandeira.png") center bottom / 115% auto no-repeat,
      #121a9f;
  }

  body:not(.u-home) .page-hero::after {
    position: static;
    display: inline-flex;
    margin-top: 22px;
  }

  body:not(.u-home) .pt-header {
    padding-top: calc(78px + var(--sp-6));
  }
}

@media (max-width: 480px) {
  body:not(.u-home) .logo-img {
    height: 34px;
    min-width: 114px;
  }

  body:not(.u-home) .mg150-tag {
    font-size: .58rem;
    padding: 5px 7px;
  }

  body:not(.u-home) .mg150-tag::before {
    display: none;
  }
}
