/* ===========================
   AURIGA INTERNATIONAL — CSS v2
   =========================== */

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

:root {
  --azul-marino: #060D1A;
  --azul-marino2: #0A1628;
  --azul-electrico: #0066FF;
  --azul-hover: #0052CC;
  --azul-glow: rgba(0, 102, 255, 0.4);
  --blanco: #FFFFFF;
  --gris-acero: #8A94A6;
  --gris-claro: #E8ECF2;
  --azul-card: #0D1F3C;
  --azul-borde: #1A2E4A;
  --azul-borde2: rgba(0,102,255,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--azul-marino);
  color: var(--blanco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   HEADER
   =========================== */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6, 13, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--azul-borde2);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* ===========================
   LOGO MEJORADO
   =========================== */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.45));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--blanco);
  text-shadow: 0 0 20px rgba(0,102,255,0.3);
}

.logo-text .tagline {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--azul-electrico);
  text-transform: uppercase;
}

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

nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--gris-acero);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

nav a:hover, nav a.active {
  color: var(--blanco);
  background: rgba(0,102,255,0.1);
}

.btn-nav {
  background: var(--azul-electrico) !important;
  color: var(--blanco) !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  box-shadow: 0 0 20px rgba(0,102,255,0.35) !important;
  transition: all 0.2s !important;
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--azul-hover) !important;
  box-shadow: 0 0 30px rgba(0,102,255,0.55) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   BOTONES GLOBALES
   =========================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--azul-electrico);
  color: var(--blanco);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(0, 102, 255, 0.4), 0 0 0 0 rgba(0,102,255,0.3);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.4s;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
  background: var(--azul-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0, 102, 255, 0.55), 0 0 0 4px rgba(0,102,255,0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--blanco);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ===========================
   SECCIONES BASE
   =========================== */

section { padding: 90px 0; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--azul-electrico);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--blanco);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gris-acero);
  max-width: 600px;
  line-height: 1.7;
}

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

/* ===========================
   HERO — REDISEÑADO
   =========================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Fondo animado */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,102,255,0.18) 0%, transparent 65%);
  border-radius: 50%;
  animation: pulse-bg 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,102,255,0.1) 0%, transparent 65%);
  border-radius: 50%;
  animation: pulse-bg 8s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

@keyframes pulse-bg {
  from { transform: scale(1) translate(0,0); opacity: 0.8; }
  to   { transform: scale(1.15) translate(20px, -20px); opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {}

/* Badge animado arriba del H1 */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,102,255,0.12);
  border: 1px solid rgba(0,102,255,0.3);
  color: #60A5FA;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  animation: fade-up 0.6s ease both;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: #60A5FA;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: 0.2; }
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--blanco);
  margin-bottom: 22px;
  letter-spacing: -1.5px;
  animation: fade-up 0.7s ease 0.1s both;
}

.hero h1 .highlight {
  color: var(--azul-electrico);
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--azul-electrico), transparent);
  border-radius: 2px;
}

.hero .lead {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 500;
  animation: fade-up 0.7s ease 0.2s both;
}

.hero .body-text {
  font-size: 15px;
  color: var(--gris-acero);
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fade-up 0.7s ease 0.3s both;
}

.hero .btn-group { animation: fade-up 0.7s ease 0.4s both; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero visual — card derecha */
.hero-visual { position: relative; z-index: 1; }

.hero-card {
  background: linear-gradient(135deg, rgba(13,31,60,0.9) 0%, rgba(6,13,26,0.95) 100%);
  border: 1px solid var(--azul-borde2);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,102,255,0.1);
  animation: fade-up 0.8s ease 0.3s both;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--azul-electrico), transparent);
}

.hero-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,102,255,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.25s;
  cursor: default;
}

.stat-item:hover {
  background: rgba(0,102,255,0.08);
  border-color: rgba(0,102,255,0.2);
  transform: translateX(4px);
}

.stat-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(0,102,255,0.2), rgba(0,102,255,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(0,102,255,0.15);
}

.stat-info .label {
  font-size: 10px;
  color: var(--azul-electrico);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 2px;
}

.stat-info .value {
  font-size: 15px;
  font-weight: 700;
  color: var(--blanco);
}

/* ===========================
   PROPUESTA DE VALOR
   =========================== */

.propuesta {
  background: linear-gradient(180deg, var(--azul-marino) 0%, var(--azul-card) 50%, var(--azul-marino) 100%);
  border-top: 1px solid var(--azul-borde2);
  border-bottom: 1px solid var(--azul-borde2);
  padding: 70px 0;
}

.propuesta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--azul-borde2);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--azul-borde2);
}

.propuesta-item {
  background: rgba(13,31,60,0.7);
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.propuesta-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(180deg, rgba(0,102,255,0.1), transparent);
  transition: height 0.3s;
}

.propuesta-item:hover::before { height: 100%; }
.propuesta-item:hover { background: rgba(0,102,255,0.06); }

.propuesta-icon {
  font-size: 34px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0,102,255,0.3));
}

.propuesta-item h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--azul-electrico);
  margin-bottom: 10px;
}

.propuesta-item p {
  font-size: 14px;
  color: var(--gris-acero);
  line-height: 1.7;
}

/* ===========================
   CARDS DE SERVICIOS
   =========================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  background: linear-gradient(160deg, rgba(13,31,60,0.9) 0%, rgba(6,13,26,0.95) 100%);
  border: 1px solid var(--azul-borde);
  border-radius: 18px;
  padding: 28px 24px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--azul-electrico), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,102,255,0.4);
  box-shadow: 0 20px 50px rgba(0,102,255,0.2), 0 0 0 1px rgba(0,102,255,0.1);
}

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

.service-card-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--azul-electrico);
  margin-bottom: 12px;
  display: block;
  opacity: 0.7;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--blanco);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  color: var(--gris-acero);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.service-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--azul-electrico);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}

.service-card:hover .service-card-link { gap: 12px; }

/* ===========================
   POR QUÉ AURIGA
   =========================== */

.porque-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.porque-item {
  background: linear-gradient(135deg, rgba(13,31,60,0.8), rgba(6,13,26,0.9));
  border: 1px solid var(--azul-borde);
  border-radius: 18px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.porque-item::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(0,102,255,0.1), transparent);
  border-radius: 50%;
  transition: transform 0.3s;
}

.porque-item:hover {
  border-color: rgba(0,102,255,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,102,255,0.1);
}

.porque-item:hover::after { transform: scale(2); }

.porque-item h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--blanco);
  margin-bottom: 10px;
  position: relative;
}

.porque-item p {
  font-size: 14px;
  color: var(--gris-acero);
  line-height: 1.7;
  position: relative;
}

/* ===========================
   PROCESO
   =========================== */

.proceso {
  background: linear-gradient(180deg, var(--azul-card) 0%, rgba(6,13,26,0.8) 100%);
  border-top: 1px solid var(--azul-borde2);
  border-bottom: 1px solid var(--azul-borde2);
}

.proceso-steps {
  display: flex;
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.proceso-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--azul-electrico), transparent);
  z-index: 0;
  opacity: 0.4;
}

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

.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--azul-electrico), #0044BB);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--blanco);
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0,102,255,0.5), 0 0 0 4px rgba(0,102,255,0.1);
}

.step h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--blanco);
  margin-bottom: 8px;
}

.step p { font-size: 13px; color: var(--gris-acero); line-height: 1.6; }

/* ===========================
   SECTORES
   =========================== */

.sectores-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  justify-content: center;
}

.sector-badge {
  background: rgba(0,102,255,0.08);
  border: 1px solid rgba(0,102,255,0.15);
  color: var(--gris-acero);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  transition: all 0.2s;
  cursor: default;
}

.sector-badge:hover {
  background: rgba(0,102,255,0.18);
  border-color: rgba(0,102,255,0.4);
  color: var(--blanco);
  transform: translateY(-2px);
}

/* ===========================
   CTA SECTION
   =========================== */

.cta-section {
  background: linear-gradient(135deg, #0044BB 0%, var(--azul-electrico) 50%, #0044BB 100%);
  background-size: 200% 200%;
  animation: gradient-shift 6s ease infinite;
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--blanco);
  margin-bottom: 14px;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 38px;
  font-weight: 500;
  position: relative;
}

.cta-section .btn-primary {
  background: var(--blanco);
  color: var(--azul-electrico);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.cta-section .btn-primary:hover { background: #f0f4ff; }
.cta-section .btn-secondary { border-color: rgba(255,255,255,0.5); }

/* ===========================
   PAGE HERO (páginas internas)
   =========================== */

.page-hero {
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 50% 70% at 90% 20%, rgba(0,102,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(0,102,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,102,255,0.1);
  border: 1px solid rgba(0,102,255,0.25);
  color: #60A5FA;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--blanco);
  margin-bottom: 14px;
}

.page-hero h2 {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--gris-acero);
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 17px;
  color: var(--gris-acero);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ===========================
   CHECKLIST
   =========================== */

.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  font-weight: 500;
}

.checklist li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: linear-gradient(135deg, rgba(0,102,255,0.25), rgba(0,102,255,0.1));
  color: #60A5FA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(0,102,255,0.2);
}

/* ===========================
   PRICE BOX
   =========================== */

.price-box {
  background: linear-gradient(135deg, rgba(0,102,255,0.12), rgba(0,102,255,0.04));
  border: 1px solid rgba(0,102,255,0.25);
  border-radius: 18px;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.price-info .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--azul-electrico);
  margin-bottom: 6px;
  opacity: 0.8;
}

.price-info .amount {
  font-size: 40px;
  font-weight: 900;
  color: var(--blanco);
  line-height: 1;
  text-shadow: 0 0 30px rgba(0,102,255,0.3);
}

.price-info .note {
  font-size: 12px;
  color: var(--gris-acero);
  margin-top: 6px;
}

/* ===========================
   BADGE DE TIEMPO
   =========================== */

.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,100,0.08);
  border: 1px solid rgba(0,200,100,0.2);
  color: #34D399;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  margin-top: 22px;
}

/* ===========================
   MODALIDADES GRID
   =========================== */

.modalidades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.modalidad-card {
  background: linear-gradient(135deg, rgba(13,31,60,0.9), rgba(6,13,26,0.95));
  border: 1px solid var(--azul-borde);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.modalidad-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--azul-electrico), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.modalidad-card:hover {
  border-color: rgba(0,102,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,102,255,0.15);
}

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

.modalidad-card h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--azul-electrico);
  margin-bottom: 10px;
}

.modalidad-card p { font-size: 14px; color: var(--gris-acero); line-height: 1.7; }

/* ===========================
   MERCADOS
   =========================== */

.mercados-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.mercado-badge {
  background: linear-gradient(135deg, rgba(13,31,60,0.9), rgba(6,13,26,0.95));
  border: 1px solid var(--azul-borde);
  color: var(--blanco);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.mercado-badge:hover {
  border-color: rgba(0,102,255,0.4);
  background: rgba(0,102,255,0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,102,255,0.15);
}

/* ===========================
   FUNDADOR
   =========================== */

.fundador-section {
  background: linear-gradient(180deg, var(--azul-card) 0%, var(--azul-marino) 100%);
  border-top: 1px solid var(--azul-borde2);
  border-bottom: 1px solid var(--azul-borde2);
}

.fundador-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.fundador-img {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--azul-borde2);
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,102,255,0.1);
}

.fundador-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(6,13,26,0.5));
  z-index: 1;
  pointer-events: none;
}

.fundador-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.fundador-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  background: rgba(13,31,60,0.5);
}

.fundador-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--blanco);
  margin-bottom: 4px;
}

.fundador-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--azul-electrico);
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.fundador-bio p {
  font-size: 15px;
  color: var(--gris-acero);
  line-height: 1.85;
  margin-bottom: 16px;
}

.quote-block {
  background: linear-gradient(135deg, rgba(0,102,255,0.1), rgba(0,102,255,0.04));
  border-left: 3px solid var(--azul-electrico);
  border-radius: 0 14px 14px 0;
  padding: 20px 24px;
  margin-top: 24px;
  position: relative;
}

.quote-block p {
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   MISION
   =========================== */

.mision-box {
  background: linear-gradient(135deg, var(--azul-electrico) 0%, #0044BB 100%);
  border-radius: 24px;
  padding: 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,102,255,0.3);
}

.mision-box::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.mision-box h2 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
}

.mision-box p {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--blanco);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===========================
   CONTACTO FORM
   =========================== */

.contacto-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gris-acero);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(13,31,60,0.8);
  border: 1px solid var(--azul-borde);
  border-radius: 12px;
  color: var(--blanco);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  transition: all 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(138,148,166,0.6); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--azul-electrico);
  background: rgba(0,102,255,0.05);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.12);
}

.form-group select option { background: var(--azul-marino); color: var(--blanco); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit { width: 100%; padding: 16px; font-size: 16px; }

.contact-info-card {
  background: linear-gradient(160deg, rgba(13,31,60,0.9), rgba(6,13,26,0.95));
  border: 1px solid var(--azul-borde2);
  border-radius: 22px;
  padding: 36px;
  position: sticky;
  top: 100px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.contact-info-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 24px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(0,102,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(0,102,255,0.1);
}

.contact-item-text .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gris-acero);
  margin-bottom: 3px;
}

.contact-item-text .value { font-size: 15px; font-weight: 600; color: var(--blanco); }

.contact-divider { height: 1px; background: var(--azul-borde); margin: 24px 0; }
.operamos-text { font-size: 13px; color: var(--gris-acero); line-height: 1.7; }

/* ===========================
   FOOTER
   =========================== */

footer {
  background: linear-gradient(180deg, var(--azul-card) 0%, #050B15 100%);
  border-top: 1px solid var(--azul-borde2);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand .tagline {
  font-size: 14px;
  color: var(--gris-acero);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--blanco);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.7;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--gris-acero);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--azul-electrico);
  transition: width 0.2s;
  display: inline-block;
}

.footer-links a:hover { color: var(--blanco); }
.footer-links a:hover::before { width: 12px; }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gris-acero);
  transition: all 0.2s;
  padding: 6px 0;
}

.social-link:hover { color: var(--blanco); transform: translateX(4px); }

.social-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}

.social-link:hover .social-icon {
  background: rgba(0,102,255,0.12);
  border-color: rgba(0,102,255,0.2);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gris-acero);
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.footer-bottom p { font-size: 13px; color: rgba(138,148,166,0.7); }

/* ===========================
   WHATSAPP FLOTANTE
   =========================== */

.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--blanco);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37,211,102,0.3);
  transition: all 0.25s;
  text-decoration: none;
  animation: float-in 0.6s ease 1s both;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }

@keyframes float-in {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   GALERÍA DE IMÁGENES
   =========================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--azul-borde);
  cursor: default;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  filter: brightness(0.85) saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,13,26,0.92), transparent);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 600;
  padding: 20px 14px 12px;
  letter-spacing: 0.3px;
}

.gallery-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

/* Imagen hero de fondo */
.img-section {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--azul-borde);
}

.img-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6) saturate(0.8);
}

.img-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,102,255,0.15), rgba(6,13,26,0.6));
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-wide { grid-column: span 2; aspect-ratio: 16/9; }
  .gallery-grid-2 { grid-template-columns: 1fr; }
}

/* ===========================
   SUCCESS MESSAGE
   =========================== */

.success-message {
  display: none;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.25);
  border-radius: 12px;
  padding: 20px 24px;
  color: #34D399;
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .propuesta-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .contacto-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(6,13,26,0.98);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--azul-borde2);
    gap: 4px;
    backdrop-filter: blur(20px);
  }

  nav.open { display: flex; }
  nav a { padding: 12px 16px; width: 100%; }
  .hamburger { display: flex; }

  section { padding: 60px 0; }
  .propuesta-grid { grid-template-columns: 1fr; gap: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .porque-grid { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .modalidades-grid { grid-template-columns: 1fr; }
  .fundador-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mision-box { padding: 32px 24px; }
  .price-box { flex-direction: column; text-align: center; }

  .proceso-steps {
    flex-direction: column;
    gap: 24px;
  }
  .proceso-steps::before { display: none; }
  .step {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
  }
  .step-number { margin: 0; flex-shrink: 0; }

  .whatsapp-float span { display: none; }
  .whatsapp-float {
    padding: 16px;
    border-radius: 50%;
    width: 58px; height: 58px;
    justify-content: center;
  }
}

/* ===========================
   AURIGA POLISH — optimizacion visual y responsive
   =========================== */

:root {
  --azul-marino: #07111f;
  --azul-marino2: #0b1727;
  --azul-electrico: #2f80ed;
  --azul-hover: #1d65c1;
  --azul-glow: rgba(47, 128, 237, 0.22);
  --blanco: #f8fbff;
  --gris-acero: #a8b3c5;
  --gris-claro: #eef3f8;
  --azul-card: #0d1a2b;
  --azul-borde: rgba(174, 196, 229, 0.14);
  --azul-borde2: rgba(174, 196, 229, 0.12);
  --surface: rgba(11, 23, 39, 0.82);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.28);
}

body {
  background:
    linear-gradient(180deg, #07111f 0%, #081321 46%, #07111f 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 72%);
}

.container { max-width: 1180px; }

header {
  background: rgba(7, 17, 31, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

header.is-scrolled {
  background: rgba(7, 17, 31, 0.96);
  box-shadow: 0 10px 34px rgba(0,0,0,0.22);
}

.header-inner { height: 76px; }

.logo-icon {
  width: 46px;
  height: 46px;
  filter: none;
}

.logo-text .brand {
  font-size: 18px;
  letter-spacing: 3px;
  text-shadow: none;
}

.logo-text .tagline {
  font-size: 7px;
  letter-spacing: 2.6px;
}

nav { gap: 0; }

nav a {
  font-size: 12px;
  color: rgba(248,251,255,0.68);
  border-radius: 7px;
}

nav a:hover,
nav a.active {
  color: var(--blanco);
  background: rgba(255,255,255,0.06);
}

.btn-nav,
.btn-primary {
  background: linear-gradient(135deg, #2f80ed, #1c63c8) !important;
  box-shadow: 0 12px 28px rgba(47,128,237,0.22) !important;
  border-radius: 8px !important;
}

.btn-primary {
  min-height: 48px;
  padding: 14px 24px;
}

.btn-primary::before,
.hero::before,
.hero::after,
.cta-section::before,
.page-hero::before {
  animation: none;
}

.btn-secondary {
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
}

section { padding: 82px 0; }

.section-label,
.page-hero-badge {
  color: #7fb3ff;
  letter-spacing: 2.2px;
}

.section-title {
  letter-spacing: -0.02em;
  max-width: 780px;
}

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

.hero {
  min-height: auto;
  padding: 146px 0 92px;
  background:
    linear-gradient(100deg, rgba(7,17,31,0.98) 0%, rgba(7,17,31,0.82) 44%, rgba(7,17,31,0.34) 100%),
    url('../img/auriga-hero-inspection-optimized.jpg') center/cover;
}

.hero::before {
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 40%;
  border-radius: 0;
  background: linear-gradient(to top, #07111f, transparent);
}

.hero::after { display: none; }

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 42px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.4vw, 70px);
  letter-spacing: -0.035em;
  animation: none;
}

.hero h1 .highlight {
  color: #ffffff;
  text-shadow: 0 0 38px rgba(47,128,237,0.45);
}

.hero h1 .highlight::after {
  height: 9px;
  bottom: 5px;
  z-index: -1;
  opacity: 0.72;
}

.hero .lead,
.hero .body-text,
.hero .btn-group {
  animation: none;
}

.hero .lead {
  max-width: 690px;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(248,251,255,0.9);
}

.hero .body-text {
  max-width: 680px;
  color: rgba(218,228,241,0.76);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 28px 0 32px;
}

.trust-strip div {
  padding: 14px 16px;
  background: rgba(7,17,31,0.62);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.trust-strip strong {
  display: block;
  font-size: 19px;
  line-height: 1.1;
  color: #fff;
}

.trust-strip span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: rgba(218,228,241,0.72);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-card,
.service-card,
.porque-item,
.modalidad-card,
.contact-info-card,
.price-box,
.mision-box {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.hero-card {
  background: rgba(7,17,31,0.78);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  padding: 22px;
}

.hero-card::after,
.porque-item::after,
.propuesta-item::before {
  display: none;
}

.stat-item {
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.09);
}

.stat-item:hover {
  transform: translateY(-2px);
  background: rgba(47,128,237,0.11);
}

.stat-icon,
.contact-item-icon {
  border-radius: 8px;
}

.stat-icon {
  color: #9fc5ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.propuesta {
  background: #091423;
  padding: 66px 0;
}

.propuesta-grid {
  border-radius: 8px;
  gap: 12px;
  background: transparent;
  border: 0;
  overflow: visible;
}

.propuesta-item {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}

.propuesta-icon {
  filter: none;
}

.service-card,
.porque-item,
.modalidad-card,
.contact-info-card {
  background: var(--surface);
  border-color: rgba(255,255,255,0.1);
}

.service-card:hover,
.porque-item:hover,
.modalidad-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(0,0,0,0.24);
}

.proceso {
  background: #091423;
}

.step-number {
  background: #f8fbff;
  color: #0a1628;
  box-shadow: 0 0 0 5px rgba(255,255,255,0.08);
}

.cta-section {
  background: linear-gradient(135deg, #10233c 0%, #1f6fd7 100%);
  animation: none;
}

.page-hero {
  padding: 142px 0 76px;
  background:
    linear-gradient(100deg, rgba(7,17,31,0.97) 0%, rgba(9,20,35,0.82) 48%, rgba(9,20,35,0.48) 100%),
    url('../img/auriga-global-trade-hero-optimized.jpg') center/cover;
}

.page-hero::before {
  background: linear-gradient(to top, #07111f 0%, transparent 52%);
}

.page-hero h1 {
  max-width: 850px;
  letter-spacing: -0.035em;
}

.page-hero p {
  color: rgba(218,228,241,0.78);
}

.checklist li::before {
  border-radius: 6px;
  background: rgba(47,128,237,0.14);
}

.price-box {
  background: rgba(47,128,237,0.1);
  border-color: rgba(127,179,255,0.22);
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
}

.gallery-item {
  border-radius: 8px;
  border-color: rgba(255,255,255,0.1);
}

.whatsapp-float {
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 140, 126, 0.24);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  nav a {
    font-size: 11px;
    padding: 8px 8px;
  }

  .btn-nav {
    padding: 10px 12px !important;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 128px;
  }

  .hero-visual {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }

  .header-inner { height: 68px; }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-text .brand {
    font-size: 16px;
    letter-spacing: 2.4px;
  }

  nav {
    top: 68px;
    padding: 14px 18px 18px;
    background: rgba(7,17,31,0.98);
  }

  .hero {
    padding: 112px 0 58px;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hero .lead {
    font-size: 17px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin: 22px 0 26px;
  }

  .btn-group,
  .hero .btn-group {
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    padding: 16px;
  }

  .stat-item {
    padding: 14px;
  }

  .page-hero {
    padding: 112px 0 54px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .price-info .amount {
    font-size: 34px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: auto;
  }

.whatsapp-float {
    right: 18px;
    bottom: 18px;
    border-radius: 50%;
  }
}

.propuesta-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(127,179,255,0.24);
  border-radius: 8px;
  background: rgba(47,128,237,0.12);
  color: #9fc5ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  filter: none;
}

.social-icon,
.footer-icon,
.mercado-badge span {
  color: #9fc5ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-icon {
  width: 34px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(127,179,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
}

.contact-item-icon {
  color: #9fc5ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.logo-image-link {
  display: inline-flex;
  align-items: center;
  width: 176px;
  height: 58px;
  overflow: hidden;
}

.logo-image {
  width: 176px;
  max-height: 58px;
  height: auto;
  display: block;
  object-fit: contain;
}

footer .logo-image {
  width: 160px;
  max-height: 52px;
  height: auto;
}

.cta-section .btn-primary {
  background: #ffffff !important;
  color: #0b1727 !important;
  border: 1px solid rgba(255,255,255,0.7) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18) !important;
}

.cta-section .btn-primary:hover {
  background: #eef5ff !important;
  color: #07111f !important;
}

@media (max-width: 768px) {
  .logo-image-link {
    width: 145px;
    height: 48px;
  }

  .logo-image {
    width: 145px;
    max-height: 48px;
    height: auto;
  }
}
