/* ============================================================
   LLAVEGO — style.css
   Proptech Chilena · Antofagasta
   ============================================================ */

/* ── EDIT VARIABLES ─────────────────────────────────────── */
:root {
  --orange:       #FF5E1A;
  --orange-light: #FF7A3D;
  --orange-dim:   rgba(255,94,26,0.12);
  --black:        #0A0A0A;
  --surface:      #111111;
  --surface2:     #181818;
  --border:       rgba(255,255,255,0.07);
  --border2:      rgba(255,255,255,0.12);
  --text:         #FFFFFF;
  --text-muted:   rgba(255,255,255,0.5);
  --text-dim:     rgba(255,255,255,0.3);
  --cream:        #F5F2EC;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 32px rgba(0,0,0,0.4);
  --transition:   0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: 'Syne', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ── UTILITY ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.orange { color: var(--orange); }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-dim); border: 1px solid rgba(255,94,26,0.25);
  color: var(--orange); font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--orange);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
.section-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); font-weight: 600; margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 540px; line-height: 1.7; }
section { padding: 96px 0; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  transition: all var(--transition); cursor: pointer;
}
.btn-primary {
  background: var(--orange); color: #fff;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,94,26,0.35); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.04); }
.btn-outline-orange {
  background: transparent; color: var(--orange);
  border: 1.5px solid rgba(255,94,26,0.4);
}
.btn-outline-orange:hover { background: var(--orange-dim); border-color: var(--orange); }
.btn-lg { padding: 18px 36px; font-size: 16px; border-radius: 14px; }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 8px; }
.btn-whatsapp {
  background: #25D366; color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 70px;
  background: rgba(10,10,10,0.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-logo img { height: 38px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  transition: color var(--transition); letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { color: var(--orange); }
.nav-cta-group { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-size: 13px; color: var(--text-muted); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer; z-index: 1100;
}
.hamburger span {
  display: block; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--black); padding: 100px 32px 40px;
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 22px; font-family: 'Syne',sans-serif; font-weight: 700;
  color: var(--text-muted); padding: 14px 0; border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--orange); }
.mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero-bg-grad {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 60% at 80% 45%, rgba(255,94,26,0.13) 0%, transparent 65%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--border) 1px,transparent 1px),
                    linear-gradient(90deg, var(--border) 1px,transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 40% 50%, black 20%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 40px; max-width: 520px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.stat-val { font-family: 'Syne',sans-serif; font-weight: 800; font-size: 2rem; }
.stat-val span { color: var(--orange); }
.stat-label { font-size: 12px; color: var(--text-dim); margin-top: 2px; letter-spacing: 0.3px; }

/* ── PROBLEM STRIP ───────────────────────────────────────── */
.problem-strip {
  background: var(--cream); padding: 20px 0; overflow: hidden;
}
.problem-inner {
  display: flex; gap: 0; align-items: center;
  flex-wrap: wrap; justify-content: center;
}
.problem-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 24px; border-right: 1px solid rgba(0,0,0,0.12);
}
.problem-item:last-child { border-right: none; }
.px { font-weight: 700; color: #B83000; font-size: 14px; }
.problem-text { font-size: 13px; color: #444; white-space: nowrap; }

/* ── CARDS — PROPIEDADES ─────────────────────────────────── */
.prop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.prop-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(255,94,26,0.2); }
.prop-card-img {
  position: relative; height: 210px; overflow: hidden;
  background: var(--surface2);
}
.prop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.prop-card:hover .prop-card-img img { transform: scale(1.04); }
.prop-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 12px; border-radius: 100px;
}
.prop-tag.venta { background: #1A6FFF; }
.prop-code { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,0.7); color: var(--text-muted); font-size: 10px; padding: 3px 8px; border-radius: 6px; }
.prop-card-body { padding: 20px; }
.prop-title { font-size: 1rem; font-weight: 600; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prop-location { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; display: flex; align-items: center; gap: 5px; }
.prop-features { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.prop-feat { display: flex; align-items: center; gap: 5px; }
.prop-price { font-family: 'Syne',sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--orange); margin-bottom: 16px; }
.prop-actions { display: flex; gap: 10px; }
.prop-actions .btn { flex: 1; justify-content: center; font-size: 12px; padding: 10px; }

/* ── PILARES ─────────────────────────────────────────────── */
.pilares-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px; }
.pilar {
  padding: 36px 28px; border: 1px solid var(--border);
  border-radius: var(--radius-lg); position: relative; overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.pilar::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--orange); transform:scaleX(0); transform-origin:left; transition:transform 0.3s; }
.pilar:hover::before { transform:scaleX(1); }
.pilar:hover { border-color: rgba(255,94,26,0.25); background: rgba(255,94,26,0.03); }
.pilar-num { font-family:'Syne',sans-serif; font-size: 56px; font-weight:900; color:rgba(255,255,255,0.03); position:absolute; top:12px; right:16px; line-height:1; }
.pilar-icon { font-size: 28px; margin-bottom: 16px; }
.pilar-name { font-size: 16px; font-weight: 700; color: var(--orange); margin-bottom: 10px; }
.pilar p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.pilar-claim { font-size: 12px; color: var(--text-dim); font-style: italic; }

/* ── VALUE GRID ──────────────────────────────────────────── */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: var(--radius-lg); overflow: hidden; margin-top: 56px; }
.value-card { padding: 48px 40px; background: var(--surface); transition: background var(--transition); }
.value-card:hover { background: var(--surface2); }
.value-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.value-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.value-tag {
  display: inline-block; background: var(--orange-dim);
  color: var(--orange); font-size: 11px; padding: 4px 12px;
  border-radius: 100px; font-weight: 500;
}

/* ── JOURNEY ─────────────────────────────────────────────── */
.journey-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 56px; position: relative; }
.journey-steps::before {
  content:''; position:absolute; top:27px; left:12.5%; right:12.5%;
  height:1px; background: rgba(255,94,26,0.25); z-index:0;
}
.journey-step { text-align:center; padding: 0 16px; position:relative; z-index:1; }
.step-circle {
  width:54px; height:54px; border-radius:50%; background:var(--orange);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px; font-family:'Syne',sans-serif; font-weight:900; font-size:18px;
  box-shadow:0 0 0 8px rgba(255,94,26,0.1);
}
.journey-step h4 { font-size: 15px; margin-bottom: 8px; }
.journey-step p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }

/* ── TECH SECTION ────────────────────────────────────────── */
.tech-section { background: var(--surface); }
.tech-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.tech-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--black); border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.tech-card:hover { border-color: rgba(255,94,26,0.3); }
.tech-icon { font-size: 32px; margin-bottom: 16px; }
.tech-card h4 { font-size: 15px; margin-bottom: 10px; }
.tech-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── CALENDLY SECTION ────────────────────────────────────── */
.calendly-section { background: var(--surface); }
.calendly-embed-wrapper {
  margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface2);
}
.calendly-inline-widget { min-width: 280px; }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--orange); padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta-band h2 { color:#fff; position:relative; z-index:1; margin-bottom:16px; }
.cta-band p { color:rgba(255,255,255,0.8); margin-bottom:36px; font-size: 1.05rem; position:relative; z-index:1; }
.cta-band .btn-white { background:#fff; color:var(--orange); font-weight:700; }
.cta-band .btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.2); }
.cta-band .btn-outline-white { background:transparent; color:#fff; border:2px solid rgba(255,255,255,0.5); }
.cta-band .btn-outline-white:hover { border-color:#fff; }
.cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; z-index:1; }

/* ── FILTERS ─────────────────────────────────────────────── */
.filters-bar {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 40px;
  display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end;
}
.filter-group { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 140px; }
.filter-group label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim); font-weight: 600; }
.filter-group select,
.filter-group input {
  background: var(--surface2); border: 1px solid var(--border2);
  color: var(--text); padding: 10px 14px; border-radius: 8px;
  font-size: 14px; transition: border-color var(--transition); outline: none;
  appearance: none; -webkit-appearance: none;
}
.filter-group select:focus, .filter-group input:focus { border-color: var(--orange); }
.filter-count { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.filter-count strong { color: var(--orange); }
.no-results { text-align:center; padding: 80px 20px; color: var(--text-muted); }
.no-results .icon { font-size: 48px; margin-bottom: 16px; }

/* ── PROPERTY DETAIL ─────────────────────────────────────── */
.detail-hero { padding: 100px 0 60px; }
.detail-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 4px; border-radius: var(--radius-lg); overflow: hidden; margin-top: 32px; }
.gallery-main { height: 420px; overflow: hidden; }
.gallery-main img { width:100%; height:100%; object-fit:cover; }
.gallery-thumbs { display: grid; grid-template-rows: 1fr 1fr; gap: 4px; }
.gallery-thumb { overflow: hidden; }
.gallery-thumb img { width:100%; height:100%; object-fit:cover; transition: opacity 0.2s; cursor:pointer; }
.gallery-thumb img:hover { opacity: 0.8; }
.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; margin-top: 48px; align-items: start; }
.detail-main {}
.detail-sidebar {
  position: sticky; top: 90px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.detail-price { font-family:'Syne',sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--orange); margin-bottom: 6px; }
.detail-op { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.detail-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 28px 0; }
.detail-feat {
  background: var(--surface2); border-radius: 10px; padding: 16px;
  text-align: center;
}
.detail-feat .icon { font-size: 22px; margin-bottom: 8px; }
.detail-feat .val { font-size: 18px; font-weight: 700; }
.detail-feat .lbl { font-size: 11px; color: var(--text-muted); }
.detail-section { margin-bottom: 40px; }
.detail-section h3 { font-size: 1.1rem; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.detail-section p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; }
.detail-chars { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.detail-char { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-muted); }
.detail-char::before { content:'•'; color: var(--orange); }
.map-placeholder {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); height: 280px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-dim); gap: 8px; margin-top: 0;
}
.sidebar-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.sidebar-actions .btn { justify-content: center; width: 100%; }
.sidebar-divider { height: 1px; background: var(--border); margin: 8px 0; }
.sidebar-info { font-size: 12px; color: var(--text-dim); text-align: center; }
.code-badge { display:inline-block; background:var(--surface2); border:1px solid var(--border); color:var(--text-muted); font-size:11px; padding:4px 10px; border-radius:6px; margin-bottom: 16px; font-family: monospace; }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  padding: 130px 0 70px; text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,94,26,0.1) 0%, transparent 60%);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── FORMS ───────────────────────────────────────────────── */
.form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface2); border: 1px solid var(--border2);
  color: var(--text); padding: 12px 16px; border-radius: 8px;
  font-size: 14px; outline: none; transition: border-color var(--transition);
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-success, .form-error {
  display:none; padding:16px 20px; border-radius: var(--radius);
  font-size: 14px; margin-top: 16px;
}
.form-success { background: rgba(37,211,102,0.1); border:1px solid rgba(37,211,102,0.3); color:#25D366; }
.form-error { background: rgba(255,94,26,0.1); border:1px solid rgba(255,94,26,0.3); color:var(--orange); }
.form-submit-group { display:flex; align-items:center; gap:20px; margin-top: 12px; }
.form-privacy { font-size:12px; color: var(--text-dim); }

/* ── NOSOTROS ────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.team-card {
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; text-align: center;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%; background: var(--orange-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 16px;
}
.team-card h4 { margin-bottom: 4px; font-size: 1rem; }
.team-card .role { font-size: 12px; color: var(--orange); margin-bottom: 12px; font-weight: 500; }
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.value-item { padding: 28px; border:1px solid var(--border); border-radius: var(--radius-lg); }
.value-item .icon { font-size: 28px; margin-bottom: 12px; }
.value-item h4 { margin-bottom: 8px; font-size: 15px; }
.value-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; margin-top: 16px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border:1px solid var(--border);
  border-radius: var(--radius); padding: 20px; transition: border-color var(--transition);
}
.contact-method:hover { border-color: rgba(255,94,26,0.3); }
.contact-method-icon { font-size: 24px; width: 48px; height: 48px; background: var(--orange-dim); border-radius: 10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-method-info h4 { font-size: 14px; margin-bottom: 4px; }
.contact-method-info p { font-size: 13px; color: var(--text-muted); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-link {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--surface); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size: 18px; transition: all var(--transition);
}
.social-link:hover { background: var(--orange-dim); border-color: var(--orange); transform:translateY(-2px); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #060606; padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 34px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.65; max-width: 240px; }
.footer-city { display:inline-flex; align-items:center; gap:6px; background:var(--orange-dim); border:1px solid rgba(255,94,26,0.2); color:var(--orange); font-size:11px; font-weight:600; padding:4px 12px; border-radius:100px; margin-top:14px; }
.footer-col h5 { font-size: 11px; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-dim); margin-bottom:16px; font-weight:600; }
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col a { font-size: 13.5px; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-dim); flex-wrap: wrap; gap: 12px;
}
.footer-social { display:flex; gap:12px; }
.footer-social a { color: var(--text-muted); font-size: 16px; transition: color var(--transition); }
.footer-social a:hover { color: var(--orange); }

/* ── BENEFICIOS ──────────────────────────────────────────── */
.beneficios-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.beneficios-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.beneficio { display:flex; align-items:flex-start; gap:16px; }
.beneficio-icon { width:44px; height:44px; background:var(--orange-dim); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; margin-top:2px; }
.beneficio h4 { font-size: 15px; margin-bottom: 4px; }
.beneficio p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.beneficios-visual {
  background: var(--surface); border:1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; text-align:center;
}
.beneficios-visual .big-icon { font-size: 72px; margin-bottom: 16px; }
.beneficios-visual h3 { margin-bottom: 8px; }
.beneficios-visual p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

/* ── PUBLICA PAGE ────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 24px; }
.step-item { display:flex; gap:20px; align-items:flex-start; }
.step-num-circle { width:40px; height:40px; border-radius:50%; background:var(--orange); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:15px; flex-shrink:0; }
.step-item h4 { font-size: 15px; margin-bottom: 6px; }
.step-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:12px; color:var(--text-dim); margin-bottom:20px; flex-wrap:wrap; }
.breadcrumb a { color: var(--text-muted); transition:color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--text-dim); }

/* ── LOADING SKELETON ────────────────────────────────────── */
.skeleton { background: linear-gradient(90deg, var(--surface) 25%, var(--surface2) 50%, var(--surface) 75%); background-size: 200%; animation: shimmer 1.5s infinite; border-radius: 8px; }
@keyframes shimmer { 0%{background-position:200%} 100%{background-position:-200%} }

/* ── PAGE TRANSITIONS ────────────────────────────────────── */
body { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
[data-aos] { opacity:0; transform:translateY(24px); transition:opacity 0.55s ease, transform 0.55s ease; }
[data-aos].aos-animate { opacity:1; transform:none; }
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="fade-left"].aos-animate { transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .prop-grid { grid-template-columns: repeat(2,1fr); }
  .pilares-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .tech-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  #navbar { padding: 0 20px; }
  .nav-links, .nav-cta-group, .nav-phone { display: none; }
  .hamburger { display: flex; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { gap: 28px; }
  .prop-grid { grid-template-columns: 1fr; }
  .pilares-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .value-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .journey-steps::before { display:none; }
  .beneficios-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .detail-gallery { grid-template-columns: 1fr; }
  .gallery-thumbs { display:none; }
  .gallery-main { height: 260px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .filters-bar { flex-direction: column; }
  .filter-group { min-width: 100%; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .detail-features { grid-template-columns: repeat(3,1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .problem-item { padding: 8px 16px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .pilares-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr; }
  .detail-features { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .filters-bar { padding: 16px; }
}
@media (max-width: 768px) {

  /* HERO */
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero .badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 10vw, 4rem);
    line-height: 1;
    text-align: center;
  }

  .hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    max-width: 95%;
  }

  /* BOTONES */
  .hero-actions {
    align-items: center;
    justify-content: center;
  }

  /* STATS */
  .hero-stats {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 32px;
    margin-top: 42px;
    padding-top: 32px;
  }

  .hero-stats > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stat-val {
    font-size: 2.4rem;
  }

  .stat-label {
    text-align: center;
    max-width: 110px;
  }

}
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.open {
    display: flex !important;
  }

  body.menu-open {
    overflow: hidden;
  }

  .calendly-embed-wrapper {
    width: 100%;
    min-height: 720px;
  }

  .calendly-inline-widget {
    width: 100% !important;
    min-width: 100% !important;
    height: 720px !important;
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.open {
    display: flex !important;
  }

  body.menu-open {
    overflow: hidden;
  }

  .calendly-embed-wrapper {
    width: 100%;
    min-height: 720px;
  }

  .calendly-inline-widget {
    width: 100% !important;
    min-width: 100% !important;
    height: 720px !important;
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1200;
  }

  .hamburger span {
    width: 26px;
    height: 2px;
    display: block;
    background: #ffffff;
    border-radius: 4px;
  }

  .mobile-menu.open {
    display: flex !important;
  }
}

/* ── FIX MOBILE NOSOTROS ───────────────────────────── */

@media (max-width: 768px) {
  .page-hero {
    padding: 110px 0 56px;
    text-align: center;
  }

  .page-hero .badge {
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
    line-height: 1;
    text-align: center;
  }

  .page-hero p {
    font-size: 0.95rem;
    max-width: 92%;
    margin: 0 auto;
  }

  .beneficios-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .beneficios-grid > div {
    text-align: center;
  }

  .beneficios-grid .section-label {
    text-align: center;
  }

  .beneficios-grid .section-title {
    text-align: center;
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .beneficios-grid p {
    text-align: center;
  }

  .beneficios-grid div[style*="display:flex"] {
    justify-content: center;
  }

  .beneficios-visual {
    padding: 28px 20px;
  }

  .values-grid,
  .team-grid,
  .tech-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .value-item,
  .team-card,
  .tech-card {
    padding: 26px 22px;
    text-align: center;
  }

  .team-card {
    max-width: 100%;
  }

  .team-avatar {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }

  .team-card h4 {
    font-size: 1.15rem;
  }

  .team-card .role {
    font-size: 10.5px;
    line-height: 1.4;
    letter-spacing: 0.8px;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-card p {
    font-size: 13px;
    line-height: 1.75;
    text-align: center;
  }

  .cta-band {
    padding: 64px 0;
  }

  .cta-band h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1;
  }

  .cta-band p {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}