/* ════════════════════════════════════════
   Fatlin AI — Hoja de estilos principal
   Versión: 2026 · Paleta dorada
════════════════════════════════════════ */

:root {
  --navy:   #f5f0e8;
  --navy2:  #ede8dc;
  --sky:    #9a6d07;
  --sky2:   #b07d08;
  --gold:   #7a5506;
  --gold2:  #c8920a;
  --white:  #1a1208;
  --muted:  rgba(60,40,10,.62);
  --card:   rgba(255,248,235,.85);
  --border: rgba(160,110,20,.22);
  --r:      14px;
  --font:   'Sora', system-ui, sans-serif;
  --serif:  'DM Serif Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #f5f0e8 !important; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TIPOGRAFÍA ─────────────────────────── */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
p  { color: var(--muted); font-size: clamp(.9rem, 2vw, 1.05rem); }
strong { color: var(--white); font-weight: 600; }
a  { color: var(--sky); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }

/* ── LAYOUT ─────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ── NAV ─────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,240,232,.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.1rem; color: var(--white);
}
.nav-logo svg { flex-shrink: 0; }
.nav-cta {
  background: #c8920a; color: #ffffff !important;
  padding: 9px 22px; border-radius: 30px;
  font-weight: 800; font-size: .88rem; letter-spacing: .02em;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
  transition: transform .15s, background .15s;
}
.nav-cta:hover { background: #9a6d07; color: #ffffff !important; transform: scale(1.03); opacity: 1; }

/* ── HERO ─────────────────────────────────── */
#hero {
  min-height: 90vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 100px 0 80px;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 60% 20%, rgba(160,110,20,.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(200,146,10,.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(200,146,10,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,146,10,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-badges { justify-content: center; }
  .hero-visual { display: none; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,146,10,.12); border: 1px solid rgba(200,146,10,.3);
  border-radius: 30px; padding: 5px 14px; margin-bottom: 20px;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sky);
}
.hero-title { margin-bottom: 20px; }
.hero-title em { font-style: italic; color: var(--sky2); }
.hero-desc { font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.badge {
  background: rgba(160,110,20,.10); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 14px;
  font-size: .78rem; font-weight: 600; color: var(--sky);
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #c8920a 0%, #9a6d07 100%);
  color: #ffffff !important; font-weight: 800; font-size: 1rem;
  padding: 14px 32px; border-radius: 50px;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 24px rgba(200,146,10,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,146,10,.5); opacity: 1; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1.5px solid rgba(160,110,20,.4);
  color: var(--white); font-weight: 600; font-size: .95rem;
  padding: 13px 28px; border-radius: 50px;
  transition: border-color .15s, background .15s;
}
.btn-secondary:hover { border-color: var(--sky); background: rgba(200,146,10,.08); opacity: 1; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── HERO VISUAL ─────────────────────────── */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.phone-mock {
  width: 260px; background: #e8e0ce;
  border: 2px solid var(--border); border-radius: 32px;
  padding: 20px 16px; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.phone-notch {
  width: 80px; height: 10px; background: #c8b898;
  border-radius: 5px; margin: 0 auto 16px;
}
.phone-level {
  background: linear-gradient(135deg, rgba(200,146,10,.15), rgba(200,146,10,.05));
  border: 1px solid var(--border); border-radius: 16px;
  padding: 14px; margin-bottom: 12px; text-align: center;
}
.phone-level-num { font-size: 2rem; font-weight: 700; color: var(--sky2); line-height: 1; }
.phone-level-lbl {
  font-size: .7rem; color: var(--muted);
  letter-spacing: .12em; text-transform: uppercase; margin-top: 2px;
}
.phone-q {
  background: rgba(255,250,240,.9); border: 1px solid var(--border); border-radius: 12px;
  padding: 12px; margin-bottom: 10px; font-size: .78rem; color: #2a1a06; font-weight: 500;
}
.phone-opt {
  background: rgba(240,230,210,.6); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px; margin-bottom: 6px;
  font-size: .72rem; color: rgba(60,40,10,.7);
}
.phone-opt.correct { background: rgba(34,197,94,.18); border-color: #16a34a; color: #14532d; }
.phone-stats {
  display: flex; justify-content: space-between; margin-top: 12px;
  border-top: 1px solid var(--border); padding-top: 12px;
}
.phone-stat { text-align: center; }
.phone-stat-val { font-size: .88rem; font-weight: 700; color: var(--gold); }
.phone-stat-lbl { font-size: .6rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

/* ── STATS BAR ───────────────────────────── */
#stats {
  padding: 40px 0;
  background: #ede8dc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-family: var(--serif); font-size: 2.4rem; color: var(--sky2);
  line-height: 1; margin-bottom: 4px;
}
.stat-lbl { font-size: .82rem; color: var(--muted); letter-spacing: .06em; }

/* ── METODOLOGÍA ─────────────────────────── */
#metodologia { background: var(--navy2); }
.section-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 12px; display: block;
}
.section-title { margin-bottom: 16px; }
.section-desc { max-width: 640px; margin-bottom: 56px; }

.pacie-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px;
}
.fase-card {
  background: rgba(255,252,242,.9); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 22px;
  position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.fase-card:hover { border-color: var(--sky); transform: translateY(-4px); }
.fase-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.fase-p::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.fase-a::before { background: linear-gradient(90deg, #15803d, #22c55e); }
.fase-c::before { background: linear-gradient(90deg, #a16207, #f59e0b); }
.fase-i::before { background: linear-gradient(90deg, #b91c1c, #ef4444); }
.fase-e::before { background: linear-gradient(90deg, #1e3a8a, #2563eb); }
.fase-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; line-height: 1; }
.fase-name {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 4px;
}
.fase-p .fase-name { color: #6d28a0; }
.fase-a .fase-name { color: #166534; }
.fase-c .fase-name { color: #92400e; }
.fase-i .fase-name { color: #991b1b; }
.fase-e .fase-name { color: #1e40af; }
.fase-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.fase-card p  { font-size: .85rem; }

/* ── QUÉ ES ─────────────────────────────── */
#que-es { background: var(--navy); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.info-block h2 { margin-bottom: 18px; }
.info-block p  { margin-bottom: 14px; }
.quote-block {
  background: rgba(200,160,80,.12); border-left: 3px solid #c8920a;
  border-radius: 0 var(--r) var(--r) 0; padding: 20px 24px;
  font-style: italic; font-size: .95rem; color: rgba(60,35,8,.80);
  margin: 20px 0;
}
.enfoques-list { list-style: none; padding: 0; }
.enfoques-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.enfoques-list li:last-child { border-bottom: none; }
.enfoque-ico {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.enfoque-txt strong { display: block; margin-bottom: 2px; color: var(--white); }
.enfoque-txt span { font-size: .85rem; color: var(--muted); }

/* ── CÓMO FUNCIONA ──────────────────────── */
#como-funciona { background: var(--navy2); }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px;
}
.step-card {
  background: rgba(255,252,242,.9); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 22px; position: relative;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #c8920a 0%, #9a6d07 100%);
  color: #ffffff !important; font-weight: 800; font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p  { font-size: .85rem; }

/* ── DIPLOMAS ────────────────────────────── */
#diplomas { background: var(--navy); }
.diplomas-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 768px) { .diplomas-inner { grid-template-columns: 1fr; gap: 40px; } }
.diploma-mock {
  background: linear-gradient(135deg, #3d2800 0%, #5a3f04 100%);
  border: 2px solid rgba(200,146,10,.5); border-radius: 16px;
  padding: 28px; text-align: center;
  box-shadow: 0 16px 64px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.05);
}
.diploma-mock-title {
  font-family: var(--serif); font-size: 1.3rem; color: var(--gold); margin-bottom: 6px;
}
.diploma-mock-sub {
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(240,192,64,.90); margin-bottom: 18px;
}
.diploma-mock-name { font-family: var(--serif); font-size: 2rem; color: #fff; margin-bottom: 8px; }
.diploma-mock-desc {
  font-size: .8rem; color: rgba(245,240,232,.85); margin-bottom: 18px; line-height: 1.5;
}
.diploma-tiers { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 18px; }
.tier-badge { padding: 4px 12px; border-radius: 20px; font-size: .72rem; font-weight: 700; border: 1.5px solid; }
.tier-b { background: rgba(205,127,50,.15); color: #e8a060; border-color: #cd7f32; }
.tier-s { background: rgba(140,140,140,.2);  color: #f0f0f0; border-color: #b0b0b0; }
.tier-g { background: rgba(255,215,0,.1);    color: #ffd700; border-color: #ffd700; }
.tier-p { background: rgba(120,85,6,.2);     color: #c8920a; border-color: #9a6d07; }
.tier-d { background: rgba(200,146,10,.1);   color: #9a6d07; border-color: #c8920a; }
.diploma-footer { font-size: .72rem; color: rgba(220,170,50,.85); letter-spacing: .08em; }

/* ── LIGAS ───────────────────────────────── */
#ligas { background: var(--navy2); }
.ligas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px;
}
.liga-chip {
  background: rgba(255,252,242,.85); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  transition: border-color .2s;
}
.liga-chip:hover { border-color: var(--sky); }
.liga-esc { font-size: 1.4rem; flex-shrink: 0; }
.liga-info strong { display: block; font-size: .82rem; color: var(--white); font-weight: 600; }
.liga-info span   { font-size: .7rem; color: var(--muted); }

/* ── AD SLOT ─────────────────────────────── */
.ad-slot {
  background: rgba(200,180,140,.12); border: 1px dashed rgba(160,110,20,.25);
  border-radius: 10px; padding: 20px; text-align: center;
  min-height: 100px; display: flex; align-items: center; justify-content: center;
  margin: 48px 0;
}
.ad-slot-lbl { font-size: .7rem; color: rgba(100,65,5,.65); letter-spacing: .12em; text-transform: uppercase; }

/* ── CTA FINAL ───────────────────────────── */
#cta-final {
  background: linear-gradient(160deg, #ede8dc 0%, #e6dfd0 100%);
  border-top: 1px solid var(--border); text-align: center; padding: 100px 0;
}
.cta-eyebrow {
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
#cta-final h2 { margin-bottom: 16px; }
#cta-final p  { margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-badges-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.cta-badge {
  background: rgba(160,110,20,.10); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 16px; font-size: .8rem; color: var(--sky);
}
.btn-cta-big {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #c8920a 0%, #9a6d07 100%);
  color: #ffffff !important; font-weight: 800; font-size: 1.05rem;
  padding: 16px 38px; border-radius: 50px;
  text-shadow: 0 1px 3px rgba(0,0,0,.45);
  box-shadow: 0 6px 32px rgba(200,146,10,.35);
  transition: transform .15s, box-shadow .15s;
}
.btn-cta-big:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(240,192,64,.45); opacity: 1; }

/* ── FOOTER ───────────────────────────────── */
footer {
  background: #ddd5c0; border-top: 1px solid var(--border);
  padding: 40px 0 32px;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand-name { font-weight: 700; font-size: 1.1rem; }
.footer-desc { font-size: .85rem; color: var(--muted); max-width: 300px; }
.footer-col h4 {
  font-size: .82rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sky); margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a  { font-size: .85rem; color: var(--muted); }
.footer-col a:hover { color: var(--white); opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px; margin-top: 36px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .78rem; color: rgba(60,35,8,.70); }
.cc-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; color: rgba(60,35,8,.65); }

/* ── ANIMACIONES ─────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.phone-mock { animation: float 5s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .phone-mock { animation: none; }
  * { transition: none !important; }
}

/* ════════════════════════════════════════
   NUEVAS SECCIONES: Menú, Quiénes somos,
   Servicios, Contáctanos
════════════════════════════════════════ */

/* ── MENÚ SUPERIOR AMPLIADO ─────────────── */
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-link {
  color: var(--white); font-size: .88rem; font-weight: 600;
  padding: 7px 14px; border-radius: 8px;
  transition: background .15s, color .15s;
  opacity: 1 !important;
}
.nav-link:hover {
  background: rgba(200,146,10,.12);
  color: var(--gold2);
  opacity: 1 !important;
}
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 8px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(245,240,232,.99); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 20px; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; padding: 10px 12px; font-size: .95rem; }
  .nav-cta { margin-top: 8px; text-align: center; width: 100%; }
}

/* ── BOTÓN VOLVER AL MENÚ ───────────────── */
.back-to-top {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  color: var(--gold2) !important; background: rgba(200,146,10,.1);
  border: 1px solid rgba(200,146,10,.25); border-radius: 30px;
  padding: 6px 16px; margin-bottom: 28px;
  transition: background .15s, transform .15s;
  text-transform: uppercase;
}
.back-to-top:hover {
  background: rgba(200,146,10,.2); transform: translateY(-1px); opacity: 1 !important;
}
.back-to-top svg { flex-shrink: 0; stroke: var(--gold2); }

/* ── SECCIONES INFORMATIVAS ─────────────── */
.info-section { padding: 88px 0; }
.alt-bg { background: var(--navy2); }

/* ── MISIÓN Y VISIÓN ────────────────────── */
.mision-vision-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px;
}
@media (max-width: 720px) {
  .mision-vision-grid { grid-template-columns: 1fr; }
}
.mv-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px 32px;
  position: relative; overflow: hidden;
}
.mv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; border-radius: var(--r) var(--r) 0 0;
}
.mv-mision::before { background: linear-gradient(90deg, #c8920a, #f0c040); }
.mv-vision::before { background: linear-gradient(90deg, #9a6d07, #c8920a); }
.mv-icon { font-size: 2.2rem; margin-bottom: 14px; }
.mv-card h3 { margin-bottom: 12px; }
.mv-card p { color: var(--muted); font-size: .95rem; line-height: 1.8; }

/* ── SERVICIOS ──────────────────────────── */
.servicios-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px;
}
@media (max-width: 720px) {
  .servicios-grid { grid-template-columns: 1fr; }
}
.servicio-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}
.servicio-card:hover {
  box-shadow: 0 8px 32px rgba(160,110,20,.15);
  transform: translateY(-3px);
}
.servicio-ico { font-size: 2rem; margin-bottom: 14px; }
.servicio-card h3 { margin-bottom: 10px; }
.servicio-card p { font-size: .9rem; margin-bottom: 16px; }
.servicio-lista {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.servicio-lista li {
  font-size: .83rem; color: var(--muted);
  padding: 5px 0; border-bottom: 1px solid var(--border);
}
.servicio-lista li:last-child { border-bottom: none; }

/* ── CONTÁCTANOS ────────────────────────── */
.contacto-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px;
}
@media (max-width: 640px) {
  .contacto-grid { grid-template-columns: 1fr; }
}
.contacto-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px 32px; text-align: center;
}
.contacto-ico { font-size: 2.5rem; margin-bottom: 14px; }
.contacto-card h3 { margin-bottom: 10px; }
.contacto-card p { font-size: .9rem; margin-bottom: 20px; }
.contacto-email {
  display: inline-block;
  background: rgba(200,146,10,.12); border: 1px solid rgba(200,146,10,.3);
  color: var(--gold2) !important; font-weight: 700; font-size: .9rem;
  padding: 10px 20px; border-radius: 30px;
  transition: background .15s;
}
.contacto-email:hover {
  background: rgba(200,146,10,.22); opacity: 1 !important;
}
.contacto-note {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 32px; font-size: .82rem; color: var(--muted);
}
.contacto-note svg { stroke: var(--muted); flex-shrink: 0; }

/* ── LOGO TECNOTIPS EN NAV ──────────────── */
a.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit;
}
a.nav-logo:hover { opacity: 1 !important; }
/* .nav-logo-img antigua eliminada */
.nav-brand-wrap {
  display: flex; flex-direction: column; line-height: 1.15;
}
.nav-brand-name {
  font-weight: 800; font-size: 1.05rem; color: var(--white);
  letter-spacing: -.01em;
}
.nav-brand-product {
  display: flex; align-items: center; gap: 4px;
  font-size: .68rem; font-weight: 600; color: var(--gold2);
  letter-spacing: .04em; text-transform: uppercase;
}
.nav-brand-product svg { flex-shrink: 0; }

/* ── VISIÓN — tagline de impacto ─────────── */
.vision-tagline {
  font-family: var(--serif);
  font-size: 1.25rem !important;
  color: var(--white) !important;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 12px !important;
  border-left: 3px solid var(--gold2);
  padding-left: 14px;
}

/* ── LOGO IMG TECNOTIPS EN NAV ─────────── */
a.nav-logo-img-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
a.nav-logo-img-wrap:hover { opacity: 0.82; }

.nav-logo-img {
  display: block;
  height: 64px;   /* PNG recortado 838x351 → ancho auto ~153px */
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 6px rgba(200,146,10,.28));
}

@media (max-width: 768px) {
  .nav-logo-img { height: 44px; }
}
