/* ===== VARIABLES ===== */
:root {
  --navy: #0f2044;
  --navy-deep: #081429;
  --navy-mid: #1a3060;
  --navy-light: #2a4a80;
  --gold: #b8962e;
  --gold-light: #d4af5a;
  --white: #ffffff;
  --off-white: #f7f6f3;
  --light: #eef0f4;
  --border: #d4d8e2;
  --border-navy: rgba(255,255,255,0.12);
  --text: #1a1a2e;
  --text-mid: #3d4460;
  --text-muted: #6b7290;
  --radius: 3px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 8px rgba(15,32,68,0.08);
  --shadow: 0 8px 32px rgba(15,32,68,0.12);
  --shadow-lg: 0 20px 60px rgba(15,32,68,0.18);
  --t: 0.25s ease;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--white); color: var(--text); font-family: var(--font-sans); font-weight: 400; line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ===== LAYOUT ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--navy { background: var(--navy-deep); }
.section--light { background: var(--off-white); }

/* ===== TYPOGRAPHY ===== */
.heading-serif { font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; line-height: 1.15; color: var(--navy); margin-bottom: 1.5rem; }
.heading-serif--light { color: var(--white); }
.heading-serif em { font-style: italic; font-weight: 400; color: var(--gold); }
.section-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.section-label--light { color: var(--gold-light); }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-desc { color: var(--text-muted); max-width: 540px; font-size: 1.05rem; }
.section-desc--light { color: rgba(255,255,255,0.65); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.8rem 1.9rem; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; border-radius: var(--radius); border: none; cursor: pointer; transition: var(--t); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--link { background: none; border: none; color: var(--text-muted); font-size: 0.82rem; letter-spacing: 0.06em; cursor: pointer; padding: 0.5rem 0; text-decoration: underline; text-underline-offset: 3px; }
.btn--link:hover { color: var(--navy); }
.btn--full { width: 100%; }

/* ===== LOGOS ===== */
.nav__logo-img { height: 44px; width: auto; display: block; border-radius: 6px; }
.footer__logo-img { height: 80px; width: auto; display: block; border-radius: 4px; }

/* ===== NAVBAR ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 0; transition: var(--t); }
.nav.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); padding: 0.85rem 0; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--border); }
.nav__inner { max-width: 1160px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav__brand { display: flex; align-items: center; gap: 0.85rem; }
.nav__brand-seal { width: 38px; height: 38px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em; flex-shrink: 0; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__name { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.nav__sub { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mid); transition: var(--t); }
.nav__links a:hover { color: var(--navy); }
.nav__cta { background: var(--navy) !important; color: var(--white) !important; padding: 0.55rem 1.25rem; border-radius: var(--radius); }
.nav__cta:hover { background: var(--navy-mid) !important; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__toggle span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: var(--t); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--white); overflow: hidden; }
.hero__bg { position: absolute; right: 0; top: 0; bottom: 0; width: 45%; background: var(--off-white); clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%); z-index: 0; }
.hero__inner { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.hero__eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.hero__seal-line { width: 32px; height: 2px; background: var(--gold); flex-shrink: 0; }
.hero__eyebrow span { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.hero__title { font-family: var(--font-serif); font-size: clamp(3.5rem, 6vw, 5.5rem); font-weight: 600; line-height: 0.95; color: var(--navy); margin-bottom: 1.75rem; }
.hero__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero__director { font-size: 0.85rem; color: var(--text-mid); letter-spacing: 0.03em; margin-bottom: 1.25rem; }
.hero__director strong { color: var(--navy); font-weight: 600; }
.hero__lead { font-size: 1.1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2.5rem; max-width: 440px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__photo-frame { position: relative; margin-bottom: 2rem; }
.hero__photo-placeholder { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-lg); aspect-ratio: 3/4; max-width: 340px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.hero__photo-frame img { width: 100%; max-width: 340px; aspect-ratio: 3/4; object-fit: cover; object-position: top; border-radius: var(--radius-lg); display: block; margin: 0 auto; box-shadow: var(--shadow-lg); }
.hero__photo-deco { position: absolute; bottom: -12px; right: -12px; width: 80px; height: 80px; border: 2px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.hero__stats { display: flex; align-items: center; gap: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-sm); }
.hero__stat { flex: 1; text-align: center; padding: 0.5rem; }
.hero__stat strong { display: block; font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 0.3rem; }
.hero__stat span { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.hero__stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); }
.hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--navy), transparent); margin: 0 auto; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ===== LOGO BANNER ===== */
.logo-banner {
  width: 100%;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-banner img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  display: block;
}
.logo-banner--main { padding-top: 80px; }
.logo-banner--main img { max-height: 520px; }

/* ===== PERFIL ===== */
.perfil__grid { display: grid; grid-template-columns: 320px 1fr; gap: 5rem; align-items: start; }
.perfil__aside { position: sticky; top: 100px; }
.perfil__quote { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: var(--navy); line-height: 1.6; padding: 1.5rem 0 1.5rem 1.5rem; border-left: 3px solid var(--gold); margin-bottom: 2rem; }
.perfil__data { display: flex; flex-direction: column; gap: 1rem; }
.perfil__data-item { display: flex; flex-direction: column; gap: 0.15rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.perfil__data-item:last-child { border-bottom: none; }
.perfil__data-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.perfil__data-val { font-size: 0.92rem; font-weight: 500; color: var(--navy); }
.perfil__body p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.8; }
.perfil__body p strong { color: var(--text); }
.perfil__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.perfil__tags span { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); background: var(--light); border: 1px solid var(--border); padding: 0.35rem 0.8rem; border-radius: 2px; }

/* ===== DIFERENCIAL ===== */
.diferencial { position: relative; }
.diferencial::before { content: ''; position: absolute; inset: 0; background: rgba(8,20,41,0.88); z-index: 0; }
.diferencial .container { position: relative; z-index: 1; }
.diferencial__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.diferencial__card { background: rgba(255,255,255,0.04); padding: 2.5rem 2rem; border: 1px solid rgba(255,255,255,0.06); transition: var(--t); }
.diferencial__card:hover { background: rgba(255,255,255,0.08); }
.diferencial__num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--gold); opacity: 0.5; line-height: 1; margin-bottom: 1rem; }
.diferencial__card h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.diferencial__card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* ===== FOTO OFICINA EN PERFIL ===== */
.perfil__foto-oficina { margin-bottom: 2rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.perfil__foto-oficina img { width: 100%; height: 280px; object-fit: cover; object-position: center top; display: block; }

/* ===== SERVICIOS ===== */
.servicios__list { border-top: 1px solid var(--border); }
.servicio { border-bottom: 1px solid var(--border); overflow: hidden; }
.servicio__header { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem 0; cursor: pointer; transition: var(--t); }
.servicio__header:hover .servicio__arrow { transform: translateX(4px); color: var(--navy); }
.servicio__idx { font-family: var(--font-serif); font-size: 0.85rem; color: var(--text-muted); min-width: 28px; }
.servicio__header h3 { flex: 1; font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--navy); }
.servicio__arrow { font-size: 1.2rem; color: var(--text-muted); transition: var(--t); }
.servicio p { padding: 0 0 1.5rem 2.8rem; color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; display: none; }
.servicio.open p { display: block; }
.servicio.open .servicio__arrow { transform: rotate(90deg); color: var(--navy); }

/* ===== AGENDA ===== */
.agenda .container { display: grid; grid-template-columns: 1fr 280px; gap: 4rem; align-items: start; }
.agenda__intro { grid-column: 1 / -1; text-align: center; max-width: 560px; margin: 0 auto; }
.agenda__intro p { color: var(--text-muted); }
.agenda__widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.agenda__step { padding: 2.25rem; }
.agenda__step--hidden { display: none; }
.agenda__step-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.agenda__selected-date { font-family: var(--font-serif); font-size: 1.2rem; color: var(--navy); font-weight: 600; margin-bottom: 1.25rem; }
.agenda__summary { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.85rem 1rem; font-size: 0.85rem; color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.6; }

/* Calendar */
.cal__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.cal__month { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--navy); text-transform: capitalize; }
.cal__nav { background: none; border: 1px solid var(--border); width: 32px; height: 32px; border-radius: var(--radius); cursor: pointer; font-size: 1.1rem; color: var(--text-mid); display: flex; align-items: center; justify-content: center; transition: var(--t); }
.cal__nav:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cal__weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px; }
.cal__weekdays span { text-align: center; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); padding: 0.4rem 0; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal__day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; border-radius: var(--radius); cursor: pointer; border: 1px solid transparent; transition: var(--t); color: var(--text-mid); font-weight: 500; }
.cal__day:hover:not(.cal__day--disabled):not(.cal__day--empty):not(.cal__day--weekend) { background: var(--light); border-color: var(--border); }
.cal__day--today { color: var(--gold); font-weight: 700; }
.cal__day--disabled { color: var(--border); cursor: default; }
.cal__day--empty { cursor: default; }
.cal__day--selected { background: var(--navy) !important; color: var(--white) !important; border-color: var(--navy) !important; }
.cal__day--weekend { color: var(--border); cursor: default; }

/* Slots */
.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-bottom: 1.25rem; }
.slot { padding: 0.6rem 0.4rem; text-align: center; font-size: 0.8rem; font-weight: 500; border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: var(--t); color: var(--text-mid); background: var(--white); }
.slot:hover:not(.slot--taken) { border-color: var(--navy); color: var(--navy); background: var(--light); }
.slot--selected { background: var(--navy); color: var(--white); border-color: var(--navy); }
.slot--taken { background: var(--off-white); color: var(--border); cursor: default; text-decoration: line-through; }
.slot--ocupado { background: var(--off-white); color: var(--border); cursor: not-allowed; opacity: 0.45; }
.slots__loading { grid-column: 1/-1; text-align: center; color: var(--text-muted); font-size: 0.85rem; padding: 1.5rem 0; }

/* Agenda info lateral */
.agenda__info { padding-top: 1rem; display: flex; flex-direction: column; gap: 1.25rem; }
.agenda__info-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.agenda__info-item svg { color: var(--navy); flex-shrink: 0; margin-top: 1px; }
.agenda__info-item--precio { color: var(--navy); font-weight: 600; }
.agenda__info-item--precio strong { color: var(--gold); }
.agenda__precio { font-size: 0.95rem; color: var(--text-muted); margin-top: 0.5rem; }
.agenda__precio strong { color: var(--navy); font-weight: 700; }

/* Agenda form */
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.5rem; }

/* Agenda success */
.agenda__success { text-align: center; padding: 3rem 2rem; }
.agenda__success-icon { width: 56px; height: 56px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1.5rem; }
.agenda__success h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--navy); margin-bottom: 0.75rem; }
.agenda__success p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; max-width: 360px; margin: 0 auto 0.5rem; }

/* ===== FORMS ===== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mid); }
.form-group input,
.form-group textarea { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.7rem 0.9rem; color: var(--text); font-size: 0.9rem; transition: var(--t); outline: none; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 3px rgba(15,32,68,0.07); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab0c0; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-radio-group { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 0.5rem; }
.form-radio { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; font-size: 0.88rem; color: var(--text-dark); line-height: 1.5; }
.form-radio input[type="radio"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; accent-color: var(--navy); cursor: pointer; }
.form-check { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 1.5rem; }
.form-check input { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; accent-color: var(--navy); cursor: pointer; }
.form-check label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.form-msg { font-size: 0.82rem; padding: 0.7rem 0.9rem; border-radius: var(--radius); margin-top: 0.75rem; display: none; }
.form-msg.success { display: block; background: #f0faf4; border: 1px solid #b2dfca; color: #1d7a46; }
.form-msg.error { display: block; background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }

/* ===== CONTACTO ===== */
.contacto__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contacto__info p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1rem; line-height: 1.75; }
.contacto__datos { display: flex; flex-direction: column; gap: 1rem; }
.contacto__dato { display: flex; align-items: center; gap: 1rem; padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--t); }
.contacto__dato:hover { border-color: var(--navy); background: var(--off-white); }
.contacto__dato-icon { width: 40px; height: 40px; background: var(--navy); color: var(--white); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contacto__dato span { display: block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.15rem; }
.contacto__dato strong { font-size: 0.92rem; font-weight: 500; color: var(--navy); }
.contacto__form-wrap { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-deep); padding: 3.5rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: auto 1fr auto; gap: 3rem; align-items: start; margin-bottom: 2.5rem; }
.footer__brand { display: flex; align-items: center; gap: 0.85rem; }
.footer__seal { width: 42px; height: 42px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--white); flex-shrink: 0; }
.footer__name { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--white); }
.footer__role { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 2px; }
.footer__nav { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.footer__nav a { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); transition: var(--t); }
.footer__nav a:hover { color: var(--white); }
.footer__legal { max-width: 280px; text-align: right; }
.footer__legal p { font-size: 0.75rem; color: rgba(255,255,255,0.3); line-height: 1.6; margin-bottom: 0.5rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer__dev a { color: rgba(184,150,46,0.6); transition: var(--t); }
.footer__dev a:hover { color: var(--gold-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .perfil__grid { grid-template-columns: 1fr; gap: 3rem; }
  .perfil__aside { position: static; }
  .agenda .container { grid-template-columns: 1fr; }
  .agenda__info { flex-direction: row; flex-wrap: wrap; gap: 1rem; padding-top: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__legal { text-align: left; grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 768px) {
  .hero__bg { display: none; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero__eyebrow { justify-content: center; }
  .hero__lead { margin: 0 auto 2.5rem; }
  .hero__actions { justify-content: center; }
  .hero__stats { max-width: 400px; margin: 0 auto; }
  .diferencial__grid { grid-template-columns: 1fr 1fr; }
  .contacto__grid { grid-template-columns: 1fr; gap: 3rem; }
  .nav__links { display: none; flex-direction: column; position: fixed; inset: 0; top: 64px; background: rgba(255,255,255,0.98); backdrop-filter: blur(16px); padding: 2.5rem 2rem; gap: 1.5rem; align-items: center; justify-content: center; z-index: 99; }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1rem; }
  .nav__toggle { display: flex; }
  .slots { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__nav { justify-content: flex-start; }
  .footer__legal { text-align: left; }
}
@media (max-width: 480px) {
  .diferencial__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 1rem; }
  .hero__stat-divider { width: 60px; height: 1px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
