/* =========================================================
   Dr. Eduardo Aquino – Landing Styles
   Scoped bajo .draq-landing para NO afectar el resto del sitio
   ========================================================= */

.draq-landing *, .draq-landing *::before, .draq-landing *::after { box-sizing: border-box; margin: 0; padding: 0; }

.draq-landing {
  --navy: #0a1628;
  --navy-mid: #112240;
  --teal: #0d9e75;
  --teal-dark: #0b8a66;
  --teal-light: #e1f5ee;
  --gold: #c9a96e;
  --cream: #faf9f6;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border-light: rgba(0,0,0,0.07);
  --border-teal: rgba(13,158,117,0.2);

  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.draq-landing img { display: block; max-width: 100%; }
.draq-landing a { text-decoration: none; }

/* ── NAV ── */
.draq-landing #nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 70px;
  background: rgba(250,249,246,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-teal);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  transition: box-shadow 0.3s;
}
.draq-landing .nav-brand { display: flex; align-items: center; gap: 12px; }
.draq-landing .nav-brand-dot {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem; font-weight: 600; color: var(--teal);
}
.draq-landing .nav-brand-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); line-height: 1.2; }
.draq-landing .nav-brand-text span { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.68rem; font-weight: 400; color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase; }
.draq-landing .nav-links { display: flex; align-items: center; gap: 2.2rem; }
.draq-landing .nav-links a { font-size: 0.83rem; color: var(--muted); letter-spacing: 0.03em; transition: color 0.2s; position: relative; }
.draq-landing .nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--teal); transform: scaleX(0); transition: transform 0.25s; }
.draq-landing .nav-links a:hover { color: var(--teal); }
.draq-landing .nav-links a:hover::after { transform: scaleX(1); }
.draq-landing .nav-cta {
  background: var(--navy); color: white !important;
  padding: 9px 22px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 500;
  transition: background 0.2s, transform 0.15s !important;
}
.draq-landing .nav-cta:hover { background: var(--teal) !important; transform: translateY(-1px); }
.draq-landing .nav-cta::after { display: none !important; }
.draq-landing .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.draq-landing .nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: all 0.3s; }

/* ── HERO ── */
.draq-landing #hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 70px;
  position: relative; overflow: hidden;
}
.draq-landing .hero-glow {
  position: absolute; pointer-events: none;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,158,117,0.1) 0%, transparent 65%);
  right: -100px; top: 50%; transform: translateY(-50%);
}
.draq-landing .hero-ring {
  position: absolute; pointer-events: none;
  border-radius: 50%; border: 1px solid rgba(13,158,117,0.08);
}
.draq-landing .hero-ring:nth-of-type(1) { width: 500px; height: 500px; right: 5%; top: 5%; }
.draq-landing .hero-ring:nth-of-type(2) { width: 350px; height: 350px; right: 15%; top: 20%; }
.draq-landing .hero-left { padding: 6% 6% 6% 8%; position: relative; z-index: 2; }
.draq-landing .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(13,158,117,0.35);
  background: rgba(13,158,117,0.08);
  border-radius: 100px; padding: 5px 16px;
  font-size: 0.72rem; color: #5dcaa5;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.draq-landing .hero-badge i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  animation: draq-blink 2s infinite;
  font-style: normal; display: inline-block;
}
@keyframes draq-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.draq-landing .hero-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4.8vw, 4.4rem);
  font-weight: 300; color: white;
  line-height: 1.05; letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.draq-landing .hero-left h1 em { font-style: italic; color: var(--gold); }
.draq-landing .hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.45); margin-bottom: 1.5rem;
}
.draq-landing .hero-desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.6);
  line-height: 1.8; max-width: 460px; margin-bottom: 2.5rem;
}
.draq-landing .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.draq-landing .btn { display: inline-block; border-radius: 100px; font-size: 0.88rem; font-weight: 500; padding: 13px 28px; transition: all 0.2s; }
.draq-landing .btn-teal { background: var(--teal); color: white; }
.draq-landing .btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); color: white; }
.draq-landing .btn-white-outline { border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.78); }
.draq-landing .btn-white-outline:hover { border-color: rgba(255,255,255,0.5); color: white; }
.draq-landing .hero-metrics {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.07);
}
.draq-landing .metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 600; color: white; line-height: 1;
  margin-bottom: 5px;
}
.draq-landing .metric-val sup { font-size: 1.3rem; color: var(--teal); }
.draq-landing .metric-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; }

.draq-landing .hero-right {
  padding: 6% 8% 6% 4%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.draq-landing .hero-img-wrap { position: relative; width: 100%; max-width: 400px; }
.draq-landing .hero-img-wrap img {
  width: 100%; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  object-fit: cover; aspect-ratio: 4/5;
  filter: brightness(0.85) contrast(1.05);
}
.draq-landing .hero-float-card {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: white; border-radius: 14px; padding: 1.1rem 1.4rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  min-width: 200px;
}
.draq-landing .hero-float-title { font-size: 0.72rem; color: var(--teal); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px; }
.draq-landing .hero-float-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.draq-landing .hero-float-sub { font-size: 0.78rem; color: var(--muted); }

/* ── SECTIONS ── */
.draq-landing .section { padding: 6rem 8%; }
.draq-landing .section-sm { padding: 4.5rem 8%; }
.draq-landing .label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); font-weight: 500; margin-bottom: 0.8rem; }
.draq-landing .h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  font-weight: 300; color: var(--navy); line-height: 1.15;
  margin-bottom: 0.9rem; letter-spacing: -0.01em;
}
.draq-landing .h2 em { font-style: italic; color: var(--teal); }
.draq-landing .h2-white { color: white; }
.draq-landing .desc { font-size: 0.95rem; color: var(--muted); line-height: 1.8; max-width: 560px; margin-bottom: 3rem; }
.draq-landing .desc-white { color: rgba(255,255,255,0.5); }

/* ── SERVICIOS ── */
.draq-landing #servicios { background: white; }
.draq-landing .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.draq-landing .svc-card {
  border: 1px solid var(--border-light);
  border-radius: 18px; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--cream);
  position: relative;
}
.draq-landing .svc-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(0,0,0,0.09); }
.draq-landing .svc-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.95); transition: transform 0.4s; }
.draq-landing .svc-card:hover .svc-img { transform: scale(1.04); }
.draq-landing .svc-img-wrap { overflow: hidden; }
.draq-landing .svc-body { padding: 1.5rem; }
.draq-landing .svc-tag { display: inline-block; background: var(--teal-light); color: #0f6e56; font-size: 0.7rem; padding: 3px 11px; border-radius: 100px; font-weight: 500; margin-bottom: 0.7rem; letter-spacing: 0.04em; }
.draq-landing .svc-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.draq-landing .svc-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.draq-landing .svc-bar { height: 3px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.draq-landing .svc-card:hover .svc-bar { transform: scaleX(1); }

/* ── SOBRE MÍ ── */
.draq-landing #sobre { background: var(--cream); }
.draq-landing .sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.draq-landing .sobre-imgs { position: relative; height: 520px; }
.draq-landing .sobre-img-main {
  position: absolute; top: 0; left: 0;
  width: 75%; border-radius: 18px; object-fit: cover; height: 75%;
  border: 4px solid white; box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.draq-landing .sobre-img-sec {
  position: absolute; bottom: 0; right: 0;
  width: 55%; border-radius: 14px; object-fit: cover; height: 50%;
  border: 4px solid white; box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.draq-landing .sobre-accent {
  position: absolute; bottom: 20px; left: 0;
  background: var(--navy); border-radius: 14px; padding: 1.1rem 1.4rem;
  z-index: 2;
}
.draq-landing .sobre-accent-val { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: white; line-height: 1; }
.draq-landing .sobre-accent-val span { color: var(--teal); }
.draq-landing .sobre-accent-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 3px; }
.draq-landing .timeline { margin-top: 1.5rem; }
.draq-landing .tl-item { display: flex; gap: 1.25rem; margin-bottom: 1.5rem; position: relative; }
.draq-landing .tl-item:not(:last-child)::before { content: ''; position: absolute; left: 17px; top: 36px; bottom: -12px; width: 1px; background: var(--border-teal); }
.draq-landing .tl-dot { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--teal); background: var(--teal-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.draq-landing .tl-dot svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; }
.draq-landing .tl-period { font-size: 0.72rem; color: var(--teal); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.draq-landing .tl-place { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.draq-landing .tl-role { font-size: 0.78rem; color: var(--muted); }

/* ── POR QUÉ ── */
.draq-landing #porque { background: var(--navy); }
.draq-landing .porque-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.draq-landing .porque-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 1.75rem; transition: background 0.25s, border-color 0.25s; }
.draq-landing .porque-card:hover { background: rgba(13,158,117,0.07); border-color: rgba(13,158,117,0.25); }
.draq-landing .porque-n { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: rgba(13,158,117,0.2); line-height: 1; margin-bottom: 0.6rem; transition: color 0.25s; }
.draq-landing .porque-card:hover .porque-n { color: rgba(13,158,117,0.4); }
.draq-landing .porque-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: white; margin-bottom: 0.5rem; }
.draq-landing .porque-card p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── TESTIMONIO ── */
.draq-landing #testimonios { background: var(--cream); }
.draq-landing .testi-wrap {
  background: white; border-radius: 20px; padding: 3rem;
  border: 1px solid var(--border-light);
  max-width: 700px;
  position: relative;
}
.draq-landing .testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-style: italic; font-weight: 300;
  color: var(--navy); line-height: 1.5; margin-bottom: 1.5rem;
}
.draq-landing .testi-quote::before { content: '\201C'; font-size: 3rem; color: var(--teal); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.draq-landing .testi-author { display: flex; align-items: center; gap: 12px; }
.draq-landing .testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-weight: 500; font-size: 0.85rem; color: var(--teal); }
.draq-landing .testi-name { font-weight: 500; font-size: 0.88rem; color: var(--navy); }
.draq-landing .testi-sub { font-size: 0.75rem; color: var(--muted); }
.draq-landing .testi-stars { display: flex; gap: 2px; margin-left: auto; }
.draq-landing .star { width: 12px; height: 12px; fill: var(--gold); }

/* ── PROCESO ── */
.draq-landing #proceso { background: white; }
.draq-landing .proceso-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.draq-landing .proceso-steps::after { content: ''; position: absolute; top: 28px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, rgba(13,158,117,0.4), transparent); }
.draq-landing .pstep { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 1.25rem; }
.draq-landing .pstep-n { width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--teal); background: white; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--teal); position: relative; z-index: 1; margin-bottom: 1rem; }
.draq-landing .pstep h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.draq-landing .pstep p { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* ── CTA BANNER ── */
.draq-landing #cta { background: linear-gradient(135deg, var(--navy) 0%, #0c2545 100%); position: relative; overflow: hidden; }
.draq-landing #cta::before { content: ''; position: absolute; right: -5%; top: -80%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(13,158,117,0.13), transparent 70%); }
.draq-landing .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; position: relative; z-index: 1; }
.draq-landing .btn-gold { background: var(--gold); color: var(--navy); font-weight: 600; }
.draq-landing .btn-gold:hover { background: #d4b47a; transform: translateY(-2px); color: var(--navy); }
.draq-landing .btn-outline-white { border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.75); }
.draq-landing .btn-outline-white:hover { border-color: rgba(255,255,255,0.45); color: white; }

/* ── CONTACTO ── */
.draq-landing #contacto { background: var(--cream); }
.draq-landing .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.draq-landing .contact-info-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 1.5rem; }
.draq-landing .cinfo-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 1.2rem; }
.draq-landing .cinfo-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.draq-landing .cinfo-icon svg { width: 15px; height: 15px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.draq-landing .cinfo-lbl { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 2px; }
.draq-landing .cinfo-val { font-size: 0.88rem; color: var(--navy); }
.draq-landing .social-row { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.draq-landing .soc-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.75rem; transition: all 0.2s; }
.draq-landing .soc-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.draq-landing .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.draq-landing .fg { margin-bottom: 1rem; }
.draq-landing .fg label { display: block; font-size: 0.73rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.draq-landing .fg input, .draq-landing .fg select, .draq-landing .fg textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid rgba(0,0,0,0.1); border-radius: 9px;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  color: var(--text); background: white;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.draq-landing .fg input:focus, .draq-landing .fg select:focus, .draq-landing .fg textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,158,117,0.09); }
.draq-landing .fg textarea { resize: vertical; min-height: 110px; }
.draq-landing .fg select { cursor: pointer; }
.draq-landing .submit-btn { width: 100%; background: var(--teal); color: white; border: none; padding: 13px; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.draq-landing .submit-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* Integración con Contact Form 7: replica el mismo look del form nativo */
.draq-landing .wpcf7-form p { margin-bottom: 1rem; }
.draq-landing .wpcf7-form label { display: block; font-size: 0.73rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.draq-landing .wpcf7-form input[type="text"],
.draq-landing .wpcf7-form input[type="email"],
.draq-landing .wpcf7-form input[type="tel"],
.draq-landing .wpcf7-form select,
.draq-landing .wpcf7-form textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid rgba(0,0,0,0.1); border-radius: 9px;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  color: var(--text); background: white; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.draq-landing .wpcf7-form input:focus,
.draq-landing .wpcf7-form select:focus,
.draq-landing .wpcf7-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,158,117,0.09); }
.draq-landing .wpcf7-form textarea { min-height: 110px; resize: vertical; }
.draq-landing .wpcf7-form .wpcf7-submit {
  width: 100%; background: var(--teal); color: white; border: none; padding: 13px;
  border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  font-weight: 500; cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.draq-landing .wpcf7-form .wpcf7-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ── NEWSLETTER ── */
.draq-landing #newsletter { background: var(--navy); }
.draq-landing .nl-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.draq-landing .nl-form { display: flex; gap: 0; }
.draq-landing .nl-input { flex: 1; padding: 13px 18px; border: 1px solid rgba(255,255,255,0.12); border-right: none; border-radius: 100px 0 0 100px; background: rgba(255,255,255,0.06); color: white; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; outline: none; transition: border-color 0.2s; }
.draq-landing .nl-input::placeholder { color: rgba(255,255,255,0.3); }
.draq-landing .nl-input:focus { border-color: rgba(13,158,117,0.5); }
.draq-landing .nl-btn { background: var(--teal); color: white; border: none; padding: 13px 24px; border-radius: 0 100px 100px 0; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.draq-landing .nl-btn:hover { background: var(--teal-dark); }

/* ── FOOTER ── */
.draq-landing .draq-footer {
  background: #060f1e;
  padding: 3rem 8% 2rem;
}
.draq-landing .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 2rem; }
.draq-landing .footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: white; margin-bottom: 0.6rem; }
.draq-landing .footer-brand span { color: var(--teal); }
.draq-landing .footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.6; max-width: 260px; }
.draq-landing .footer-col h4 { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.draq-landing .footer-col a, .draq-landing .footer-col p { display: block; font-size: 0.83rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; transition: color 0.2s; }
.draq-landing .footer-col a:hover { color: var(--teal); }
.draq-landing .footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.draq-landing .footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .draq-landing .porque-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .draq-landing #hero { grid-template-columns: 1fr; }
  .draq-landing .hero-right { display: none; }
  .draq-landing .hero-left { padding: 5rem 6% 4rem; }
  .draq-landing .services-grid,
  .draq-landing .sobre-grid,
  .draq-landing .contact-grid,
  .draq-landing .nl-inner { grid-template-columns: 1fr; }
  .draq-landing .sobre-imgs { height: 320px; margin-bottom: 2rem; }
  .draq-landing .proceso-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .draq-landing .proceso-steps::after { display: none; }
  .draq-landing .porque-grid { grid-template-columns: 1fr 1fr; }
  .draq-landing .cta-inner { flex-direction: column; gap: 2rem; }
  .draq-landing .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .draq-landing .nav-links .navlink { display: none; }
  .draq-landing .frow { grid-template-columns: 1fr; }
  .draq-landing .section { padding: 4rem 6%; }
}
@media (max-width: 560px) {
  .draq-landing .porque-grid { grid-template-columns: 1fr; }
  .draq-landing .footer-top { grid-template-columns: 1fr; }
  .draq-landing .hero-metrics { gap: 1.5rem; }
  .draq-landing .nl-form { flex-direction: column; }
  .draq-landing .nl-input { border-right: 1px solid rgba(255,255,255,0.12); border-radius: 100px; border-bottom: none; }
  .draq-landing .nl-btn { border-radius: 100px; }
}
