/* =====================================================
   MISAYAN CLEAN — STYLES.CSS
   Paleta: Azul cristal limpio + Blancos puros + Acento menta + Verde fuerte
   Tipografía: Raleway (títulos) + Lato (cuerpo)
   ===================================================== */

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

/* ---- VARIABLES ---- */
:root {
  --blue-deep:    #0A2540;
  --blue-mid:     #1E4E8C;
  --blue-bright:  #2176FF;
  --blue-sky:     #5BA8FF;
  --blue-ice:     #D6E8FF;
  --blue-frost:   #EEF5FF;
  --mint:         #00D4AA;
  --mint-light:   #E0FAF4;
  --green-strong: #1D9125;
  --green-light:  #E3F5E4;
  --green-mid:    #25B530;
  --white:        #FFFFFF;
  --gray-100:     #F7F9FC;
  --gray-200:     #EDF1F7;
  --gray-400:     #9AACC2;
  --gray-700:     #3D5475;
  --text-dark:    #0D1F35;
  --text-body:    #3D5475;

  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   28px;
  --radius-xl:   48px;

  --shadow-soft: 0 4px 24px rgba(10,37,64,0.08);
  --shadow-card: 0 8px 40px rgba(10,37,64,0.12);
  --shadow-lift: 0 16px 56px rgba(10,37,64,0.18);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

p { font-size: 1rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-strong);
  background: var(--green-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

/* ---- LAYOUT ---- */
.container {
  width: 92%;
  max-width: 1140px;
  margin: 0 auto;
}

section { padding: 100px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--green-strong);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(29,145,37,0.35);
}
.btn-primary:hover {
  background: #166b1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(29,145,37,0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-bright);
  border: 2px solid var(--blue-bright);
}
.btn-secondary:hover {
  background: var(--blue-ice);
  transform: translateY(-2px);
}

.btn-mint {
  background: var(--green-strong);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(29,145,37,0.35);
}
.btn-mint:hover {
  background: #166b1c;
  transform: translateY(-2px);
}

/* ====================================================
   NAVBAR — Siempre blanco, más grande
   ==================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(10,37,64,0.1);
  transition: padding var(--transition);
}
#navbar.scrolled {
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(10,37,64,0.14);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-strong), var(--green-mid));
  box-shadow: 0 4px 14px rgba(29,145,37,0.25);
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 1.55rem;
  color: var(--blue-deep);
  line-height: 1;
}
.logo-text span { color: var(--green-strong); }
.logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 700;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green-strong);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--green-strong); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 12px; }

/* Botones del navbar */
#navbar .btn-secondary {
  background: transparent;
  color: var(--blue-bright);
  border: 2px solid var(--blue-bright);
}
#navbar .btn-secondary:hover {
  background: var(--blue-ice);
}
#navbar .btn-primary {
  background: var(--green-strong);
  color: white;
  border: none;
  box-shadow: 0 4px 16px rgba(29,145,37,0.3);
}
#navbar .btn-primary:hover {
  background: #166b1c;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ====================================================
   HERO
   ==================================================== */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-mid) 55%, #1a6bb5 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--blue-sky);
  top: -200px; right: -150px;
}
.shape-2 {
  width: 300px; height: 300px;
  background: var(--green-strong);
  bottom: 80px; left: -80px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: white;
  top: 40%; left: 42%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900;
  color: white;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title .highlight {
  color: var(--blue-sky);
  position: relative;
}
.hero-title .highlight-mint { color: var(--mint); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 36px;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-top: 4px;
}

/* Hero visual card */
.hero-visual {
  position: relative;
  padding: 28px 28px 24px 32px;
}
.hero-card-main {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  position: relative;
  z-index: 1;
}
.hero-card-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: 0.85;
}
.hero-card-overlay {
  padding: 24px 28px;
}
.hero-card-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.hero-card-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}
.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-strong);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  margin-top: 12px;
}

.hero-floating-chip {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lift);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}
.chip-left {
  top: 0;
  left: 0;
  animation-delay: 0.5s;
}
.chip-right {
  bottom: 0;
  right: 0;
  animation-delay: 1.5s;
}
.chip-icon { font-size: 1.4rem; }
.chip-text { font-family: 'Raleway', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--text-dark); }
.chip-sub { font-size: 0.7rem; color: var(--gray-400); }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* ====================================================
   TRUST BAR
   ==================================================== */
#trust-bar {
  padding: 32px 0;
  background: var(--green-light);
  border-top: 1px solid rgba(29,145,37,0.15);
  border-bottom: 1px solid rgba(29,145,37,0.15);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
}
.trust-icon {
  width: 42px; height: 42px;
  background: var(--green-strong);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.trust-desc { font-size: 0.78rem; color: var(--gray-400); font-weight: 400; }
.trust-divider {
  width: 1px; height: 40px;
  background: rgba(29,145,37,0.2);
}

/* ====================================================
   SERVICIOS
   ==================================================== */
#servicios {
  background: var(--gray-100);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header .section-tag { margin-left: auto; margin-right: auto; width: fit-content; display: block; text-align: center; }

.section-header p {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-top: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--green-strong);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-img-wrap { overflow: hidden; position: relative; }

.service-card-body {
  padding: 24px 26px 28px;
}
.service-card-icon {
  width: 48px; height: 48px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: all var(--transition);
}
.service-card:hover .service-card-icon {
  background: var(--green-strong);
}
.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green-strong);
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 10px; }

/* ====================================================
   PAQUETES
   ==================================================== */
#paquetes {
  background: var(--white);
}

.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.paquete-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  position: relative;
  border: 2px solid transparent;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.paquete-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-strong);
  box-shadow: var(--shadow-card);
}

.paquete-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.paquete-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.price-tag {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-strong);
  line-height: 1;
  margin-top: 16px;
}
.price-period {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 400;
  display: block;
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
}
.price-cotizacion {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-strong);
  margin-top: 16px;
  margin-bottom: 20px;
}

.paquete-includes {
  flex: 1;
  margin-bottom: 28px;
}
.paquete-includes li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  border-bottom: 1px solid rgba(150,180,220,0.15);
}
.paquete-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-strong);
  font-weight: 800;
  font-size: 0.85rem;
}

.target-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-strong);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 22px;
}

.paquete-cta {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: 100px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid var(--green-strong);
  background: transparent;
  color: var(--green-strong);
}
.paquete-cta:hover {
  background: var(--green-strong);
  color: white;
  transform: translateY(-2px);
}

/* ====================================================
   PROCESO
   ==================================================== */
#proceso {
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
}
#proceso::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(29,145,37,0.12), transparent);
}
#proceso .section-header h2 { color: white; }
#proceso .section-header p { color: rgba(255,255,255,0.65); }
#proceso .section-tag {
  background: rgba(29,145,37,0.15);
  color: #5de065;
}

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.proceso-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-strong), var(--mint));
  opacity: 0.4;
  pointer-events: none;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-strong), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: white;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(29,145,37,0.4);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.step-item:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(29,145,37,0.55);
}
.step-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 180px;
  margin: 0 auto;
}


/* ====================================================
   DIFERENCIADORES
   ==================================================== */
#diferenciadores {
  background: var(--green-light);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(29,145,37,0.12);
  transition: all var(--transition);
  text-align: center;
}
.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--green-strong);
}
.diff-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--green-strong), var(--green-mid));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(29,145,37,0.25);
}
.diff-card h4 { margin-bottom: 10px; font-size: 1.05rem; }
.diff-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.6; }

/* ====================================================
   ZONA Y HORARIO
   ==================================================== */
#operaciones {
  background: var(--white);
}
.ops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.ops-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
}
.ops-card h3 { margin-bottom: 24px; }
.ops-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}
.ops-row:last-child { border-bottom: none; }
.ops-row-icon {
  width: 38px; height: 38px;
  background: var(--green-strong);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ops-row-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.ops-row-val {
  font-size: 0.85rem;
  color: var(--text-body);
}

/* ====================================================
   CONTACTO
   ==================================================== */
#contacto {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  position: relative;
  overflow: hidden;
}
#contacto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 20% 0%, rgba(29,145,37,0.12), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-text h2 { color: white; margin-bottom: 18px; }
.contact-text p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 40px; line-height: 1.7; }

.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: rgba(29,145,37,0.2);
  border: 1px solid rgba(29,145,37,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.contact-item-val {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 1rem;
}

/* Contact Form */
.contact-form-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-box h3 {
  color: white;
  margin-bottom: 28px;
  font-size: 1.4rem;
}
.form-row { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: white;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-strong);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(29,145,37,0.2);
}
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--blue-deep); color: white; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--green-strong);
  border: none;
  border-radius: 100px;
  color: white;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
  box-shadow: 0 6px 24px rgba(29,145,37,0.4);
  letter-spacing: 0.02em;
}
.form-submit:hover {
  background: #166b1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(29,145,37,0.5);
}

/* ====================================================
   FOOTER
   ==================================================== */
footer {
  background: var(--blue-deep);
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul li {
  padding: 6px 0;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #5de065; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}
.footer-bottom-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,145,37,0.15);
  border: 1px solid rgba(29,145,37,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: #5de065;
}

/* ====================================================
   SCROLL ANIMATIONS
   ==================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ====================================================
   WHATSAPP FLOAT BUTTON
   ==================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 14px 36px rgba(37,211,102,0.55);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: ring 2.5s ease-in-out infinite;
}
@keyframes ring {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ====================================================
   MOBILE NAV MENU
   ==================================================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: var(--blue-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: #5de065; }
.mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  background: rgba(29,145,37,0.15);
  border: 1px solid rgba(29,145,37,0.3);
  color: #5de065;
  font-size: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ====================================================
   NOTA / HIGHLIGHT BOX
   ==================================================== */
.nota-verde {
  margin-top: 40px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  border-left: 4px solid var(--green-strong);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.nota-verde p {
  font-size: .9rem;
  color: var(--text-body);
}
.nota-verde strong {
  color: var(--green-strong);
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .trust-bar-inner { justify-content: center; }
  .trust-divider { display: none; }
  .ops-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .proceso-steps::before { display: none; }
  .paquetes-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .chip-left, .chip-right { display: none; }
  .hero-floating-chip { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  .btn { padding: 12px 22px; font-size: 0.88rem; }
  .hero-actions { flex-direction: column; }
  .contact-form-box { padding: 28px 22px; }
} 