/* =====================================================
   VS PROJECT — Stylesheet
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,200;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── Variables ── */
:root {
  --green-50:  #F0FAF4;
  --green-100: #D4F0E2;
  --green-200: #A8E0C4;
  --green-300: #7DCDA6;
  --green-400: #52B888;
  --green-500: #3AA070;
  --green-600: #2A7852;

  --yellow-50:  #FFFEF5;
  --yellow-100: #FFF8D4;
  --yellow-200: #FFF0A8;
  --yellow-300: #FFE57A;

  --gray-50:  #FAFAF9;
  --gray-100: #F3F3F1;
  --gray-200: #E5E5E2;
  --gray-300: #CFCFCC;
  --gray-400: #A8A8A4;
  --gray-500: #737370;
  --gray-600: #4A4A47;
  --gray-700: #2E2E2C;
  --gray-800: #1A1A18;

  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.10);

  --transition: 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--gray-50);
  color: var(--gray-700);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; }
p { line-height: 1.7; }

/* ── Utility ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--green-100);
  color: var(--green-600);
  margin-bottom: 20px;
}
.tag.yellow { background: var(--yellow-200); color: #7A6200; }
.tag.dark { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity var(--transition), transform var(--transition);
}
.reveal.from-left {
  transform: translateX(-48px);
}
.reveal.from-right {
  transform: translateX(48px);
}
.reveal.scale-in {
  transform: scale(0.92) translateY(24px);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
nav.scrolled {
  background: rgba(250,250,249,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gray-200);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: -0.02em;
}
.logo span { color: var(--green-500); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-500); }
.nav-cta {
  background: var(--gray-800);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--green-500) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--gray-50);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--green-200);
  top: -100px;
  right: -150px;
  animation: float1 8s ease-in-out infinite;
}
.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--yellow-200);
  bottom: 0;
  left: -80px;
  animation: float2 10s ease-in-out infinite;
}
.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: var(--green-100);
  top: 40%;
  left: 40%;
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(58,160,112,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(58,160,112,0); }
}
.hero-eyebrow span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--green-500);
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--gray-500);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

@keyframes heroReveal {
  to { opacity: 1; transform: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  outline: none;
}
.btn-primary {
  background: var(--gray-800);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-500);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(58,160,112,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--gray-600);
  border: 1.5px solid var(--gray-300);
}
.btn-secondary:hover {
  border-color: var(--green-300);
  color: var(--green-600);
  transform: translateY(-2px);
}
.btn-arrow {
  font-size: 1rem;
  transition: transform 0.2s;
}
.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow { transform: translateX(4px); }

.hero-badges {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 52px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--gray-600);
  box-shadow: var(--shadow-sm);
  font-weight: 500;
}
.badge-icon { font-size: 0.9rem; }

/* ══════════════════════════════════════
   SECTION: PROBLEMA
══════════════════════════════════════ */
.section-problema {
  background: var(--gray-800);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-problema::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--gray-50);
  clip-path: ellipse(60% 100% at 50% 0%);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
}

.problema-header { color: #fff; margin-bottom: 64px; }
.problema-header .section-label { color: var(--green-300); }
.problema-header .section-sub { color: rgba(255,255,255,0.55); }

.problema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.problema-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.problema-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.problema-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.problema-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.problema-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   SECTION: SOLUCIÓN
══════════════════════════════════════ */
.section-solucion {
  padding: 110px 0;
  background: var(--gray-50);
}
.solucion-header { margin-bottom: 72px; }
.solucion-header .section-label { color: var(--green-600); }
.solucion-header .section-sub { color: var(--gray-500); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-50), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--green-300);
  box-shadow: 0 16px 48px rgba(58,160,112,0.12);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }
.feature-card.featured {
  background: var(--gray-800);
  border-color: transparent;
  grid-column: span 1;
}
.feature-card.featured::before { background: linear-gradient(135deg, rgba(58,160,112,0.2), transparent 60%); }
.feature-card.featured:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.2); }

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.feature-card.featured .feature-icon-wrap {
  background: rgba(255,255,255,0.1);
}
.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.feature-card.featured h3 { color: #fff; }
.feature-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.feature-card.featured p { color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════
   SECTION: CÓMO FUNCIONA
══════════════════════════════════════ */
.section-como {
  padding: 110px 0;
  background: var(--green-50);
  position: relative;
  overflow: hidden;
}
.section-como::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--yellow-100);
  border-radius: 50%;
  right: -200px;
  bottom: -200px;
  filter: blur(80px);
  opacity: 0.6;
}

.como-header { margin-bottom: 72px; }
.como-header .section-label { color: var(--green-600); }
.como-header .section-sub { color: var(--gray-500); }

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--green-200);
  position: relative;
}
.step:last-child { border-bottom: none; }

.step-number-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gray-800);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.step:hover .step-number { background: var(--green-500); }
.step-line {
  width: 1px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, var(--gray-300), transparent);
}
.step:last-child .step-line { display: none; }
.step-content { padding-top: 12px; }
.step-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.step-content p {
  font-size: 0.95rem;
  color: var(--gray-500);
  max-width: 520px;
}
.step-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ══════════════════════════════════════
   SECTION: PARA QUIÉN
══════════════════════════════════════ */
.section-quien {
  padding: 110px 0;
  background: var(--gray-50);
}
.quien-header { margin-bottom: 64px; }
.quien-header .section-label { color: var(--green-600); }
.quien-header .section-sub { color: var(--gray-500); }

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sector-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.sector-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  background: var(--green-50);
}
.sector-emoji {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.sector-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.sector-card p {
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   SECTION: DIFERENCIADORES
══════════════════════════════════════ */
.section-diferencia {
  padding: 110px 0;
  background: var(--yellow-50);
  position: relative;
  overflow: hidden;
}
.section-diferencia::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--green-100);
  border-radius: 50%;
  left: -150px;
  top: -100px;
  filter: blur(80px);
  opacity: 0.5;
}

.diferencia-header { margin-bottom: 64px; }
.diferencia-header .section-label { color: var(--green-600); }
.diferencia-header .section-sub { color: var(--gray-500); }

.comparison-table {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  position: relative;
  z-index: 1;
}
.comp-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--gray-800);
  padding: 0;
}
.comp-header-cell {
  padding: 24px 32px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
.comp-header-cell:first-child { text-align: left; color: rgba(255,255,255,0.5); font-weight: 400; }
.comp-header-cell.highlight {
  background: var(--green-500);
  position: relative;
}
.comp-header-cell.highlight::before {
  content: 'Nuestra solución';
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 4px;
}

.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s;
}
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: var(--gray-50); }
.comp-cell {
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--gray-500);
  text-align: center;
}
.comp-cell:first-child {
  justify-content: flex-start;
  font-weight: 500;
  color: var(--gray-700);
  text-align: left;
}
.comp-cell.highlight-col {
  background: rgba(58,160,112,0.04);
}
.check { color: var(--green-500); font-size: 1.1rem; font-weight: 700; }
.cross { color: var(--gray-300); font-size: 1.1rem; }
.partial { color: #E0A020; font-size: 0.82rem; font-weight: 600; }

/* ══════════════════════════════════════
   SECTION: SOBRE MÍ
══════════════════════════════════════ */
.section-sobre {
  padding: 110px 0;
  background: var(--gray-50);
}
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-label { color: var(--green-600); }
.sobre-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--gray-800);
  margin-bottom: 20px;
}
.sobre-text {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.sobre-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-number span { color: var(--green-500); }
.stat-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 4px;
}

.sobre-visual {
  position: relative;
}
.sobre-card-main {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-300), var(--green-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.sobre-card-main h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.sobre-card-main .role {
  font-size: 0.85rem;
  color: var(--green-600);
  font-weight: 500;
  margin-bottom: 20px;
}
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.skill-tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--gray-600);
}
.skill-tag.green { background: var(--green-100); color: var(--green-600); }

.sobre-card-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  z-index: 2;
}
.float-1 {
  bottom: -24px;
  right: -20px;
  animation: floatCard 4s ease-in-out infinite;
}
.float-2 {
  top: -20px;
  left: -20px;
  animation: floatCard 5s ease-in-out infinite 0.5s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-icon { font-size: 1.2rem; }
.float-text { font-size: 0.82rem; }
.float-text strong { display: block; font-size: 0.9rem; color: var(--gray-800); }
.float-text span { color: var(--gray-400); }

/* ══════════════════════════════════════
   SECTION: CONTACTO
══════════════════════════════════════ */
.section-contacto {
  padding: 110px 0;
  background: var(--gray-800);
  position: relative;
  overflow: hidden;
}
.section-contacto::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--green-500);
  border-radius: 50%;
  right: -200px;
  top: -200px;
  filter: blur(120px);
  opacity: 0.15;
}
.section-contacto::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--yellow-200);
  border-radius: 50%;
  left: -100px;
  bottom: -150px;
  filter: blur(100px);
  opacity: 0.08;
}

.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contacto-info .section-label { color: var(--green-300); }
.contacto-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.contacto-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contacto-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.contacto-detail:first-of-type { border-top: 1px solid rgba(255,255,255,0.08); }
.contacto-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  backdrop-filter: blur(10px);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  resize: none;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--green-400);
  background: rgba(255,255,255,0.09);
}
.form-textarea { min-height: 120px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--green-500);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--green-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(58,160,112,0.4);
}
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--green-300);
  font-size: 0.95rem;
}
.form-success.show { display: block; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--gray-800);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.footer-logo span { color: var(--green-400); }
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════
   FLOATING CTA
══════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--gray-800);
  color: #fff;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, background 0.2s;
  pointer-events: none;
  font-family: var(--font-body);
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.floating-cta.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.floating-cta:hover { background: var(--green-500); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-inner { grid-template-columns: 1fr; gap: 48px; }
  .contacto-inner { grid-template-columns: 1fr; gap: 48px; }
  .sobre-card-float { display: none; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .comp-header-cell:nth-child(2) { display: none; }
  .comp-cell:nth-child(2) { display: none; }
  .comparison-table .comp-header,
  .comparison-table .comp-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sobre-stats { flex-direction: column; gap: 20px; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; }
  .contact-form-wrap { padding: 32px 24px; }
  .floating-cta { display: none; }
}
