﻿/* ============================================================
   ComproSiniestro Â· styles.css v3
   Fixes: labels estÃ¡ticos form, alturas filas consistentes,
          float animation reducida, imagen placeholders mejorados,
          marquee responsive, hero image overlay, figure/img
   ============================================================ */

/* â”€â”€ RESET & BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-base:        #121212;
  --bg-panel:       #1E1E1E;
  --bg-panel-2:     #252525;
  --bg-input:       #181818;
  --border:         rgba(255,255,255,0.07);
  --border-hover:   rgba(0,210,106,0.35);
  --accent:         #00D26A;
  --accent-dim:     rgba(0,210,106,0.12);
  --accent-glow:    rgba(0,210,106,0.25);
  --text-primary:   #F0F0F0;
  --text-secondary: #B0B0B0;
  --text-muted:     #8A8A8A;
  --font-head:      'Montserrat', sans-serif;
  --font-body:      'Inter', sans-serif;
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --shadow-card:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow:    0 0 32px rgba(0,210,106,0.18);
  --transition:     0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:          1200px;
  --header-h:       70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* â”€â”€ SKIP LINK â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--accent);
  color: #0A1A0F;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top .2s ease;
}
.skip-link:focus { top: 0; outline: 3px solid #0A1A0F; outline-offset: 2px; }

/* â”€â”€ UTILITY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, #00D26A 0%, #00FF8A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h1 .text-gradient,
h2 .text-gradient { display: block; }

.section { padding: 96px 0; }
.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,210,106,0.2);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.section-lead {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 12px;
}
.hide-mobile { display: inline; }

/* â”€â”€ ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* â”€â”€ prefers-reduced-motion â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* â”€â”€ SCROLL REVEAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(18,18,18,0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(18,18,18,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.nav-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; object-fit: contain; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  letter-spacing: -.02em;
}
.logo-accent { color: var(--accent); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

/* ScrollSpy active */
.nav-link.active {
  color: var(--accent);
  background: var(--accent-dim);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-link--cta {
  color: var(--accent) !important;
  border: 1px solid rgba(0,210,106,0.35);
  border-radius: var(--radius-sm);
  padding: 7px 16px;
  margin-left: 8px;
}
.nav-link--cta:hover,
.nav-link--cta.active {
  background: var(--accent-dim) !important;
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.nav-link--cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  text-align: center;
}

/* Grid decorativo */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,210,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,210,106,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  display: none;
}

/* Glow central */
.hero::before {
  content: '';
  position: absolute;
  width: min(700px, 100vw);
  height: min(700px, 100vw);
  background: radial-gradient(circle, rgba(0,210,106,0.08) 0%, transparent 65%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

/* â”€â”€ Hero image real / placeholder â”€â”€ */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: .18;
  filter: grayscale(30%) contrast(1.1);
}
/* Overlay gradiente sobre la imagen para legibilidad */
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(18, 18, 18, 0.4) 0%, rgba(18, 18, 18, 0) 70%);
}

/* Placeholder hero cuando no hay imagen */
.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-bg-placeholder .ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: .12;
}
.hero-bg-placeholder svg { width: 80px; height: 80px; }
.hero-bg-placeholder .ph-text {
  font-size: .7rem;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,210,106,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
  text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.9), 0px 1px 3px rgba(0, 0, 0, 0.8);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.9), 0px 1px 3px rgba(0, 0, 0, 0.8);
}
.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.9), 0px 1px 3px rgba(0, 0, 0, 0.8);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  max-width: 560px;
  margin: 0 auto;
}
.trust-item { text-align: center; padding: 0 8px; }
.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.trust-item span {
  font-size: .75rem;
  color: var(--text-secondary);
  margin-top: 4px;
  display: block;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  justify-self: center;
}

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  min-height: 48px;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
  pointer-events: none;
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn--primary {
  background: linear-gradient(135deg, #00D26A 0%, #00B85A 100%);
  color: #0A1A0F;
  box-shadow: 0 4px 20px rgba(0,210,106,0.3);
}
.btn--primary:hover {
  box-shadow: 0 6px 32px rgba(0,210,106,0.5);
  transform: translateY(-2px);
}
.btn--primary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.btn--ghost:focus-visible {
  outline: 3px solid var(--text-primary);
  outline-offset: 3px;
}
.btn--lg { padding: 16px 36px; font-size: 1rem; border-radius: 10px; }
.btn--full { width: 100%; }
.magnetic { will-change: transform; }

/* â”€â”€ MARQUEE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-panel);
  padding: 14px 0;
  user-select: none;
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
@media (max-width: 768px) {
  .marquee-track { animation-duration: 25s; }
}
.marquee-track span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* â”€â”€ STEPS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.proceso { background: var(--bg-panel); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.step-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,210,106,0.1);
  transform: translateY(-4px);
}
.step-number {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0,210,106,0.07);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  user-select: none;
  letter-spacing: -.04em;
}
.step-icon { width: 48px; height: 48px; margin-bottom: 20px; }
.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-card p { color: var(--text-secondary); font-size: .9rem; line-height: 1.65; }

/* â”€â”€ VENTAJAS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ventaja-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.ventaja-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}
/* Float solo en hover, no constante â€” reduce mareo */
.ventaja-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  transition: transform .4s ease;
}
.ventaja-card:hover .ventaja-icon {
  animation: floatSlow 2s ease-in-out infinite;
}
.ventaja-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.ventaja-card p { color: var(--text-secondary); font-size: .875rem; line-height: 1.65; }

/* â”€â”€ NOSOTROS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nosotros { background: var(--bg-panel); }
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* â”€â”€ FIGURE / IMAGE SYSTEM â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.img-figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.img-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  transition: transform .6s ease;
}
.img-figure:hover img { transform: scale(1.03); }
.img-figure figcaption {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Aspect ratios para figuras */
.img-figure--portrait  { aspect-ratio: 4 / 5; }
.img-figure--wide      { aspect-ratio: 4 / 3; }
.img-figure--landscape { aspect-ratio: 16 / 9; }
.img-figure--square    { aspect-ratio: 1 / 1; }

/* Overlay sutil sobre imÃ¡genes */
.img-figure--overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18,18,18,0.5) 0%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
  border-radius: var(--radius-lg);
}

/* â”€â”€ PLACEHOLDER BOX (mientras no hay imagen real) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.placeholder-box {
  width: 100%;
  background: linear-gradient(135deg, var(--bg-panel-2) 0%, #161616 100%);
  border: 1px dashed rgba(0,210,106,0.25);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Shimmer effect sobre placeholder */
.placeholder-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(0,210,106,0.04) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
  pointer-events: none;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.placeholder-box svg { width: 56px; height: 56px; flex-shrink: 0; opacity: .4; }
.placeholder-box .ph-label {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  font-style: italic;
}
.placeholder-box .ph-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,210,106,0.2);
  border-radius: 100px;
  padding: 4px 12px;
}
.placeholder-box .ph-title {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: .04em;
}

/* Aspect ratios para placeholders */
.ph--hero     { aspect-ratio: 16 / 7; }
.ph--portrait { aspect-ratio: 4 / 5; }
.ph--wide     { aspect-ratio: 4 / 3; }
.ph--square   { aspect-ratio: 1 / 1; }

/* â”€â”€ NOSOTROS CONTENT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nosotros-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 16px 0 24px;
}
.nosotros-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: .95rem;
  line-height: 1.75;
}
.nosotros-content .btn { margin-top: 8px; }

/* â”€â”€ FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq { background: var(--bg-base); }
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--border-hover); }
.faq-question {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color var(--transition);
  user-select: none;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-question:hover { color: var(--accent); }
.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.75;
}

/* â”€â”€ CONTACTO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contacto { background: var(--bg-panel); }
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contacto-info { display: flex; flex-direction: column; gap: 32px; }
.contacto-datos h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.contacto-tel {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  transition: opacity var(--transition);
  line-height: 1.1;
}
.contacto-tel:hover { opacity: .8; }
.contacto-horario, .contacto-base {
  color: var(--text-secondary);
  font-size: .875rem;
  margin-top: 6px;
}
.contacto-form-wrap h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.form-lead {
  color: var(--text-secondary);
  font-size: .9rem;
  margin-bottom: 28px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FORMULARIO v3 â€” Labels estÃ¡ticos en todos los campos.
   Sistema unificado: label encima + input debajo.
   Sin floating labels. Sin conflictos visuales.
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Wrapper de campo â€” sistema unificado */
.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field-wrap--full { grid-column: 1 / -1; }

/* Label estÃ¡tico â€” igual para inputs, selects y textarea */
.form-label-static {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
/* El label se ilumina cuando el input dentro tiene foco */
.field-wrap:focus-within .form-label-static {
  color: var(--accent);
}

/* Input / Textarea base */
.form-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
}
.form-input::placeholder {
  color: var(--text-muted);
  font-size: .85rem;
}
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,210,106,0.12);
}
.form-input:hover:not(:focus) {
  border-color: rgba(255,255,255,0.18);
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
  padding-top: 13px;
}

/* Input error state */
.form-input.is-error {
  border-color: #FF6B6B;
  box-shadow: 0 0 0 3px rgba(255,107,107,0.12);
}
.field-error-msg {
  font-size: .75rem;
  color: #FF6B6B;
  margin-top: -2px;
  display: none;
}
.field-error-msg.show { display: block; }

/* â”€â”€ CUSTOM SELECT v3 â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Hereda el mismo sistema: label-static encima + trigger debajo */
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select__trigger {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: 13px 44px 13px 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: border-color var(--transition), box-shadow var(--transition), color var(--transition);
  user-select: none;
  outline: none;
  min-height: 48px;
}
.custom-select__trigger:hover {
  border-color: rgba(255,255,255,0.18);
}
.custom-select__trigger:focus,
.custom-select__trigger[aria-expanded="true"] {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,210,106,0.12);
  color: var(--text-primary);
}
.custom-select__trigger.has-value {
  color: var(--text-primary);
}
.custom-select__trigger.is-error {
  border-color: #FF6B6B;
  box-shadow: 0 0 0 3px rgba(255,107,107,0.12);
}
.custom-select__arrow {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
  pointer-events: none;
}
.custom-select__trigger[aria-expanded="true"] .custom-select__arrow {
  transform: rotate(180deg);
  color: var(--accent);
}
.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #1E1E1E;
  border: 1px solid rgba(0,210,106,0.25);
  border-radius: var(--radius-sm);
  overflow: hidden;
  z-index: 300;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  display: none;
}
.custom-select__dropdown.open {
  display: block;
  animation: fadeUp .15s ease both;
}
.custom-select__option {
  padding: 12px 16px;
  font-size: .875rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-select__option:last-child { border-bottom: none; }
.custom-select__option:hover,
.custom-select__option[aria-selected="true"] {
  background: var(--accent-dim);
  color: var(--accent);
  outline: none;
}
.custom-select__option[aria-selected="true"]::before {
  content: 'âœ“';
  color: var(--accent);
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}
.custom-select__option:not([aria-selected="true"])::before {
  content: '';
  display: inline-block;
  width: .8rem;
  flex-shrink: 0;
}
/* Native select oculto para envÃ­o del form */
.custom-select__native {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* â”€â”€ FORM CHECK â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.form-check-input {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--accent);
  cursor: pointer;
  min-width: 18px;
}
.form-check a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-disclaimer {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-disclaimer svg { flex-shrink: 0; }

/* Honeypot */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Btn loader */
.btn-loader-wrapper {
  display: none;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 210, 106, 0.25);
  border-top-color: #00D26A;
  border-right-color: #00D26A;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
.btn-loader-text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.btn--loading .btn-text { display: none; }
.btn--loading .btn-loader-wrapper { display: flex; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form error global */
.form-error-msg {
  color: #FF6B6B;
  font-size: .84rem;
  text-align: center;
  padding: 12px 16px;
  background: rgba(255,107,107,0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,107,107,0.2);
  display: none;
  line-height: 1.5;
}
.form-error-msg.show { display: block; }

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
  background: #0C0C0C;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  color: var(--text-secondary);
  font-size: .875rem;
  margin: 16px 0 20px;
  max-width: 300px;
  line-height: 1.65;
}
.footer-brand address {
  font-style: normal;
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.9;
}
.footer-brand address a { transition: color var(--transition); }
.footer-brand address a:hover { color: var(--accent); }
.footer-nav h4, .footer-legal h4 {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-nav ul li, .footer-legal ul li { margin-bottom: 10px; }
.footer-nav a, .footer-legal a {
  font-size: .875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-legal a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* â”€â”€ FLOATING CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.floating-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 990;
  background: linear-gradient(135deg, #00D26A, #00B85A);
  color: #0A1A0F;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(0,210,106,0.4);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  text-decoration: none;
  min-height: 48px;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta:hover {
  box-shadow: 0 6px 40px rgba(0,210,106,0.6);
  transform: translateY(-2px);
}

/* â”€â”€ COOKIE BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 9999;
  background: rgba(28,28,28,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  max-width: 400px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  display: none;
}
.cookie-banner.show { display: block; animation: fadeUp .4s ease; }
.cookie-banner p {
  font-size: .82rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}
.cookie-banner a { color: var(--accent); }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }
.btn-cookie {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  min-height: 40px;
}
.btn-cookie--ghost {
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-secondary);
  background: none;
}
.btn-cookie--ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--text-primary);
}
.btn-cookie--primary {
  background: var(--accent);
  color: #0A1A0F;
  border: none;
}
.btn-cookie--primary:hover { background: #00e876; }

/* â”€â”€ LEGAL PAGES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.legal-content { color: var(--text-secondary); line-height: 1.85; font-size: .9rem; }
.legal-content h2 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin: 32px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-content p { margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 20px; list-style: disc; }
.legal-content ul li { margin-bottom: 8px; }
.legal-content a { color: var(--accent); }
.legal-content strong { color: var(--text-primary); }
.legal-content code {
  background: rgba(255,255,255,0.07);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: .85em;
}
.legal-footer-note {
  margin-top: 40px;
  padding: 18px 22px;
  background: var(--bg-panel);
  border: 1px solid rgba(0,210,106,0.12);
  border-radius: 12px;
  font-size: .83rem;
  color: var(--text-secondary);
}

/* â”€â”€ HEADER ENHANCEMENTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-email {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--accent);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,210,106,0.3);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.nav-email:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
@media (min-width: 1025px) {
  .nav-email { display: flex; }
}

.header-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-left: 16px;
}

/* â”€â”€ HERO IMPROVEMENTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  background: linear-gradient(135deg, rgba(10, 26, 15, 0.9) 0%, rgba(18, 18, 18, 0.95) 100%),
              radial-gradient(circle at top right, rgba(0, 210, 106, 0.12) 0%, transparent 60%);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn--lg {
  padding: 18px 42px;
  font-size: 1rem;
  min-height: 54px;
  letter-spacing: .04em;
}

.btn--primary {
  background: linear-gradient(135deg, #00D26A 0%, #00B85A 100%);
  color: #0A1A0F;
  box-shadow: 0 8px 28px rgba(0,210,106,0.35);
}

.btn--primary:hover {
  box-shadow: 0 12px 40px rgba(0,210,106,0.55);
  transform: translateY(-3px);
  background: linear-gradient(135deg, #00E876 0%, #00C566 100%);
}

.btn--primary .btn-text {
  font-weight: 900;
  letter-spacing: .05em;
}

/* Hero trust improvements */
.hero-trust {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(0,210,106,0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero-reviews {
  background: rgba(0,210,106,0.08);
  border: 1px solid rgba(0,210,106,0.15);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
}

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .nosotros-grid { grid-template-columns: 1fr; gap: 40px; }
  .img-figure--portrait { aspect-ratio: 16 / 8; }
  .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-email { display: none !important; }
  .header-reviews { display: none; }
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .ventajas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: rgba(14,14,14,0.99);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 4px;
    overflow-y: auto;
    border-top: 1px solid var(--border);
  }
  .nav-menu.open { display: flex; animation: fadeIn .2s ease; }
  .nav-toggle { display: flex; }
  .nav-link {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }
  .nav-link--cta { margin-left: 0; margin-top: 8px; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn { justify-content: center; font-size: .95rem; padding: 16px 32px; }
  .section { padding: 64px 0; }
  .hide-mobile { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .floating-cta { bottom: 16px; right: 16px; font-size: .78rem; padding: 11px 16px; }
  .cookie-banner { left: 12px; right: 12px; max-width: none; bottom: 12px; }
}
@media (max-width: 600px) {
  .ventajas-grid { grid-template-columns: 1fr; }
  .btn--lg { padding: 14px 28px; font-size: .95rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .hero-trust {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 16px 8px;
    gap: 4px;
  }
  .hero-trust .trust-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
  }
  .trust-item { padding: 0 2px; }
  .trust-item strong { font-size: 1.4rem; }
  .trust-item span { font-size: .62rem; }
}

/* ================================================================
   HERO FIX v10 â€” Contraste localizado y subtÃ­tulo al 90% blanco
   ================================================================ */

.hero-content {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    position: relative !important; /* CRÃTICO PARA EL MÃ“VIL: Crea un nuevo contexto de apilamiento */
    z-index: 10 !important;        /* CRÃTICO PARA EL MÃ“VIL: Fuerza el texto por encima del overlay oscuro */
}

.hero-bg-image img {
    opacity: 1 !important;
    filter: brightness(1.05) !important;
}

/* Oscurecer la foto al 48% (Punto dulce de armonÃ­a) */
.hero-bg-image::after {
    background: rgba(0, 0, 0, 0.48) !important;
    z-index: 1;
}

.hero-title {
    text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.9) !important;
}

/* SubtÃ­tulo: Blanco puro, mÃ¡xima opacidad y escudo de triple sombra */
.hero-subtitle {
    color: #ffffff !important; 
    opacity: 1 !important; 
    font-weight: 600 !important; 
    text-shadow: 
        0px 2px 4px rgba(0, 0, 0, 1),      /* Sombra corta y dura (actÃºa casi como un borde) */
        0px 4px 12px rgba(0, 0, 0, 0.8),   /* Sombra media para dar profundidad */
        0px 0px 20px rgba(0, 0, 0, 0.6) !important; /* Resplandor oscuro alrededor de la frase */
}

/* MICRO-CRISTAL AHUMADO para elementos secundarios */
.hero-badge, 
.hero-ctas .btn--ghost, 
.hero-trust {
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* Texto verde limpio y brillante */
.text-gradient {
    text-shadow: none !important;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
}

/* FIX: Layout nav robusto y sin solapes */
.nav-container {
  flex-wrap: wrap;
  row-gap: 10px;
}
.nav-logo { order: 1; }
.header-reviews { order: 2; }
.nav-menu { order: 3; }
.nav-email { order: 4; }
.nav-toggle {
  order: 5;
  margin-left: auto;
}

/* FIX: Hero con altura completa, separaciÃ³n del header y prioridad visual */
.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 40px);
}
.hero-content {
  z-index: 12 !important;
}
.hero-bg-image { z-index: 1; }
.hero-bg-image::after {
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(0,30,15,0.7) 100%) !important;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem) !important;
  letter-spacing: -0.035em !important;
}

/* FIX: Hero badge mÃ¡s prominente + pulso + lÃ­nea decorativa */
@keyframes badge-line-expand {
  from { width: 0; opacity: 0; }
  to { width: 40px; opacity: 1; }
}
.hero-badge {
  position: relative;
  font-size: .9rem;
  padding: 8px 20px;
  box-shadow: 0 0 0 1px rgba(0,210,106,0.28), 0 10px 28px rgba(0,210,106,0.2);
}
.hero-badge::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(0,210,106,0.35);
  animation: pulse-ring 2.2s ease-out infinite;
  pointer-events: none;
}
.hero-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  animation: badge-line-expand .7s ease .15s both;
}

/* FIX: Proceso con hover de alto impacto */
.step-card {
  transition: all 0.3s ease;
}
.step-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(0,210,106,0.15);
  transform: translateY(-6px);
}
.step-number {
  font-size: 5rem;
  opacity: 0.06;
  top: -10px;
  right: 16px;
}

/* ── VENTAJAS GRID ───────────────────────────── */
.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ventajas-grid .feature-card:last-child {
  grid-column: 1 / -1;
  max-width: 480px;
  margin-inline: auto;
  width: 100%;
}
.feature-card {
  background: #161616;
  border: 1px solid #242424;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0,210,106,0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.feature-card:hover {
  border-color: rgba(0,210,106,0.35);
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,210,106,0.08), 0 24px 48px rgba(0,0,0,0.3);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card--highlight {
  background: linear-gradient(135deg, #161616 0%, #0d1f14 100%);
  border-color: rgba(0,210,106,0.3);
}
.feature-icon-wrap {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,210,106,0.08);
  border: 1px solid rgba(0,210,106,0.2);
  border-radius: 14px;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover .feature-icon-wrap {
  background: rgba(0,210,106,0.15);
  border-color: rgba(0,210,106,0.4);
  box-shadow: 0 0 20px rgba(0,210,106,0.15);
}
.feature-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #F0F0F0;
  margin: 0 0 8px;
  line-height: 1.3;
}
.feature-body p {
  font-size: 0.875rem;
  color: #8A8A8A;
  line-height: 1.6;
  margin: 0;
}
/* ── SCROLL REVEAL ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .ventajas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ventajas-grid .feature-card:last-child {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .ventajas-grid {
    grid-template-columns: 1fr;
  }
}

/* FIX: Formulario mÃ¡s contenido y filas colapsables */
.contacto-form-wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

/* â”€â”€ ÃREA DE SUBIDA MODERNA (Sustituye al Windows 95) â”€â”€ */
.modern-upload-area {
  position: relative;
  width: 100%;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: var(--bg-input);
  transition: all var(--transition);
  overflow: hidden;
}
.modern-upload-area:hover,
.modern-upload-area:focus-within {
  border-color: var(--accent);
  background: rgba(0, 210, 106, 0.05);
}
/* El input real se hace invisible pero clickeable cubriendo toda el Ã¡rea */
.modern-upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.modern-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  pointer-events: none; /* Para que el click pase al input */
  position: relative;
  z-index: 1;
}
.upload-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.8;
  transition: transform var(--transition);
}
.modern-upload-area:hover .upload-icon {
  transform: translateY(-4px);
  opacity: 1;
}
.upload-text-main {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.upload-text-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.5;
}

/* FIX: Submit con gradiente dinÃ¡mico + shimmer */
#submitBtn {
  background: linear-gradient(135deg, #00D26A 0%, #00FF8A 50%, #00D26A 100%);
  background-size: 200% auto;
  transition: background-position 0.5s ease, transform var(--transition), box-shadow var(--transition);
}
#submitBtn:hover {
  background-position: right center;
}

/* FIX: Floating CTA mÃ¡s llamativo y consistente */
.floating-cta {
  bottom: 24px;
  right: 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00D26A, #00B85A);
  box-shadow: 0 8px 32px rgba(0,210,106,0.45);
  padding: 14px 24px;
  font-weight: 700;
  font-size: .9rem;
  color: #0A1A0F;
  display: flex;
  align-items: center;
  gap: 8px;
}
.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,210,106,0.6);
}

/* FIX: Footer address directo y profesional */
.site-footer > address.footer-address {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 20px;
  font-style: normal;
  color: var(--text-muted);
  font-size: .85rem;
  line-height: 1.9;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.site-footer > address.footer-address a {
  color: var(--text-secondary);
}
.site-footer > address.footer-address a:hover {
  color: var(--accent);
}

/* FIX: Responsive nav mÃ³vil segÃºn especificaciÃ³n */
@media (max-width: 768px) {
  .header-reviews { display: none !important; }
  .nav-email { display: none !important; }
  .nav-container {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .nav-logo { grid-column: 1 / 2; }
  .nav-toggle { grid-column: 2 / 3; margin-left: 0; }
  .nav-menu { grid-column: 1 / -1; }
  .ventajas-grid { grid-template-columns: 1fr; }
}

/* FIX: Responsive estrecho para hero/form */
@media (max-width: 600px) {
  .form-row,
  .field-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  :root {
    --header-h: 60px;
  }
  .logo-text { font-size: 1.1rem; }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
  }
}

/* â”€â”€ CONTACTO MODERNIZADO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.modern-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-intro {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.6;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background var(--transition);
}
.contact-card:hover {
  background: rgba(0, 210, 106, 0.03);
  border-color: rgba(0, 210, 106, 0.2);
}
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
}
.contact-value a {
  color: var(--text-primary);
  transition: color var(--transition);
}
.contact-value a:hover { color: var(--accent); }
.email-link {
  color: var(--accent) !important;
  font-weight: 600;
  font-size: 1.05rem !important;
}
/* â”€â”€ MODAL LLAMADA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 24px;
}
.modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  width: 100%;
  max-width: 380px;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 24px 60px rgba(0,210,106,0.15);
  text-align: center;
}
.modal-overlay.is-active .modal-content {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition);
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.modal-close:hover {
  color: #FF6B6B;
  transform: rotate(90deg);
}
.modal-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* â”€â”€ GALERÃA DE PREVISUALIZACIÃ“N â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.remove-photo {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #FF6B6B;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 480px) {
}
.btn-clear-uploads {
  background: #FF6B6B;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: auto;
}
.btn-clear-uploads:hover { transform: scale(1.02); filter: brightness(1.1); }

/* --- FEEDBACK VISUAL DE FOTOS --- */
.preview-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); 
  gap: 12px; 
  margin-top: 16px; 
}
.preview-item { 
  position: relative; 
  aspect-ratio: 1/1; 
  border-radius: 8px; 
  overflow: hidden; 
  border: 1px solid rgba(255,255,255,0.1); 
  background: #1a1a1a; 
}
.preview-item img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}
.preview-info { 
  position: absolute; 
  bottom: 0; left: 0; right: 0; 
  background: rgba(0,0,0,0.8); 
  color: #fff; 
  font-size: 10px; 
  padding: 5px; 
  text-align: center; 
}
.preview-info span { 
  color: #00D26A; 
  font-weight: 700; 
  margin-right: 4px; 
}
@media (max-width: 480px) { 
  .preview-grid { 
    grid-template-columns: repeat(3, 1fr) !important; 
    gap: 8px !important; 
  } 
}
