/* 
  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=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@700;800;900&display=swap');

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

:root {
  /* ── Brand Palette ── */
  --navy-950: #050d1a;
  --navy-900: #0a1a33;
  --navy-800: #0f2847;
  --navy-700: #14375c;
  --navy-600: #1a4670;
  --navy-500: #1f5585;
  --navy-400: #2a6da3;
  --navy-300: #4a8dc3;

  --gold-600: #b8860b;
  --gold-500: #d4a017;
  --gold-400: #e8b830;
  --gold-300: #f0ca50;
  --gold-200: #f5dca0;
  --gold-100: #fdf3e0;

  /* ── 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: 'Inter', 'Open Sans', 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: 80px;

  /* ── 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: var(--header-height);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 40, 71, 0.06);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
}

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

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

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

/* ── MG150 Authority Seal ── */
.mg150-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(145deg, var(--gold-500), var(--gold-600));
  color: #fff;
  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: '✦';
  font-size: 0.55rem;
  opacity: 0.9;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-body);
  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(--navy-700);
}

.nav-link.active {
  color: var(--navy-800);
  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%, #030810 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;
  }

  .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(90px + var(--sp-8)) 0 var(--sp-8);
  text-align: center;
  color: var(--text-inverse);
}
.page-hero .hero-title {
  font-family: var(--ff-display);
  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(--ff-display);
  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(--ff-display);
  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(--ff-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(90px + 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); }
}
