/* Import modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-white: #ffffff;
  --bg-light: #ffffff;
  --bg-dark: #0f172a;
  --bg-dark-card: #1e293b;
  
  /* Brand Colors */
  --brand-orange: #E22B2B;
  --brand-orange-hover: #c81e1e;
  --brand-orange-light: rgba(226, 43, 43, 0.08);
  
  --brand-green: #158B49;
  --brand-green-hover: #106e39;
  --brand-green-light: rgba(21, 139, 73, 0.15);
  
  --brand-blue: #0A369D;
  --brand-blue-hover: #082b7e;
  --brand-blue-light: rgba(10, 54, 157, 0.08);
  --brand-dark-blue: #051c54;
  
  --color-red: #E22B2B;
  --color-blue: #0A369D;
  --color-green: #158B49;
  
  /* Typography Colors */
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  
  /* Layout and effects */
  --border-color: #e2e8f0;
  --border-color-dark: #334155;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  background-color: var(--bg-dark);
}

body {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  background-color: var(--primary-white);
  color: var(--text-body);
  line-height: 1.6;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

img, video, svg {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button, input, textarea, select {
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 80px 0;
  position: relative;
}

.section-bg-alt {
  background-color: var(--bg-light);
}

/* Section Header Utility */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header .tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--brand-orange-light);
  color: var(--brand-orange);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header h2 span {
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Navigation Bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}

header:not(.scrolled) {
  padding: 20px 0;
  background: rgba(40, 40, 40, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-white);
  transition: var(--transition);
}

header.scrolled .logo {
  color: var(--text-dark);
}

.logo svg {
  width: 40px;
  height: 40px;
}

.logo-text span {
  color: var(--brand-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-orange);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-white);
}

header.scrolled .nav-links a {
  color: var(--text-body);
}

header.scrolled .nav-links a:hover,
header.scrolled .nav-links a.active {
  color: var(--brand-orange);
}

/* Nav Contact CTA Button */
.nav-cta a {
  background-color: var(--brand-blue);
  color: var(--primary-white) !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(10, 54, 157, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.nav-cta a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

.nav-cta a::after {
  display: none;
}

.nav-cta a:hover {
  background-color: #082b7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 54, 157, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1005;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #0f172a !important; /* Dark color */
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0) 100%), url('assets/hero_truck.jpg') no-repeat center center/cover;
  color: var(--text-dark);
  padding-top: 80px;
}

.hero-content {
  max-width: 750px;
}

.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--brand-blue-light);
  border: 1px solid rgba(10, 54, 157, 0.15);
  color: var(--brand-blue);
  border-radius: 50px;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.hero-content .badge span {
  width: 8px;
  height: 8px;
  background-color: var(--brand-orange);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--brand-orange);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-sub-title {
  font-size: 0.5em;
  font-style: italic;
  font-weight: 400;
  margin-right: 0.25em;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(to right, rgb(0, 66, 242) 0%, rgb(0, 19, 76) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-main-title {
  font-weight: 800;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-bottom: 0.2em;
  background: linear-gradient(to right, rgb(0, 66, 242) 0%, rgb(0, 19, 76) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-main-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5em;
  height: 5px;
  background: linear-gradient(to right, rgb(115, 242, 116) 0%, rgb(115, 242, 116) 40%, rgb(241, 0, 0) 40%, rgb(241, 0, 0) 75%, rgb(0, 66, 242) 75%, rgb(0, 66, 242) 100%);
  border-radius: 2px;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}

.hero p.slogan {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--brand-blue);
  margin-bottom: 15px;
  max-width: 800px;
}

.hero p.hero-description {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 40px;
  max-width: 700px;
  line-height: 1.6;
}

.slogan-blue {
  background: linear-gradient(to right, rgb(0, 66, 242) 0%, rgb(0, 19, 76) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.slogan-green {
  background: linear-gradient(to right, rgb(115, 242, 116) 0%, rgb(0, 152, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.05rem;
  gap: 10px;
}

.btn-primary {
  background-color: var(--brand-blue);
  color: var(--primary-white);
  box-shadow: 0 6px 20px rgba(10, 54, 157, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.btn-primary:hover {
  background-color: #082b7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(10, 54, 157, 0.5);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-white);
  transform: translateY(-3px);
}

/* Sobre Nosotros Section (Slider) */
.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background-color: var(--primary-white);
}

.slider-wrapper {
  position: relative;
  height: 520px;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background-color: var(--primary-white);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.slide-image {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.slide.active .slide-image img {
  transform: scale(1.05);
}

/* Subtle overlay on slide images */
.slide-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent 50%, rgba(255,255,255,0.05));
}

.slide-content {
  padding: 45px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-tag {
  color: var(--brand-blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.slide-content h3 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.slide-content p {
  color: var(--text-body);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

/* Stat badges inside slider */
.slide-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: auto;
}

.stat-item {
  border-left: 3px solid var(--brand-orange);
  padding-left: 15px;
}

.slide:nth-child(2) .stat-item {
  border-left-color: var(--brand-blue);
}

.slide:nth-child(3) .stat-item {
  border-left-color: var(--brand-green);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Slider Controls */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-white);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: var(--transition);
  color: var(--text-dark);
}

.slider-control:hover {
  background-color: var(--brand-orange);
  color: var(--primary-white);
  box-shadow: 0 4px 15px rgba(226, 43, 43, 0.4);
}

.slider-control-prev {
  left: 20px;
}

.slider-control-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 25px;
  right: 80px;
  display: flex;
  gap: 10px;
  z-index: 20;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  width: 30px;
  border-radius: 10px;
  background-color: var(--brand-orange);
}

/* Filosofia Section */
.filosofia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.filosofia-card {
  background-color: var(--primary-white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.filosofia-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  transition: var(--transition);
}

.filosofia-card.mision::before {
  background: linear-gradient(to right, var(--brand-orange), var(--brand-blue));
}

.filosofia-card.vision::before {
  background: linear-gradient(to right, var(--brand-blue), var(--brand-green));
}

.filosofia-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.filosofia-icon-container {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.mision .filosofia-icon-container {
  background-color: var(--brand-orange-light);
  color: var(--brand-orange);
}

.vision .filosofia-icon-container {
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
}

.filosofia-icon-container svg {
  width: 36px;
  height: 36px;
}

.filosofia-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.filosofia-card p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.filosofia-pillars {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.pillar-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mision .pillar-item svg {
  color: var(--brand-orange);
}

.vision .pillar-item svg {
  color: var(--brand-blue);
}

/* Watermark illustration behind cards */
.filosofia-watermark {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  opacity: 0.03;
  color: var(--text-dark);
  z-index: 1;
  transition: var(--transition-slow);
}

.filosofia-card:hover .filosofia-watermark {
  transform: scale(1.1) rotate(-10deg);
  opacity: 0.05;
}

/* Objetivos Section */
.objetivos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.objetivo-card {
  background-color: var(--bg-dark-card);
  color: var(--text-light);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color-dark);
}

.objetivo-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background-color: var(--brand-orange);
  transition: var(--transition);
}

.objetivo-card:nth-child(2)::after {
  background-color: var(--brand-blue);
}

.objetivo-card:nth-child(3)::after {
  background-color: var(--brand-green);
}

.objetivo-card:nth-child(4)::after {
  background-color: var(--brand-orange);
}

.objetivo-card:hover::after {
  width: 100%;
}

.objetivo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.1);
}

.objetivo-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.85;
  margin-bottom: 15px;
  transition: var(--transition);
}

.objetivo-card:hover .objetivo-number {
  opacity: 1;
  transform: scale(1.05);
}

.objetivo-card:nth-child(1) .objetivo-number { color: var(--brand-orange); }
.objetivo-card:nth-child(2) .objetivo-number { color: var(--brand-blue); }
.objetivo-card:nth-child(3) .objetivo-number { color: var(--brand-green); }
.objetivo-card:nth-child(4) .objetivo-number { color: var(--brand-orange); }

.objetivo-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.objetivo-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Beneficios Section */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.beneficio-card {
  background-color: var(--primary-white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.beneficio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.beneficio-card:nth-child(1) { border-top: 4px solid var(--brand-orange); }
.beneficio-card:nth-child(2) { border-top: 4px solid var(--brand-blue); }
.beneficio-card:nth-child(3) { border-top: 4px solid var(--brand-green); }
.beneficio-card:nth-child(4) { border-top: 4px solid var(--brand-orange); }

.beneficio-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.beneficio-card:nth-child(1) .beneficio-icon { background-color: rgba(226, 43, 43, 0.08); color: var(--color-red); }
.beneficio-card:nth-child(2) .beneficio-icon { background-color: rgba(10, 54, 157, 0.08); color: var(--color-blue); }
.beneficio-card:nth-child(3) .beneficio-icon { background-color: rgba(21, 139, 73, 0.15); color: var(--color-green); }
.beneficio-card:nth-child(4) .beneficio-icon { background-color: rgba(226, 43, 43, 0.08); color: var(--color-red); }

.beneficio-card:hover .beneficio-icon {
  transform: scale(1.05);
}

.beneficio-icon svg {
  width: 36px;
  height: 36px;
}

.beneficio-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.beneficio-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contacto Section */
.contacto-grid {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 50px;
  align-items: start;
}

.contacto-info {
  background-color: var(--brand-dark-blue);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contacto-info::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(10, 54, 157, 0.15) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  border-radius: 50%;
}

.contacto-info h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.contacto-info p.info-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  position: relative;
  z-index: 2;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item:nth-child(2) .info-icon {
  color: var(--brand-blue);
}

.info-item:nth-child(3) .info-icon {
  color: var(--brand-green);
}

.info-icon svg {
  width: 22px;
  height: 22px;
}

.info-text h4 {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.info-text p, .info-text a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-white);
}

.info-text a:hover {
  color: var(--brand-orange);
}

/* Contact Form container */
.contacto-form-container {
  background-color: var(--primary-white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contacto-form-container h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group label span.optional {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--brand-orange);
  background-color: var(--primary-white);
  box-shadow: 0 0 0 4px var(--brand-orange-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* "O" Separator */
.separator-or {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  font-weight: 600;
  margin: 10px 0;
  font-size: 0.95rem;
}

.separator-or::before,
.separator-or::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}

.separator-or:not(:empty)::before {
  margin-right: 15px;
}

.separator-or:not(:empty)::after {
  margin-left: 15px;
}

/* WhatsApp Button styling */
.btn-whatsapp {
  background-color: var(--brand-green);
  color: var(--primary-white);
  box-shadow: 0 6px 20px rgba(21, 139, 73, 0.3);
  font-size: 1.05rem;
  padding: 16px 28px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  width: 100%;
}

.btn-whatsapp:hover {
  background-color: var(--brand-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(21, 139, 73, 0.4);
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Footer Section */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 40px 0;
  margin-top: auto;
  margin-bottom: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--primary-white);
  margin-bottom: 20px;
}

.footer-slogan {
  font-size: 0.92rem;
  font-weight: 400;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.footer-brand-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin: 14px 0 20px 0;
  width: 100%;
  max-width: 280px;
}

.footer-brand p:not(.footer-slogan) {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  background-color: var(--brand-orange);
  color: var(--primary-white);
  border-color: var(--brand-orange);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-nav h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-nav h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--brand-orange);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--brand-orange);
  padding-left: 5px;
}

.footer-newsletter h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-newsletter h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--brand-orange);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--primary-white);
  outline: none;
  font-size: 0.9rem;
}

.newsletter-form input:focus {
  border-color: var(--brand-orange);
  background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
  background-color: var(--brand-orange);
  border: none;
  color: var(--primary-white);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--brand-orange-hover);
  transform: translateY(-2px);
}

.newsletter-form button svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
  color: var(--brand-orange);
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(226, 43, 43, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(226, 43, 43, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(226, 43, 43, 0);
  }
}

/* ==========================================================================
   Estilos Adicionales Multivía (Banners, Ticker de Logos, Carrusel de Inicio, CTA)
   ========================================================================== */

/* Banners de Subpáginas */
.page-banner {
  padding: 140px 0 60px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--brand-dark-blue) 100%);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--brand-orange);
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(10, 54, 157, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-banner h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-banner h1 span {
  color: var(--brand-orange);
}

.page-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Sección Intro y Carrusel de Inicio */
.intro-container {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 60px;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-text h2 span {
  color: var(--brand-orange);
}

.intro-text p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.experience-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  background-color: var(--bg-light);
  padding: 15px 25px;
  border-radius: var(--radius-md);
  border-left: 5px solid var(--brand-blue);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.exp-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.exp-text-1 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: -5px;
}

.exp-number {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(to right, rgb(0, 66, 242) 0%, rgb(0, 19, 76) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.exp-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exp-text-2 {
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--brand-blue);
}

.exp-text-3 {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-body);
  letter-spacing: 0.5px;
}

.intro-carousel {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.intro-carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.intro-carousel-img.active {
  opacity: 1;
}

/* Cinta de Logos Infinita (Ticker) */
.ticker-wrap {
  display: none !important; /* Temporarily hidden as requested by user */
  width: 100%;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 30px 0;
  overflow: hidden;
}

.ticker-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
  gap: 60px;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 60px;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  color: var(--text-muted);
  opacity: 0.65;
  transition: var(--transition);
  cursor: default;
}

.logo-item:hover {
  opacity: 1;
  color: var(--brand-blue);
}

.logo-item svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.logo-item span {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Bloque CTA Trabaja Con Nosotros */
.work-cta-banner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--brand-dark-blue) 100%);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 60px 80px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.work-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(226, 43, 43, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.work-cta-banner h3 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.work-cta-banner h3 span {
  color: var(--brand-orange);
}

.work-cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px auto;
  position: relative;
  z-index: 2;
}

.work-cta-banner .btn {
  position: relative;
  z-index: 2;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .slide-content {
    padding: 40px 50px 40px 40px;
  }
  .slide-content h3 {
    font-size: 2rem;
  }
  .objetivos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .hero {
    height: auto;
    padding: 120px 0 80px 0;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0.4) 100%), url('assets/hero_truck.jpg') no-repeat center center/cover;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-content .badge {
    justify-content: center;
  }
  .hero h1 {
    font-size: 3.25rem;
  }
  .slide {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 1fr;
  }
  .slider-wrapper {
    height: 600px;
  }
  .slide-content {
    padding: 30px 40px;
  }
  .slide-content h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }
  .slide-content p {
    margin-bottom: 20px;
  }
  .slider-dots {
    right: 40px;
    bottom: 20px;
  }
  .filosofia-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-carousel {
    height: 350px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  /* Navigation mobile menu */
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition-slow);
    z-index: 1000;
    gap: 24px;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    color: var(--text-dark) !important;
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  header:not(.scrolled) .logo {
    color: var(--text-dark);
  }
  
  header:not(.scrolled) .menu-toggle span {
    background-color: var(--text-dark);
  }
  
  header:not(.scrolled) {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  

  .hero {
    height: auto;
    padding: 150px 0 80px 0;
  }

  .hero h1 {
    font-size: 2.75rem;
  }
  
  .hero p {
    font-size: 1.35rem;
    margin-bottom: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .contacto-form-container {
    padding: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .page-banner {
    padding: 120px 0 50px 0;
  }
  .page-banner h1 {
    font-size: 2.25rem;
  }
  .work-cta-banner {
    padding: 40px 30px;
  }
  .work-cta-banner h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .slider-wrapper {
    height: 650px;
  }
  
  .slide-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .slide-content {
    padding: 20px 25px;
  }
  
  .slider-dots {
    display: none; /* Hide dots on very small screens to avoid clutter */
  }
  
  .objetivos-grid {
    grid-template-columns: 1fr;
  }
  
  .beneficios-grid {
    grid-template-columns: 1fr;
  }
  
  .contacto-info {
    padding: 30px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SCROLL REVEAL DISCOVERY ANIMATIONS ("Efecto de Descubrimiento Suave")
   ========================================================================== */
.reveal-on-scroll,
.reveal-left,
.reveal-right {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll {
  transform: translateY(35px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-on-scroll.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Delay escalonado para grillas y elementos correlativos */
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   Hero Fusion & Frosted Scandinavian Nav Styles (from hero_fusion.html)
   ========================================================================== */

:root {
  --color-red: #E22B2B;
  --color-blue: #0A369D;
  --color-green: #158B49;
  --color-light-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-text-dark: #0f172a;
  --color-text-sub: #475569;
  --font-scandi: 'Plus Jakarta Sans', sans-serif;
  --shadow-soft: 0 20px 45px rgba(10, 54, 157, 0.08);
  --shadow-hover: 0 30px 60px rgba(10, 54, 157, 0.14);
}

.fusion-bg-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image: 
    radial-gradient(rgba(10, 54, 157, 0.07) 1.2px, transparent 1.2px);
  background-size: 32px 32px;
}

.ambient-glow-blue {
  position: absolute;
  top: -120px;
  right: 0;
  width: 500px;
  max-width: 100%;
  height: 500px;
  background: radial-gradient(circle, rgba(10, 54, 157, 0.08) 0%, rgba(226, 43, 43, 0.03) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}



/* LIVE PRICE TICKER BAR */
.ticker-bar {
  background: var(--color-blue);
  color: white;
  padding: 8px 0;
  font-size: 0.84rem;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 101;
  box-shadow: 0 2px 10px rgba(10, 54, 157, 0.15);
}

.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: ticker 25s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker-label {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.ticker-price {
  color: #ffffff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
}

.ticker-badge-urgent {
  background: var(--color-red);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* FROSTED SCANDINAVIAN NAVBAR */
.scandi-nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 54, 157, 0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.scandi-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.scandi-nav .nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  align-items: center;
}

.scandi-nav .nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--color-text-dark);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 6px 0;
  transition: color 0.3s ease;
  display: inline-block;
}

.scandi-nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-red);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.scandi-nav .nav-links a:hover::after,
.scandi-nav .nav-links a.active::after {
  width: 100%;
}

.scandi-nav .nav-links a:hover,
.scandi-nav .nav-links a.active {
  color: var(--color-red);
}

.btn-phone-capsule {
  margin-left: 24px;
  background: rgba(226, 43, 43, 0.08);
  border: 2px solid var(--color-red);
  color: var(--color-red);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-phone-capsule:hover {
  background: var(--color-red);
  color: white;
}

/* HYBRID HERO SPLIT STAGE */
.hero-fusion-section {
  position: relative;
  z-index: 10;
  padding: 60px 6% 80px;
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-light-bg);
}

.hero-fusion-grid {
  max-width: 1280px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Left Side Content */
.sector-tabs-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  background: #ffffff;
  padding: 5px;
  border-radius: 100px;
  width: fit-content;
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.sector-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-text-sub);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sector-tab.active {
  background-color: var(--color-red);
  color: white;
  box-shadow: 0 4px 12px rgba(226, 43, 43, 0.3);
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: var(--color-text-dark);
  margin-bottom: 22px;
}

.hero-headline strong {
  font-weight: 800;
  color: var(--color-blue);
}

.hero-headline span {
  font-weight: 800;
  color: var(--color-red);
}

.hero-subheadline {
  font-size: 1.18rem;
  color: var(--color-text-sub);
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
}

/* Value Pillars Checklist */
.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--color-text-dark);
}

.pillar-check {
  width: 24px;
  height: 24px;
  background: var(--color-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
}

/* Action Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-capsule-red {
  background-color: var(--color-red);
  color: white;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 22px rgba(226, 43, 43, 0.3);
}

.btn-capsule-red:hover {
  background-color: #be1a1a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(226, 43, 43, 0.4);
}

.btn-capsule-blue {
  background-color: white;
  color: var(--color-blue);
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(10, 54, 157, 0.2);
  transition: all 0.3s ease;
}

.btn-capsule-blue:hover {
  border-color: var(--color-blue);
  background: rgba(10, 54, 157, 0.04);
}

/* Right Side Visual */
.hero-right-visual {
  position: relative;
}

.angled-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: var(--shadow-soft);
  background: white;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  transition: transform 0.4s ease;
}

.angled-image-frame:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.angled-image-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Industrial Spec Card */
.industrial-spec-card {
  position: absolute;
  bottom: -55px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(10, 54, 157, 0.12);
  border-top: 4px solid var(--color-green);
  padding: 22px 26px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(10, 54, 157, 0.1);
}

.spec-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.spec-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-green);
  border-radius: 50%;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.spec-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.spec-box-lbl {
  font-size: 0.72rem;
  color: var(--color-text-sub);
  font-weight: 700;
  text-transform: uppercase;
}

.spec-box-val {
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-green);
  margin-top: 2px;
}

/* BOTTOM FEATURE CAPSULES */
.scandi-pills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.pill-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 24px 28px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.pill-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 54, 157, 0.08);
}

.pill-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-green);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pill-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.pill-desc {
  font-size: 0.85rem;
  color: var(--color-text-sub);
  line-height: 1.4;
}

/* Global Overflow Protection */
html {
  overflow-x: hidden !important;
  width: 100% !important;
}

body {
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
}

@media (max-width: 992px) {
  .ambient-glow-blue,
  .filosofia-watermark,
  .contacto-info::before,
  .page-banner::before,
  .work-cta-banner::before {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
  }
  .hero-fusion-section {
    padding: 30px 4% 50px !important;
    min-height: auto !important;
    overflow: hidden !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .hero-fusion-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-bottom: 36px !important;
    width: 100% !important;
  }
  .industrial-spec-card {
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-top: 16px !important;
    padding: 16px 20px !important;
    box-sizing: border-box !important;
    border-radius: 14px !important;
  }
  .scandi-nav {
    padding: 12px 4% !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .btn-phone-capsule {
    margin-left: auto !important;
    margin-right: 12px !important;
  }
  .scandi-nav .nav-links {
    display: none !important;
  }

  .scandi-nav .nav-links.active {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 280px !important;
    max-width: 80vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #ffffff !important;
    padding: 90px 28px 40px 28px !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15) !important;
    z-index: 1000 !important;
    gap: 24px !important;
    margin: 0 !important;
    animation: drawerSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  }

  .scandi-nav .nav-links.is-closing {
    display: flex !important;
    animation: drawerSlideOut 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  }

  .scandi-nav .nav-links a {
    color: #0f172a !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    width: fit-content !important;
    padding: 4px 0 !important;
  }
  .scandi-nav .nav-links.active a:hover,
  .scandi-nav .nav-links.active a.active {
    color: var(--color-red) !important;
  }
  .scandi-pills-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    width: 100% !important;
  }
  .sector-tabs-row {
    flex-wrap: wrap !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .sector-tab {
    flex: 1 1 auto !important;
    text-align: center !important;
  }
}

@keyframes drawerSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes drawerSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .scandi-pills-grid {
    grid-template-columns: 1fr !important;
  }
  .angled-image-frame img {
    height: 260px !important;
  }
}

@media (max-width: 576px) {
  .scandi-nav {
    padding: 10px 12px !important;
    gap: 6px !important;
  }
  .scandi-logo img {
    height: 32px !important;
    width: auto !important;
  }
  .btn-phone-capsule {
    padding: 6px 10px !important;
    font-size: 0.72rem !important;
    white-space: nowrap !important;
  }
  .menu-toggle {
    padding: 4px !important;
  }
  .hero-headline {
    font-size: clamp(1.65rem, 6.5vw, 2.2rem) !important;
    letter-spacing: -0.5px !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
    word-break: break-word !important;
  }
  .hero-subheadline {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }
  .sector-tabs-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    border-radius: 12px !important;
    padding: 4px !important;
    gap: 4px !important;
    width: 100% !important;
  }
  .sector-tab {
    border-radius: 8px !important;
    font-size: 0.72rem !important;
    padding: 8px 4px !important;
    text-align: center !important;
    font-weight: 700 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .pillars-list {
    margin-bottom: 24px !important;
    gap: 10px !important;
  }
  .pillar-item {
    font-size: 0.85rem !important;
    gap: 8px !important;
  }
  .pillar-check {
    width: 20px !important;
    height: 20px !important;
    font-size: 0.72rem !important;
    flex-shrink: 0 !important;
  }
  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .btn-capsule-red,
  .btn-capsule-blue {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    padding: 14px 16px !important;
    font-size: 0.9rem !important;
    box-sizing: border-box !important;
  }
  .angled-image-frame {
    width: 100% !important;
    clip-path: none !important;
    border-radius: 16px !important;
    border: 3px solid #ffffff !important;
  }
  .angled-image-frame img {
    height: 200px !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  .industrial-spec-card {
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-top: 12px !important;
    padding: 12px !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
  }
  .spec-card-title {
    font-size: 0.8rem !important;
  }
  .spec-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 4px !important;
    width: 100% !important;
  }
  .spec-box {
    padding: 6px 2px !important;
  }
  .spec-box-lbl {
    font-size: 0.6rem !important;
  }
  .spec-box-val {
    font-size: 0.8rem !important;
  }
  .pill-card {
    padding: 16px 18px !important;
    border-radius: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}



