/* ============================================================
   RABE BM — Consultoría Financiera
   Paleta: Azul marino #1b2e6b · Fucsia #e63385 · Crema #f7f5f2
   Tipografía: DM Serif Display + DM Sans
   ============================================================ */

:root {
  --navy:      #1b2e6b;
  --navy-dark: #111f4a;
  --navy-mid:  #233580;
  --pink:      #e63385;
  --pink-light:#f05ca0;
  --pink-pale: #fde8f2;
  --cream:     #f7f5f2;
  --cream2:    #efecea;
  --white:     #ffffff;
  --gray:      #6b7280;
  --gray-light:#e5e3e0;
  --text:      #1a1a2e;

  --font-head: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --t: 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 4px 24px rgba(27,46,107,0.10);
  --shadow-hover: 0 12px 40px rgba(27,46,107,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ---- TAGS ---- */
.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-pale);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.tag-light { background: rgba(230,51,133,0.12); color: var(--pink-light); }

/* ---- SECTION HEAD ---- */
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 { font-family: var(--font-head); font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--navy); margin-bottom: 0.8rem; }
.section-head p { color: var(--gray); max-width: 540px; margin: 0 auto; font-size: 1.02rem; }

/* ---- BUTTONS ---- */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 2px solid var(--pink);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--t);
}
.btn-main:hover { background: var(--pink-light); border-color: var(--pink-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230,51,133,0.3); }
.btn-main.full { width: 100%; justify-content: center; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--t);
}
.btn-ghost:hover { color: var(--pink); gap: 0.3rem; }

/* ---- ANIMATIONS ---- */
[data-animate] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 1rem 0;
  transition: var(--t);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(27,46,107,0.12);
  padding: 0.65rem 0;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand img { height: 48px; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  transition: var(--t);
  letter-spacing: 0.02em;
}
.navbar.scrolled .nav-links a { color: var(--navy); }
.nav-links a:hover { color: var(--pink) !important; }
.nav-btn {
  background: var(--pink) !important;
  color: var(--white) !important;
  border-radius: 4px;
  padding: 0.5rem 1rem !important;
}
.nav-btn:hover { background: var(--pink-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }
.navbar.scrolled .hamburger span { background: var(--navy); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(230,51,133,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-light);
  background: rgba(230,51,133,0.15);
  border: 1px solid rgba(230,51,133,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.2s both;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.35s both;
}
.accent-text { color: var(--pink-light); font-style: italic; }
.hero-desc {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.5s both;
}
.hero-ctas { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; animation: fadeUp 0.7s 0.65s both; }
.hero-ctas .btn-ghost { color: rgba(255,255,255,0.8); }
.hero-ctas .btn-ghost:hover { color: var(--pink-light); }
.hero-stats { display: flex; align-items: center; gap: 1.5rem; animation: fadeUp 0.7s 0.8s both; }
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-n { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); line-height: 1; }
.stat-l { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.03em; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* Hero visual */
.hero-visual { display: flex; justify-content: center; align-items: center; animation: fadeUp 0.8s 0.4s both; }
.hero-card-stack { position: relative; width: 320px; height: 320px; }
.hero-logo-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 1;
}
.hero-logo-bg img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.fc-icon { font-size: 1.4rem; }
.fc-text strong { display: block; font-size: 0.78rem; color: var(--white); font-weight: 600; }
.fc-text p { font-size: 0.68rem; color: rgba(255,255,255,0.6); margin: 0; }
.card-1 { top: 0; left: -20px; animation: float1 4s ease-in-out infinite; }
.card-2 { top: 0; right: -20px; animation: float2 4.5s ease-in-out infinite; }
.card-3 { bottom: 10px; left: 20px; animation: float3 3.8s ease-in-out infinite; }

@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float2 { 0%,100%{transform:translateY(-5px)} 50%{transform:translateY(5px)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; }
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 6rem 0; background: var(--cream); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-left h2 { font-family: var(--font-head); font-size: 2.3rem; color: var(--navy); margin-bottom: 1rem; }
.about-left p { color: var(--gray); margin-bottom: 1rem; font-size: 1rem; }
.rfc-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  margin-top: 1rem;
}
.rfc-label { font-weight: 600; color: var(--pink); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; }
.rfc-value { color: var(--navy); font-weight: 500; }
.rfc-sep { color: var(--gray-light); }
.mvv-grid { display: grid; grid-template-rows: repeat(3, auto); gap: 1rem; }
.mvv-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: var(--t);
  border-left: 3px solid transparent;
}
.mvv-vision { border-color: var(--navy); }
.mvv-mision { border-color: var(--pink); }
.mvv-valores { border-color: #f59e0b; }
.mvv-card:hover { transform: translateX(4px); box-shadow: var(--shadow-hover); }
.mvv-icon { font-size: 1.5rem; flex-shrink: 0; }
.mvv-card h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); margin-bottom: 0.3rem; }
.mvv-card p { font-size: 0.9rem; color: var(--gray); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { position: relative; padding: 7rem 0; background: var(--white); }
.services-bg-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: var(--cream);
  z-index: 0;
}
.services .container { position: relative; z-index: 1; }
.services-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.service-tab {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray);
  background: var(--cream2);
  cursor: pointer;
  transition: var(--t);
  border: 2px solid transparent;
}
.service-tab:hover { color: var(--navy); background: var(--cream); }
.service-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.service-panels { min-height: 320px; }
.service-panel { display: none; }
.service-panel.active { display: block; animation: fadeUp 0.4s both; }
.panel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.panel-text h3 { font-family: var(--font-head); font-size: 1.8rem; color: var(--navy); margin-bottom: 0.5rem; }
.panel-sub { color: var(--pink); font-weight: 500; font-size: 0.95rem; margin-bottom: 1.5rem; }
.panel-items { display: flex; flex-direction: column; gap: 1.2rem; }
.pi { display: flex; gap: 1rem; align-items: flex-start; }
.pi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); flex-shrink: 0; margin-top: 0.45rem; }
.pi strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.pi p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* Service image placeholders */
.panel-img-placeholder {
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  min-height: 220px;
}
.pi-financiera { background: linear-gradient(135deg, #1b2e6b 0%, #233580 100%); color: var(--white); }
.pi-contabilidad { background: linear-gradient(135deg, #e63385 0%, #f05ca0 100%); color: var(--white); }
.pi-auditoria { background: linear-gradient(135deg, #111f4a 0%, #1b2e6b 100%); color: var(--white); }
.pi-procesos { background: linear-gradient(135deg, #233580 0%, #e63385 100%); color: var(--white); }
.pi-icon-big { font-size: 3rem; }
.panel-img-placeholder p { font-size: 0.85rem; opacity: 0.8; font-weight: 500; }

/* Mini bar chart */
.pi-chart-bars { display: flex; gap: 4px; align-items: flex-end; height: 50px; }
.bar { width: 12px; border-radius: 2px 2px 0 0; background: rgba(255,255,255,0.6); }
.b1{height:30%} .b2{height:55%} .b3{height:80%} .b4{height:65%} .b5{height:100%; background:var(--pink-light);}

/* Audit steps */
.audit-steps { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1rem; }
.as { display: flex; gap: 1rem; align-items: flex-start; }
.as > span { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: var(--white); font-size: 0.68rem; font-weight: 700; flex-shrink: 0; }
.as strong { display: block; font-size: 0.88rem; color: var(--navy); }
.as p { font-size: 0.82rem; color: var(--gray); margin: 0; }

/* Resources grid */
.resources-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.rg-item { background: var(--cream); border-radius: 8px; padding: 1rem; }
.rg-item > span { font-size: 1.4rem; display: block; margin-bottom: 0.4rem; }
.rg-item strong { font-size: 0.85rem; color: var(--navy); display: block; margin-bottom: 0.2rem; }
.rg-item p { font-size: 0.8rem; color: var(--gray); margin: 0; }
.rg-highlight { background: var(--navy); }
.rg-highlight strong { color: var(--white); }
.rg-highlight p { color: rgba(255,255,255,0.7); }

/* ============================================================
   PROPUESTA DE VALOR
   ============================================================ */
.value { padding: 7rem 0; background: var(--cream); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.vcard {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--t);
}
.vcard::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--t);
}
.vcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.vcard:hover::after { transform: scaleX(1); }
.vcard-num { position: absolute; top: 1rem; right: 1.2rem; font-family: var(--font-head); font-size: 3rem; color: rgba(27,46,107,0.07); line-height: 1; }
.vcard-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.vcard h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; }
.vcard p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

/* ============================================================
   MEJORA CONTINUA
   ============================================================ */
.mejora { padding: 7rem 0; background: var(--white); }
.mejora-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.mejora-left h2 { font-family: var(--font-head); font-size: 2.2rem; color: var(--navy); margin-bottom: 1rem; }
.mejora-left > p { color: var(--gray); margin-bottom: 2rem; }
.mejora-items { display: flex; flex-direction: column; gap: 1.3rem; }
.mi { display: flex; gap: 1rem; align-items: flex-start; }
.mi-icon { font-size: 1.6rem; flex-shrink: 0; width: 44px; height: 44px; background: var(--cream); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.mi strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.mi p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* Cycle diagram */
.cycle-diagram {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}
.cycle-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.cycle-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
  z-index: 2;
}
.cycle-node {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow);
  z-index: 2;
  transition: var(--t);
  white-space: nowrap;
}
.cycle-node:hover { background: var(--navy); color: var(--white); transform: scale(1.05); }
.cn-1 { top: 0; left: 50%; transform: translateX(-50%); }
.cn-2 { top: 50%; right: -10px; transform: translateY(-50%); }
.cn-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.cn-4 { top: 50%; left: -10px; transform: translateY(-50%); }

/* ============================================================
   WHY RABE
   ============================================================ */
.why { position: relative; padding: 7rem 0; }
.why-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.why .container { position: relative; z-index: 1; }
.why-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 5rem; align-items: center; }
.why-text h2 { font-family: var(--font-head); font-size: 2.3rem; color: var(--white); margin-bottom: 2rem; }
.why-points { display: flex; flex-direction: column; gap: 1.5rem; }
.wp { display: flex; gap: 1rem; }
.wp-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.wp strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 0.3rem; }
.wp p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0; }
.why-logo { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.why-logo img { max-width: 220px; border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.why-logo p { color: rgba(255,255,255,0.8); font-family: var(--font-head); font-size: 1.1rem; }
.why-logo em { color: var(--pink-light); font-size: 0.9rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 7rem 0; background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; width: 40px; height: 40px; background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.ci-item h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.2rem; }
.ci-item p { font-size: 0.9rem; color: var(--navy); font-weight: 500; }
.specialties { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.specialties span { background: var(--navy); color: var(--white); font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 20px; letter-spacing: 0.05em; }
.contact-form { background: var(--white); border-radius: 16px; padding: 2.5rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.fg { display: flex; flex-direction: column; gap: 0.35rem; }
.fg label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }
.fg input, .fg select, .fg textarea {
  background: var(--cream);
  border: 1.5px solid var(--gray-light);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  transition: var(--t);
  outline: none;
  resize: vertical;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--pink); background: var(--white); box-shadow: 0 0 0 3px rgba(230,51,133,0.1); }
.fg input::placeholder, .fg textarea::placeholder { color: #b0aaa5; }
.fg select option { background: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-dark); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 64px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); max-width: 220px; line-height: 1.7; }
.footer-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-light); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li, .footer-col p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-col a { transition: var(--t); }
.footer-col a:hover { color: var(--pink-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mejora-layout { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .why-logo { flex-direction: row; justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    padding: 2rem;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--white) !important; font-size: 1rem; padding: 0.8rem 1rem; }
  .hamburger { display: flex; z-index: 1001; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .panel-content { grid-template-columns: 1fr; }
  .panel-img { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
