/* ═══════════════════════════════════════════════════════
   TK DISTRIBUIDORA — DESIGN SYSTEM
   Paleta extraída da identidade visual da marca:
   Azul marinho, laranja acento, tons neutros claros
═══════════════════════════════════════════════════════ */

:root {
  /* ── Cores Primárias ── */
  --blue-900: #0F2341;
  --blue-800: #152E52;
  --blue-700: #1B3A6B;
  --blue-600: #224A87;
  --blue-500: #2D5FAA;
  --blue-400: #4A7CC4;
  --blue-300: #7BA3DB;
  --blue-200: #B2CDE8;
  --blue-100: #DAE8F5;
  --blue-50:  #EDF3FA;

  /* ── Laranja Acento ── */
  --orange-600: #C85E1A;
  --orange-500: #E8732A;
  --orange-400: #F08C4B;
  --orange-300: #F5AA76;
  --orange-200: #FACFAE;
  --orange-100: #FDE8D6;
  --orange-50:  #FFF5ED;

  /* ── Neutros ── */
  --gray-900: #1A1D23;
  --gray-800: #2D3139;
  --gray-700: #404550;
  --gray-600: #5A6072;
  --gray-500: #767D8E;
  --gray-400: #9DA3B0;
  --gray-300: #C4C8D2;
  --gray-200: #E2E5EB;
  --gray-100: #F0F2F5;
  --gray-50:  #F7F8FA;
  --white:    #FFFFFF;

  /* ── Semânticas ── */
  --primary: var(--blue-700);
  --primary-dark: var(--blue-900);
  --primary-light: var(--blue-50);
  --accent: var(--orange-500);
  --accent-dark: var(--orange-600);
  --bg-body: var(--gray-50);
  --bg-section: var(--white);
  --bg-section-alt: var(--gray-50);
  --text-heading: var(--blue-900);
  --text-body: var(--gray-700);
  --text-muted: var(--gray-500);
  --border: var(--gray-200);
  --shadow-sm: 0 1px 3px rgba(15, 35, 65, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 35, 65, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 35, 65, 0.12);
  --shadow-xl: 0 24px 64px rgba(15, 35, 65, 0.16);

  /* ── Tipografia ── */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;

  /* ── Espaçamento ── */
  --section-py: clamp(4rem, 8vw, 7rem);

  /* ── Transições ── */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.3s;
  --duration-slow: 0.6s;

  /* ── Raios ── */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}


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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--blue-200);
  color: var(--blue-900);
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--duration) var(--ease-smooth);
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  line-height: 1.15;
}


/* ═══════════════════════════════════════════════════════
   ANIMAÇÕES
═══════════════════════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes scroll-wheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8px); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes slideInFromRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

/* States for scroll-triggered animations */
[data-animate] {
  opacity: 0;
  will-change: transform, opacity;
}

[data-animate].animate-visible {
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-timing-function: var(--ease-smooth);
}

[data-animate="fadeUp"].animate-visible    { animation-name: fadeUp; }
[data-animate="fadeLeft"].animate-visible  { animation-name: fadeLeft; }
[data-animate="fadeRight"].animate-visible { animation-name: fadeRight; }
[data-animate="scaleIn"].animate-visible   { animation-name: scaleIn; }


/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */

.navbar {
  padding: 1rem 0;
  transition: all var(--duration-slow) var(--ease-smooth);
  background: transparent;
  z-index: 1050;
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 24px rgba(15, 35, 65, 0.08);
  padding: 0.5rem 0;
}

/* ── Brand / Logo ── */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.brand-logo img {
  height: 48px;
  width: auto;
  transition: opacity var(--duration) var(--ease-smooth);
}

.brand-logo .logo-for-light {
  display: none;
}

.navbar-scrolled .brand-logo .logo-for-dark {
  display: none;
}

.navbar-scrolled .brand-logo .logo-for-light {
  display: block;
}

/* ── Nav Links ── */
.navbar-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width var(--duration) var(--ease-smooth);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 60%;
}

.navbar-scrolled .nav-link {
  color: var(--text-body);
}

.navbar-scrolled .nav-link:hover {
  color: var(--primary);
}

.btn-cta-nav {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: var(--white) !important;
  border: none;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all var(--duration) var(--ease-smooth);
  box-shadow: 0 2px 12px rgba(232, 115, 42, 0.3);
}

.btn-cta-nav:hover {
  background: var(--accent-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 115, 42, 0.4);
}

/* ── Mobile Toggle ── */
.navbar-toggler {
  border: none;
  background: none;
  width: 36px;
  height: 36px;
  padding: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.navbar-toggler-bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease-smooth);
  position: relative;
}

.navbar-toggler-bar::before,
.navbar-toggler-bar::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: inherit;
  border-radius: 2px;
  transition: all var(--duration) var(--ease-smooth);
}
.navbar-toggler-bar::before { top: -7px; }
.navbar-toggler-bar::after  { bottom: -7px; }

.navbar-scrolled .navbar-toggler-bar,
.navbar-scrolled .navbar-toggler-bar::before,
.navbar-scrolled .navbar-toggler-bar::after {
  background: var(--gray-700);
}

.navbar-toggler-bar.active {
  background: transparent;
}
.navbar-toggler-bar.active::before {
  top: 0;
  transform: rotate(45deg);
  background: var(--white);
}
.navbar-toggler-bar.active::after {
  bottom: 0;
  transform: rotate(-45deg);
  background: var(--white);
}
.navbar-scrolled .navbar-toggler-bar.active::before,
.navbar-scrolled .navbar-toggler-bar.active::after {
  background: var(--gray-700);
}

@media (max-width: 991.98px) {
  .navbar-toggler { display: flex; }
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.5rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--duration) var(--ease-smooth);
  }
  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.125rem;
  }
  .nav-link {
    color: var(--text-body) !important;
    padding: 0.75rem 1rem;
  }
  .nav-link::after { display: none; }
  .nav-link:hover { background: var(--gray-50); }
  .nav-cta { margin-top: 0.5rem; }
  .btn-cta-nav { width: 100%; justify-content: center; padding: 0.75rem; }
}


/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */

.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 40%, var(--blue-800) 100%);
  overflow: hidden;
  min-height: 100vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 90%, rgba(232, 115, 42, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(45, 95, 170, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle grid pattern */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Grain texture */
.hero-section::after {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
  pointer-events: none;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: var(--orange-300);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero-highlight {
  color: var(--orange-400);
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange-400);
  opacity: 0.3;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-hero-primary {
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--duration) var(--ease-smooth);
  box-shadow: 0 4px 24px rgba(232, 115, 42, 0.35);
}

.btn-hero-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 115, 42, 0.45);
}

.btn-hero-outline {
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.9375rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all var(--duration) var(--ease-smooth);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── Hero Stats ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  line-height: 1.3;
  margin-top: 0.25rem;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* ── Hero Image ── */
.hero-image-wrapper {
  position: relative;
  margin-top: 2rem;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.hero-image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  border-radius: var(--radius-xl);
  opacity: 0.2;
  z-index: 0;
}


/* ── Scroll Indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  animation: scroll-wheel 1.8s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}


/* ═══════════════════════════════════════════════════════
   SOCIAL PROOF BAR
═══════════════════════════════════════════════════════ */

.proof-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 5;
}

.proof-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--gray-100);
  transition: all var(--duration) var(--ease-smooth);
}

.proof-item:last-child {
  border-right: none;
}

.proof-item:hover {
  background: var(--blue-50);
}

.proof-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease-smooth);
}

.proof-item:hover .proof-icon-wrap {
  background: linear-gradient(135deg, var(--orange-100), var(--orange-50));
  transform: scale(1.05);
}

.proof-icon-wrap i {
  font-size: 1.25rem;
  color: var(--blue-600);
  transition: color var(--duration) var(--ease-smooth);
}

.proof-item:hover .proof-icon-wrap i {
  color: var(--accent);
}

.proof-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.2;
}

.proof-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .proof-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-item:nth-child(2) {
    border-right: none;
  }
  .proof-item:nth-child(1),
  .proof-item:nth-child(2) {
    border-bottom: 1px solid var(--gray-100);
  }
}

@media (max-width: 479.98px) {
  .proof-items {
    grid-template-columns: 1fr;
  }
  .proof-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
  }
  .proof-item:last-child {
    border-bottom: none;
  }
}


/* ═══════════════════════════════════════════════════════
   TICKER / MARQUEE
═══════════════════════════════════════════════════════ */

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.ticker-section {
  background: var(--blue-900);
  padding: 0.625rem 0;
  overflow: hidden;
  position: relative;
}

.ticker-section::before,
.ticker-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--blue-900), transparent);
}

.ticker-section::after {
  right: 0;
  background: linear-gradient(270deg, var(--blue-900), transparent);
}

.ticker-track {
  display: flex;
}

.ticker-content {
  display: flex;
  flex-shrink: 0;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding: 0 0.5rem;
}

.ticker-item i {
  font-size: 0.6875rem;
  color: var(--orange-400);
}

.ticker-dot {
  font-size: 0.375rem;
  margin-left: 0.75rem;
  opacity: 0.3;
}


/* ═══════════════════════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════════════════════ */

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
}

.section-label span {
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  display: inline-block;
}

.section-label-center {
  justify-content: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-heading);
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  line-height: 1.08;
}

.text-accent {
  color: var(--accent);
}

.section-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.section-text-center {
  max-width: 620px;
}


/* ═══════════════════════════════════════════════════════
   ABOUT / LEADERSHIP
═══════════════════════════════════════════════════════ */

.section-about {
  padding: var(--section-py) 0;
  background: var(--bg-section);
}

.about-image-grid {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image-main img {
  width: 100%;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.about-image-grid:hover .about-image-main img {
  transform: scale(1.03);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  z-index: 2;
}

.about-badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}

.about-badge-text {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.about-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all var(--duration) var(--ease-smooth);
}

.about-feature-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-color: var(--blue-100);
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-600);
  font-size: 1.125rem;
}

.about-feature-item strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--blue-900);
  margin-bottom: 0.125rem;
}

.about-feature-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════
   LOGISTICS & TECHNOLOGY
═══════════════════════════════════════════════════════ */

.section-logistics {
  padding: var(--section-py) 0;
  background: var(--bg-section-alt);
  position: relative;
}

.section-logistics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.logistics-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.logistics-image-wrapper img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.logistics-image-wrapper:hover img {
  transform: scale(1.03);
}

.logistics-overlay-card {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

.logistics-overlay-card i {
  font-size: 1.25rem;
  color: var(--accent);
}

.logistics-overlay-card span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-900);
  line-height: 1.3;
}

.logistics-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.logistics-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--duration) var(--ease-smooth);
}

.logistics-feature:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.logistics-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-600);
  font-size: 1rem;
}

.logistics-feature strong {
  display: block;
  font-size: 0.875rem;
  color: var(--blue-900);
  margin-bottom: 0.125rem;
}

.logistics-feature p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════
   TECHNICAL SUPPORT
═══════════════════════════════════════════════════════ */

.section-support {
  padding: var(--section-py) 0;
  background: var(--bg-section);
}

.support-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.support-image-wrapper img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.support-image-wrapper:hover img {
  transform: scale(1.03);
}

.support-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all var(--duration) var(--ease-smooth);
}

.support-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-200);
  transform: translateY(-2px);
}

.support-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--orange-100), var(--orange-50));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.25rem;
}

.support-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 0.25rem;
}

.support-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════
   TEAM / B2B
═══════════════════════════════════════════════════════ */

.section-team {
  padding: var(--section-py) 0;
  background: var(--bg-section-alt);
}

.team-segments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.team-segment {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--duration) var(--ease-smooth);
}

.team-segment:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-sm);
}

.team-segment-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-600);
  font-size: 0.9375rem;
}

.team-segment span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue-900);
}

.team-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.team-image-wrapper img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.team-image-wrapper:hover img {
  transform: scale(1.03);
}

.team-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(15, 35, 65, 0.7) 0%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem;
}

.team-overlay-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
}

.team-overlay-content i {
  font-size: 1.125rem;
  color: var(--orange-300);
}


/* ═══════════════════════════════════════════════════════
   DELIVERY / FLEET
═══════════════════════════════════════════════════════ */

.section-delivery {
  padding: var(--section-py) 0;
  background: var(--bg-section);
}

.delivery-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.delivery-image-wrapper img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.delivery-image-wrapper:hover img {
  transform: scale(1.03);
}

.delivery-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.delivery-highlight {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all var(--duration) var(--ease-smooth);
}

.delivery-highlight:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-color: var(--blue-100);
  transform: translateX(4px);
}

.delivery-highlight > i {
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.delivery-highlight strong {
  display: block;
  font-size: 0.875rem;
  color: var(--blue-900);
}

.delivery-highlight span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════ */

.section-cta {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.15);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15, 35, 65, 0.92) 0%,
    rgba(27, 58, 107, 0.88) 50%,
    rgba(15, 35, 65, 0.95) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-icon-ring i {
  font-size: 2rem;
  color: var(--white);
}

.cta-icon-ring::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(37, 211, 102, 0.25);
  border-radius: 50%;
  animation: pulse-ring 2s ease-in-out infinite;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--white);
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  line-height: 1.08;
}

.cta-title span {
  color: var(--orange-400);
}

.cta-text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-cta-whatsapp {
  padding: 1rem 2.25rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: all var(--duration) var(--ease-smooth);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.45);
}

.btn-cta-phone {
  padding: 1rem 2rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--duration) var(--ease-smooth);
}

.btn-cta-phone:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.cta-trust {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.cta-trust-item i {
  color: var(--orange-400);
  font-size: 0.875rem;
}


/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */

.site-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 3.5rem 0 0;
}

.logo-footer {
  height: 56px;
  width: auto;
  opacity: 0.9;
}

.footer-description {
  font-size: 0.875rem;
  margin-top: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--duration) var(--ease-smooth);
}

.footer-links a:hover {
  color: var(--orange-400);
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--orange-400);
  font-size: 0.9375rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact span,
.footer-contact a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer-contact a:hover {
  color: var(--orange-400);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}


/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 1000;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition: all var(--duration) var(--ease-smooth);
}

.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.whatsapp-float:hover {
  color: var(--white);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: pulse-ring 2s ease-in-out infinite;
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE REFINEMENTS
═══════════════════════════════════════════════════════ */

@media (max-width: 991.98px) {
  .hero-content {
    padding-top: 120px;
  }
  .hero-title {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
  }
  .hero-stats {
    gap: 1.25rem;
  }
  .hero-stat-number {
    font-size: 1.75rem;
  }
  .about-image-badge {
    width: 100px;
    height: 100px;
    bottom: -10px;
    right: 0;
  }
  .about-badge-number {
    font-size: 1.625rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
  }
  .hero-content .row {
    min-height: auto;
    padding: 0 0 6rem;
  }
  .hero-stats {
    gap: 1rem;
    flex-wrap: wrap;
  }
  .hero-stat-divider {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-scroll-indicator {
    display: none;
  }
  .team-segments {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .cta-trust {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-badge {
    font-size: 0.75rem;
  }
  .section-title {
    font-size: 1.875rem;
  }
  .about-image-badge {
    width: 80px;
    height: 80px;
  }
  .about-badge-number {
    font-size: 1.375rem;
  }
  .about-badge-text {
    font-size: 0.5625rem;
  }
}
