/* ============================================================
   DINOTECH v3 — Design Tokens
   Filosofía: corporativo 60% / tecnológico 40%
   Inspiración: laboratorio técnico profesional, no software house
   ============================================================ */
:root {
  /* Azules corporativos — confianza, profesionalismo */
  --navy:      #1B2D4F;
  --navy-mid:  #243B60;
  --navy-lite: #2E4A78;
  --navy-faint:#EEF3FA;

  /* Grises cálidos — limpieza, no frialdad tech */
  --bg:        #F7F6F3;
  --bg-white:  #FFFFFF;
  --surface:   #ECEAE4;
  --border:    #D8D6CF;
  --border-strong: #B8B5AC;

  /* Naranja de acción — urgencia, energía, CTA */
  --orange:    #E65100;
  --orange-h:  #BF4500;
  --orange-lt: #FFF3EE;
  --orange-mid: #FF6D00;

  /* Texto */
  --text:      #1A1A18;
  --text-mid:  #4A4A45;
  --text-lite: #7A7A72;
  --text-inv:  #FFFFFF;

  /* Acento técnico — solo para detalles */
  --tech:      #1565C0;
  --tech-lt:   #E3F0FF;

  /* Semáforo status */
  --green:     #2E7D32;
  --green-lt:  #E8F5E9;
  --amber:     #E65100;

  /* Tipografía */
  --font-ui:   'Inter', system-ui, sans-serif;
  --font-body: 'DM Sans', 'Inter', system-ui, sans-serif;

  /* Radios */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
}

/* RESET */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; }
body { background:var(--bg); color:var(--text); font-family:var(--font-body); font-size:16px; line-height:1.65; overflow-x:hidden; }
img { max-width:100%; }
::-webkit-scrollbar { width:5px; background:var(--surface); }
::-webkit-scrollbar-thumb { background:var(--navy-lite); border-radius:3px; }
::selection { background:rgba(27,45,79,0.15); }

/* ============================================================
   UTILIDADES
   ============================================================ */
.wrap { max-width:1160px; margin:0 auto; padding:0 2rem; }
.section { padding:5rem 0; }
.section-sm { padding:3rem 0; }

.label {
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--font-ui); font-size:0.72rem; font-weight:600;
  letter-spacing:0.08em; text-transform:uppercase; color:var(--orange);
}
.label::before { content:''; display:block; width:20px; height:2px; background:var(--orange); }

.h2 {
  font-family:var(--font-ui); font-weight:800;
  font-size:clamp(1.6rem,3.2vw,2.4rem); letter-spacing:-0.025em;
  color:var(--navy); line-height:1.15; margin-bottom:0.6rem;
}
.h2 span { color:var(--orange); }
.lead { font-size:1rem; color:var(--text-mid); line-height:1.75; max-width:560px; }

.divider {
  border:none; height:1px;
  background:linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
  margin:0;
}

/* Botones */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-ui); font-weight:600; font-size:0.9rem;
  padding:0.75rem 1.8rem; border-radius:var(--r-md);
  cursor:pointer; text-decoration:none; border:none;
  transition:all 0.18s ease; white-space:nowrap;
}
.btn-primary {
  background:var(--orange); color:#fff;
  box-shadow:0 2px 8px rgba(230,81,0,0.22);
}
.btn-primary:hover { background:var(--orange-h); transform:translateY(-1px); box-shadow:0 4px 16px rgba(230,81,0,0.3); }
.btn-secondary {
  background:var(--bg-white); color:var(--navy);
  border:1.5px solid var(--border-strong);
}
.btn-secondary:hover { border-color:var(--navy); background:var(--navy-faint); }
.btn-navy {
  background:var(--navy); color:#fff;
}
.btn-navy:hover { background:var(--navy-mid); }

/* Badge */
.badge {
  display:inline-flex; align-items:center; gap:5px;
  font-family:var(--font-ui); font-size:0.72rem; font-weight:600;
  padding:3px 10px; border-radius:20px; letter-spacing:0.04em;
}
.badge-navy { background:var(--navy-faint); color:var(--navy); border:1px solid rgba(27,45,79,0.15); }
.badge-orange { background:var(--orange-lt); color:var(--orange); border:1px solid rgba(230,81,0,0.2); }
.badge-green { background:var(--green-lt); color:var(--green); border:1px solid rgba(46,125,50,0.2); }
.badge-green::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--green); animation:pulse 2.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Cards base */
.card {
  background:var(--bg-white); border-radius:var(--r-lg);
  border:1px solid var(--border); overflow:hidden;
}

/* ============================================================
   NAV — Premium sticky header
   ============================================================ */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  background:rgba(255,255,255,0.99);
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  border-bottom:1px solid rgba(216,214,207,0.5);
  box-shadow:0 2px 16px rgba(27,45,79,0.07);
  transition:box-shadow 0.35s ease, border-color 0.35s ease;
}
nav.scrolled {
  box-shadow:0 4px 28px rgba(27,45,79,0.13), 0 1px 0 rgba(27,45,79,0.05);
  border-bottom-color:rgba(216,214,207,0.85);
}
.nav-inner {
  max-width:1200px; margin:0 auto; padding:0 2.5rem;
  display:flex; justify-content:space-between; align-items:center;
  height:72px;
  gap:2.5rem;
}

/* ── Logo ── */
.nav-logo { display:flex; align-items:center; text-decoration:none; flex-shrink:0; }
.nav-logo-wrap { display:flex; flex-direction:column; align-items:flex-start; gap:0; }
.nav-brand-name { display:flex; align-items:baseline; line-height:1; gap:0; }
.nav-brand-dino {
  font-family:var(--font-ui); font-size:1.65rem; font-weight:900;
  letter-spacing:0.03em; color:#1565C0; line-height:1;
}
.nav-brand-tech {
  font-family:var(--font-ui); font-size:1.65rem; font-weight:900;
  letter-spacing:0.03em; color:#FF6D00; line-height:1;
}
.nav-brand-country {
  font-family:var(--font-ui); font-size:0.47rem; font-weight:600;
  letter-spacing:0.22em; text-transform:uppercase; color:#6B7280;
  line-height:1; margin-top:4px;
  border-left:2px solid #FF6D00; padding-left:5px;
}

/* ── Links — pegados al logo con flex:1 centrado ── */
.nav-links {
  display:flex; gap:0.2rem; list-style:none;
  flex:1; justify-content:center;
}
.nav-links a {
  font-family:var(--font-ui); font-size:0.84rem; font-weight:500;
  color:var(--text-mid); text-decoration:none; letter-spacing:0.01em;
  padding:0.42rem 0.85rem; border-radius:var(--r-md);
  position:relative; white-space:nowrap;
  transition:color 0.2s, background 0.2s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:4px; left:0.85rem; right:0.85rem;
  height:2px; background:var(--orange); border-radius:2px;
  transform:scaleX(0); transform-origin:center;
  transition:transform 0.22s ease;
}
.nav-links a:hover {
  color:var(--navy);
  background:rgba(27,45,79,0.05);
}
.nav-links a:hover::after { transform:scaleX(1); }
.nav-links a.active {
  color:var(--navy); font-weight:600;
  background:rgba(27,45,79,0.05);
}
.nav-links a.active::after { transform:scaleX(1); }

/* ── Teléfono ── */
.nav-right { display:flex; align-items:center; gap:0.75rem; flex-shrink:0; }
.nav-tel {
  font-family:var(--font-ui); font-size:0.83rem; font-weight:700;
  color:var(--navy); display:flex; align-items:center; gap:7px;
  text-decoration:none; white-space:nowrap;
  padding:0.45rem 0.9rem; border-radius:var(--r-md);
  border:1.5px solid rgba(27,45,79,0.18);
  background:var(--navy-faint);
  transition:background 0.22s, border-color 0.22s, color 0.22s, box-shadow 0.22s;
}
.nav-tel svg {
  width:14px; height:14px; stroke:#1565C0; fill:none;
  stroke-width:2.2; flex-shrink:0; transition:stroke 0.22s;
}
.nav-tel:hover {
  background:#1565C0; color:#fff; border-color:#1565C0;
  box-shadow:0 4px 16px rgba(21,101,192,0.28);
}
.nav-tel:hover svg { stroke:#fff; }

/* ── CTA button ── */
.nav-cta-btn {
  font-family:var(--font-ui); font-size:0.84rem; font-weight:700;
  padding:0.55rem 1.3rem; border-radius:var(--r-md);
  background:linear-gradient(135deg, #FF6D00 0%, #E65100 100%);
  color:#fff; border:none; cursor:pointer;
  letter-spacing:0.015em; white-space:nowrap;
  box-shadow:0 2px 12px rgba(230,81,0,0.28), inset 0 1px 0 rgba(255,255,255,0.15);
  transition:background 0.22s, transform 0.18s, box-shadow 0.22s;
  position:relative; overflow:hidden;
}
.nav-cta-btn::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity:0; transition:opacity 0.22s;
}
.nav-cta-btn:hover {
  background:linear-gradient(135deg, #FF8C00 0%, #BF4500 100%);
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(230,81,0,0.38), inset 0 1px 0 rgba(255,255,255,0.15);
}
.nav-cta-btn:hover::before { opacity:1; }
.nav-cta-btn:active { transform:translateY(0); }

/* Botón flotante de WhatsApp */
.wa-float {
  position:fixed; bottom:22px; right:22px; z-index:500;
  display:flex; align-items:center; justify-content:center;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff;
  box-shadow:0 4px 18px rgba(37,211,102,0.45), 0 2px 6px rgba(0,0,0,0.15);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
  animation:wa-pulse 2.6s ease-in-out infinite;
}
.wa-float svg { width:30px; height:30px; fill:#fff; }
.wa-float:hover { transform:scale(1.08); box-shadow:0 6px 22px rgba(37,211,102,0.55), 0 2px 8px rgba(0,0,0,0.18); }
@keyframes wa-pulse {
  0%,100% { box-shadow:0 4px 18px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.35); }
  50% { box-shadow:0 4px 18px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0); }
}
@media(max-width:600px) {
  .wa-float { width:52px; height:52px; bottom:16px; right:16px; }
  .wa-float svg { width:27px; height:27px; }
}
.nav-hamburger {
  display:none; flex-direction:column; gap:5px;
  width:42px; height:42px; align-items:center; justify-content:center;
  background:transparent; border:1.5px solid var(--border);
  border-radius:var(--r-md); cursor:pointer; z-index:202;
  transition:border-color 0.2s, background 0.2s;
}
.nav-hamburger:hover { background:var(--navy-faint); border-color:var(--navy); }
.nav-hamburger span { display:block; width:18px; height:1.5px; background:var(--navy); border-radius:1px; transition:transform 0.3s,opacity 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity:0; }
.nav-hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display:none; position:fixed; inset:0; z-index:199;
  background:var(--bg-white); flex-direction:column; align-items:flex-start;
  padding:5.5rem 2rem 2.5rem; opacity:0; pointer-events:none;
  transition:opacity 0.25s;
}
.nav-mobile.open { opacity:1; pointer-events:all; }
.nav-mobile ul { list-style:none; width:100%; }
.nav-mobile ul li { border-bottom:1px solid var(--border); }
.nav-mobile ul li a {
  display:flex; align-items:center; padding:1rem 0;
  font-family:var(--font-ui); font-weight:600; font-size:1.05rem;
  color:var(--navy); text-decoration:none;
  transition:color 0.2s, padding-left 0.2s;
}
.nav-mobile ul li a:hover { color:var(--orange); padding-left:6px; }
.nav-mobile-cta { margin-top:1.8rem; width:100%; }

@media(max-width:860px) {
  .nav-links { gap:1.3rem; }
  .nav-links a { font-size:0.8rem; }
  .nav-tel { display:none; }
}
@media(max-width:768px) {
  .nav-links,.nav-tel { display:none; }
  .nav-hamburger { display:flex!important; }
  .nav-mobile { display:flex; }
  .nav-inner { padding:0 1.2rem; height:64px; }
  .nav-brand-dino,.nav-brand-tech { font-size:1.45rem; }
}

.hero-overlay {
  position:relative; z-index:2; width:100%;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  padding:0 2rem 2.5rem;
}
.hero-eyebrow-badge {
  display:inline-flex; align-items:center; gap:7px;
  font-family:var(--font-ui); font-size:0.74rem; font-weight:700;
  letter-spacing:0.1em; text-transform:uppercase; color:#fff;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.18);
  padding:6px 16px; border-radius:30px; margin-bottom:1.2rem;
}
.hero-eyebrow-badge .dot { width:7px; height:7px; border-radius:50%; background:var(--orange-mid); animation:pulse 2s infinite; }
.hero-value-title {
  font-family:var(--font-ui); font-weight:800; color:#fff;
  font-size:clamp(1.6rem,3.6vw,2.7rem); line-height:1.18; letter-spacing:-0.02em;
  max-width:780px; margin-bottom:0.9rem;
}
.hero-value-title .accent { color:var(--orange-mid); }
.hero-value-sub {
  font-size:1rem; color:rgba(255,255,255,0.68); line-height:1.75;
  max-width:600px; margin-bottom:1.8rem;
}
.hero-trust-row {
  display:flex; flex-wrap:wrap; justify-content:center; gap:0.7rem 1.2rem;
  margin-bottom:2rem;
}
.hero-trust-item {
  display:flex; align-items:center; gap:8px;
  font-family:var(--font-ui); font-size:0.84rem; font-weight:600; color:#fff;
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14);
  padding:8px 16px; border-radius:30px;
}
.hero-trust-item .ic { width:18px; height:18px; border-radius:50%; background:rgba(46,125,50,0.25); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.hero-trust-item .ic svg { width:10px; height:10px; stroke:#7CE38B; fill:none; stroke-width:3; }
.hero-cta-row { display:flex; flex-wrap:wrap; justify-content:center; gap:0.8rem; }
@media(max-width:560px) { .hero-overlay { padding:0 1.2rem 2rem; } .hero-trust-item { font-size:0.76rem; padding:7px 13px; } }


/* ============================================================
   HERO v2 — Two-column corporate layout
   ============================================================ */
.hero-v2 {
  background: var(--bg);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-v2::before {
  content: '';
  position: absolute;
  top: -150px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,101,192,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-v2-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 0;
  align-items: center;
  min-height: 540px;
}
.hero-v2-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem 0 6rem;
  animation: hLogoIn 0.65s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes hLogoIn {
  from { opacity:0; transform:translateX(-24px); }
  to   { opacity:1; transform:translateX(0); }
}
.hero-v2-logo img {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(27,45,79,0.16));
}
.hero-v2-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 5rem 3rem 3rem;
  background: transparent;
  animation: hContentIn 0.65s 0.1s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes hContentIn {
  from { opacity:0; transform:translateX(24px); }
  to   { opacity:1; transform:translateX(0); }
}
.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.hero-v2-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-v2-title {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.13;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.hero-v2-title .accent { color: var(--orange); }
.hero-v2-desc {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  max-width: 460px;
}
.hero-v2-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.hero-v2-benefit {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
}
.hero-v2-benefit-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-lt);
  border: 1px solid rgba(46,125,50,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-v2-benefit-icon svg {
  width: 9px; height: 9px;
  stroke: var(--green); fill: none; stroke-width: 3;
}
.hero-v2-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.hero-v2-cta .btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: #1a6832;
  border: 1.5px solid rgba(37,211,102,0.4);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: var(--r-md);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.hero-v2-cta .btn-wa:hover {
  background: #f0fdf4;
  border-color: #25D366;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,211,102,0.18);
}
.hero-v2-cta .btn-wa svg { width:17px; height:17px; fill:#25D366; flex-shrink:0; }

/* Responsive */
@media (max-width: 860px) {
  .hero-v2 { padding: 5rem 0 4rem; }
  .hero-v2-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
    min-height: auto;
  }
  .hero-v2-logo { order: 2; }
  .hero-v2-content { order: 1; padding-left: 0; margin-left: 0; }
  .hero-v2-logo img { max-width: 340px; margin: 0 auto; }
  .hero-v2-title { font-size: clamp(1.65rem, 5vw, 2.1rem); }
  .hero-v2-desc { max-width: 100%; }
}
@media (max-width: 560px) {
  .hero-v2 { padding: 4rem 0 3rem; }
  .hero-v2-inner { padding: 0 1.1rem; gap: 2rem; }
  .hero-v2-logo img { max-width: 280px; }
  .hero-v2-cta { flex-direction: column; }
  .hero-v2-cta a, .hero-v2-cta button { width:100%; justify-content:center; }
}

.trust-bar {
  background:var(--navy); padding:0.9rem 0;
}
.trust-bar-inner { display:flex; justify-content:center; align-items:center; gap:2rem; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:7px; font-size:0.82rem; font-weight:500; color:rgba(255,255,255,0.85); }
.trust-item svg { width:14px; height:14px; stroke:#fff; fill:none; stroke-width:2; opacity:0.7; }
.trust-sep { width:1px; height:18px; background:rgba(255,255,255,0.15); }
@media(max-width:640px) { .trust-bar-inner { gap:0.8rem; } .trust-sep { display:none; } }

/* ============================================================
   NOSOTROS
   ============================================================ */
.nosotros-section {
  background: var(--bg);
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

/* Bloque superior: 2 columnas */
.nos-top {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

/* Texto principal */
.nos-intro .label { margin-bottom: 0; }
.nos-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-top: 0.9rem;
}
.nos-body:first-of-type { margin-top: 1.1rem; }

/* Bloque origen */
.nos-origen-inner {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 2rem 2rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.nos-origen-inner::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,109,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.nos-origen-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.6rem;
}
.nos-origen-slash { color: var(--orange-mid); }
.nos-origen-title {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.nos-origen-text {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}
.nos-origen-text em { color: var(--orange-mid); font-style: normal; font-weight: 600; }
.nos-origen-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 30px;
}
.nos-origen-tag svg {
  width: 13px; height: 13px;
  stroke: var(--orange-mid); flex-shrink: 0;
}

/* Cards de 4 diferenciadores */
.nos-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.nos-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.nos-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--navy-lite), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.nos-card:hover {
  border-color: rgba(27,45,79,0.25);
  box-shadow: 0 6px 24px rgba(27,45,79,0.07);
  transform: translateY(-3px);
}
.nos-card:hover::before { opacity: 1; }

.nos-card-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: var(--navy-faint);
  border: 1px solid rgba(27,45,79,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s, border-color 0.22s;
}
.nos-card-icon svg {
  width: 19px; height: 19px;
  stroke: var(--navy);
  transition: stroke 0.22s;
}
.nos-card:hover .nos-card-icon { background: var(--orange-lt); border-color: rgba(230,81,0,0.2); }
.nos-card:hover .nos-card-icon svg { stroke: var(--orange); }

.nos-card-body { display: flex; flex-direction: column; gap: 0.4rem; }
.nos-card-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.3;
}
.nos-card-text {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.nos-card-text em { font-style: normal; font-weight: 600; color: var(--text); }

/* Responsive */
@media(max-width: 960px) {
  .nos-top { grid-template-columns: 1fr; gap: 2rem; }
  .nos-origen { max-width: 560px; }
  .nos-cards { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 560px) {
  .nosotros-section { padding: 3.5rem 0; }
  .nos-cards { grid-template-columns: 1fr; }
  .nos-card { flex-direction: row; align-items: flex-start; gap: 1rem; }
  .nos-card:hover { transform: none; }
}

/* ============================================================
   MARCAS
   ============================================================ */
.marcas-section { background:var(--bg-white); padding:3.5rem 0; border-bottom:1px solid var(--border); }
.marcas-grid { display:flex; flex-wrap:wrap; gap:0.5rem; margin-bottom:1.5rem; }
.marca-pill {
  font-family:var(--font-ui); font-size:0.82rem; font-weight:600;
  padding:0.45rem 1.1rem; border-radius:var(--r-md);
  border:1.5px solid var(--border); color:var(--text-mid);
  background:transparent; cursor:pointer;
  transition:all 0.18s; letter-spacing:0.02em;
}
.marca-pill:hover { border-color:var(--navy); color:var(--navy); background:var(--navy-faint); }
.marca-pill.active { background:var(--navy); color:#fff; border-color:var(--navy); }
.marca-panel {
  overflow:hidden; max-height:0; opacity:0;
  transition:max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
}
.marca-panel.open { max-height:300px; opacity:1; }
.marca-panel-inner {
  background:var(--navy-faint); border:1px solid rgba(27,45,79,0.12);
  border-radius:var(--r-lg); padding:1.5rem 1.8rem;
  display:grid; grid-template-columns:1fr auto; gap:1.5rem; align-items:center;
}
.marca-name { font-family:var(--font-ui); font-weight:800; font-size:1.4rem; color:var(--navy); margin-bottom:0.3rem; }
.marca-tag { font-size:0.72rem; color:var(--text-lite); text-transform:uppercase; letter-spacing:0.06em; margin-bottom:0.7rem; }
.marca-desc { font-size:0.9rem; color:var(--text-mid); line-height:1.7; }
.marca-meta-block { text-align:right; flex-shrink:0; }
.marca-meta-label { font-size:0.68rem; color:var(--text-lite); text-transform:uppercase; letter-spacing:0.06em; display:block; margin-bottom:3px; }
.marca-meta-val { font-family:var(--font-ui); font-size:0.85rem; font-weight:600; color:var(--navy); }
@media(max-width:640px) { .marca-panel-inner { grid-template-columns:1fr; } .marca-meta-block { text-align:left; } }

/* ============================================================
   SERVICIOS
   ============================================================ */
.servicios-section { background:var(--bg); padding:5rem 0; }
.servicios-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:1rem; margin-top:2.5rem; }
.svc-card {
  background:var(--bg-white); border-radius:var(--r-lg); border:1px solid var(--border);
  padding:1.8rem; cursor:pointer; position:relative; overflow:hidden;
  transition:border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.svc-card:hover { border-color:var(--navy-lite); box-shadow:0 4px 24px rgba(27,45,79,0.08); transform:translateY(-2px); }
.svc-card::before { content:''; position:absolute; top:0; left:0; width:3px; height:100%; background:var(--border); transition:background 0.2s; }
.svc-card:hover::before { background:var(--orange); }
.svc-num { position:absolute; top:1.2rem; right:1.4rem; font-family:var(--font-ui); font-size:0.65rem; font-weight:700; color:var(--border-strong); letter-spacing:0.1em; }
.svc-icon-wrap { width:44px; height:44px; border-radius:var(--r-md); background:var(--navy-faint); display:flex; align-items:center; justify-content:center; margin-bottom:1.2rem; }
.svc-icon-wrap svg { width:22px; height:22px; stroke:var(--navy); fill:none; stroke-width:1.5; stroke-linecap:round; }
.svc-name { font-family:var(--font-ui); font-weight:700; font-size:0.95rem; color:var(--navy); margin-bottom:0.4rem; }
.svc-text { font-size:0.87rem; color:var(--text-mid); line-height:1.7; }
.svc-footer { margin-top:1.2rem; padding-top:0.9rem; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; }
.svc-tag { font-size:0.72rem; color:var(--text-lite); }
.svc-arrow { font-size:0.78rem; font-weight:700; color:var(--orange); opacity:0.6; transition:opacity 0.2s, transform 0.2s; }
.svc-card:hover .svc-arrow { opacity:1; transform:translateX(3px); }

/* ============================================================
   DIFERENCIADORES PREMIUM (reemplaza STATS)
   ============================================================ */
.dif-section {
  background: var(--navy);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.dif-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 10% 50%, rgba(21,101,192,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 45% 70% at 90% 50%, rgba(230,81,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.dif-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 2rem 1.6rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  cursor: default;
  transition: background 0.28s ease;
}
.dif-item:last-child { border-right: none; }
.dif-item:hover { background: rgba(255,255,255,0.03); }

/* Ícono */
.dif-icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.dif-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.7);
  transition: stroke 0.28s ease;
}
.dif-item:hover .dif-icon-wrap {
  background: rgba(230,109,0,0.18);
  border-color: rgba(230,109,0,0.35);
  transform: translateY(-2px);
}
.dif-item:hover .dif-icon-wrap svg { stroke: var(--orange-mid); }

/* Línea naranja de acento */
.dif-accent-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 0.45rem;
  transform-origin: left;
  transform: scaleX(1);
  transition: width 0.3s ease;
}
.dif-item:hover .dif-accent-line { width: 30px; }

/* Textos */
.dif-body { display: flex; flex-direction: column; }
.dif-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.dif-text {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* Glow hover sutil al fondo del item */
.dif-hover-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(230,109,0,0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.dif-item:hover .dif-hover-glow { opacity: 1; }

/* Responsive */
@media(max-width: 860px) {
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-item:nth-child(2) { border-right: none; }
  .dif-item:nth-child(1),
  .dif-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
}
@media(max-width: 520px) {
  .dif-grid { grid-template-columns: 1fr; }
  .dif-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 1.4rem 1.2rem; }
  .dif-item:last-child { border-bottom: none; }
  .dif-item:nth-child(2) { border-right: none; }
}

/* ============================================================
   COMPARATIVA — DinoTech vs. taller tradicional
   ============================================================ */
.comparativa-section { background:var(--bg); padding:5rem 0; }
.comp-table { margin-top:2.5rem; border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden; background:var(--bg-white); }
.comp-row { display:grid; grid-template-columns:1.6fr 1fr 1fr; align-items:center; }
.comp-row:not(:last-child) { border-bottom:1px solid var(--border); }
.comp-row.comp-head { background:var(--navy); }
.comp-row.comp-head .comp-cell { color:#fff; font-family:var(--font-ui); font-weight:700; font-size:0.85rem; text-transform:uppercase; letter-spacing:0.05em; }
.comp-row.comp-head .comp-cell:first-child { color:rgba(255,255,255,0.65); font-weight:600; text-transform:none; letter-spacing:0; font-size:0.8rem; }
.comp-row:nth-child(even):not(.comp-head) { background:var(--bg); }
.comp-cell { padding:0.95rem 1.3rem; font-size:0.88rem; color:var(--text-mid); display:flex; align-items:center; gap:8px; justify-content:center; text-align:center; }
.comp-cell:first-child { justify-content:flex-start; text-align:left; font-weight:600; color:var(--text); font-size:0.85rem; }
.comp-cell.dino { color:var(--navy); font-weight:600; }
.comp-icon-ok, .comp-icon-no { width:18px; height:18px; flex-shrink:0; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; }
.comp-icon-ok { background:var(--green-lt); color:var(--green); }
.comp-icon-no { background:rgba(0,0,0,0.05); color:var(--text-lite); }
.comp-icon-ok svg, .comp-icon-no svg { width:10px; height:10px; fill:none; stroke:currentColor; stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round; }
@media(max-width:680px) {
  .comp-row { grid-template-columns:1.4fr 1fr 1fr; }
  .comp-cell { padding:0.8rem 0.6rem; font-size:0.78rem; }
  .comp-cell:first-child { font-size:0.76rem; }
}

/* Indicadores de transparencia — barras animadas */
.indicadores-wrap { margin-top:3rem; display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.5rem; }
.indicador-item { background:var(--bg-white); border:1px solid var(--border); border-radius:var(--r-lg); padding:1.3rem 1.4rem; }
.indicador-top { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:0.6rem; gap:0.5rem; }
.indicador-label { font-family:var(--font-ui); font-size:0.82rem; font-weight:600; color:var(--text); line-height:1.3; }
.indicador-val { font-family:var(--font-ui); font-weight:800; font-size:1.15rem; color:var(--navy); flex-shrink:0; }
.indicador-track { height:6px; border-radius:3px; background:var(--surface); overflow:hidden; }
.indicador-fill { height:100%; border-radius:3px; width:0%; background:linear-gradient(90deg,var(--tech),var(--navy)); transition:width 1.4s cubic-bezier(.22,.9,.3,1); }
.indicador-fill.orange { background:linear-gradient(90deg,var(--orange-mid),var(--orange)); }

.atencion-rapida { background:var(--bg-white); border:1px solid var(--border); border-radius:var(--r-lg); padding:1.6rem 1.8rem; }
.atencion-title {
  font-family:var(--font-ui); font-weight:800;
  font-size:clamp(1.2rem,2.4vw,1.5rem); letter-spacing:-0.02em;
  color:var(--navy); line-height:1.2;
}
.atencion-divider { width:64px; height:4px; border-radius:2px; margin:0.7rem 0 1rem; background:linear-gradient(90deg,var(--tech),var(--navy)); }
.indicador-note { font-size:0.74rem; color:var(--text-lite); margin-top:0.5rem; }

/* ============================================================
   EMPRESAS — Bloque diferenciador
   ============================================================ */
.empresas-section { background:var(--bg-white); padding:5rem 0; }
.ent-block {
  background:var(--navy-faint); border:1px solid rgba(27,45,79,0.12);
  border-radius:var(--r-xl); padding:3rem; overflow:hidden;
  display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:start;
  position:relative;
}
.ent-block::before { content:''; position:absolute; top:0; left:0; bottom:0; width:4px; background:var(--navy); border-radius:var(--r-xl) 0 0 var(--r-xl); }
.ent-badge { display:inline-flex; align-items:center; gap:6px; font-family:var(--font-ui); font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; color:var(--navy); background:rgba(27,45,79,0.1); border:1px solid rgba(27,45,79,0.15); padding:4px 12px; border-radius:20px; margin-bottom:0.8rem; }
.ent-title { font-family:var(--font-ui); font-weight:800; font-size:clamp(1.3rem,2.5vw,1.8rem); color:var(--navy); margin-bottom:0.8rem; line-height:1.2; }
.ent-desc { font-size:0.93rem; color:var(--text-mid); line-height:1.75; margin-bottom:1.5rem; }
.ent-list { display:flex; flex-direction:column; gap:0.6rem; }
.ent-feat { display:flex; align-items:flex-start; gap:10px; font-size:0.88rem; color:var(--text-mid); line-height:1.55; }
.ent-feat-icon { width:20px; height:20px; border-radius:50%; background:var(--green-lt); border:1px solid rgba(46,125,50,0.15); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
.ent-feat-icon svg { width:10px; height:10px; stroke:var(--green); fill:none; stroke-width:3; }
/* Planes */
.ent-planes { display:flex; flex-direction:column; gap:0.75rem; }
.plan-card { background:var(--bg-white); border:1px solid var(--border); border-radius:var(--r-lg); padding:1.2rem 1.4rem; transition:border-color 0.2s; }
.plan-card.active { border-color:var(--navy); border-width:2px; }
.plan-row { display:flex; justify-content:space-between; align-items:flex-start; }
.plan-name { font-family:var(--font-ui); font-weight:700; font-size:0.9rem; color:var(--navy); }
.plan-price { font-family:var(--font-ui); font-weight:800; font-size:1.1rem; color:var(--navy); }
.plan-price small { font-size:0.72rem; color:var(--text-lite); font-weight:400; }
.plan-desc { font-size:0.8rem; color:var(--text-lite); margin-top:3px; }
.plan-tag { display:inline-flex; margin-top:0.5rem; font-size:0.68rem; font-weight:600; background:var(--navy-faint); color:var(--navy); padding:2px 8px; border-radius:20px; }
@media(max-width:800px) { .ent-block { grid-template-columns:1fr; gap:2rem; } }

/* ============================================================
   PROCESO
   ============================================================ */
.proceso-section { background:var(--bg); padding:5rem 0; }
.proceso-steps-row { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; margin-top:2.5rem; margin-bottom:3rem; }
.proceso-steps-row::after { content:''; position:absolute; top:22px; left:12%; right:12%; height:1px; background:var(--border-strong); z-index:0; }
.p-step { text-align:center; padding:0 0.5rem; position:relative; z-index:1; }
.p-step-num { width:46px; height:46px; border-radius:50%; background:var(--bg-white); border:1.5px solid var(--border-strong); display:flex; align-items:center; justify-content:center; margin:0 auto 0.7rem; font-family:var(--font-ui); font-size:0.78rem; font-weight:700; color:var(--text-lite); transition:all 0.2s; }
.p-step.active .p-step-num { background:var(--navy); border-color:var(--navy); color:#fff; }
.p-step-title { font-family:var(--font-ui); font-weight:600; font-size:0.82rem; color:var(--navy); margin-bottom:3px; }
.p-step-time { font-size:0.68rem; color:var(--text-lite); margin-top:3px; text-transform:uppercase; letter-spacing:0.06em; }

/* Acordeón */
.acordeon { display:flex; flex-direction:column; gap:0; border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden; background:var(--bg-white); }
.ac-item { border-bottom:1px solid var(--border); }
.ac-item:last-child { border-bottom:none; }
.ac-trigger { width:100%; display:flex; align-items:center; gap:1.2rem; padding:1.3rem 1.5rem; background:transparent; border:none; cursor:pointer; text-align:left; transition:background 0.15s; }
.ac-trigger:hover { background:var(--navy-faint); }
.ac-item.open .ac-trigger { background:var(--navy-faint); }
.ac-num { flex-shrink:0; width:36px; height:36px; border-radius:50%; background:var(--surface); border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; font-family:var(--font-ui); font-size:0.72rem; font-weight:700; color:var(--text-lite); transition:all 0.25s; }
.ac-item.open .ac-num { background:var(--navy); border-color:var(--navy); color:#fff; }
.ac-head { flex:1; }
.ac-tag { font-size:0.68rem; text-transform:uppercase; letter-spacing:0.07em; color:var(--orange); font-weight:600; margin-bottom:1px; }
.ac-title { font-family:var(--font-ui); font-weight:600; font-size:0.95rem; color:var(--navy); }
.ac-item.open .ac-title { color:var(--navy); }
.ac-summary { font-size:0.8rem; color:var(--text-lite); margin-top:1px; }
.ac-chevron { flex-shrink:0; width:28px; height:28px; border-radius:var(--r-sm); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; transition:transform 0.3s, background 0.2s; }
.ac-chevron svg { width:14px; height:14px; stroke:var(--text-lite); fill:none; stroke-width:2; transition:stroke 0.2s; }
.ac-item.open .ac-chevron { transform:rotate(180deg); background:var(--navy-faint); border-color:rgba(27,45,79,0.2); }
.ac-item.open .ac-chevron svg { stroke:var(--navy); }
.ac-panel { max-height:0; overflow:hidden; transition:max-height 0.38s cubic-bezier(0.4,0,0.2,1); }
.ac-item.open .ac-panel { max-height:500px; }
.ac-body { padding:0 1.5rem 1.5rem 4.7rem; }
.ac-lead { font-size:0.9rem; color:var(--text-mid); line-height:1.8; margin-bottom:1rem; padding-left:0.8rem; border-left:2px solid var(--border); }
.ac-bullets { display:flex; flex-direction:column; gap:0.5rem; margin-bottom:0.8rem; }
.ac-bullet { display:flex; align-items:flex-start; gap:8px; font-size:0.87rem; color:var(--text-mid); line-height:1.6; }
.ac-bullet::before { content:'→'; color:var(--orange); flex-shrink:0; font-weight:700; font-size:0.78rem; margin-top:2px; }
.ac-note { background:var(--navy-faint); border:1px solid rgba(27,45,79,0.12); border-radius:var(--r-md); padding:0.65rem 1rem; font-size:0.83rem; color:var(--navy); line-height:1.55; margin-top:0.8rem; }
@media(max-width:640px) { .ac-body { padding-left:1rem; } }

/* ============================================================
   GARANTÍA
   ============================================================ */
.garantia-section { background:var(--bg-white); padding:5rem 0; border-top:1px solid var(--border); }
.garantia-inner { display:grid; grid-template-columns:1fr 2fr; gap:3rem; align-items:start; }
.garantia-sello {
  background:var(--navy); border-radius:var(--r-xl); padding:2rem;
  text-align:center; position:sticky; top:90px;
}
.sello-icon { width:56px; height:56px; margin:0 auto 1rem; background:rgba(255,255,255,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.sello-icon svg { width:28px; height:28px; stroke:#fff; fill:none; stroke-width:1.5; stroke-linecap:round; }
.sello-title { font-family:var(--font-ui); font-weight:800; font-size:1rem; color:#fff; margin-bottom:0.3rem; }
.sello-sub { font-size:0.75rem; color:rgba(255,255,255,0.55); }
.garantia-periodos { display:flex; gap:0.5rem; margin-top:1.2rem; flex-direction:column; }
.periodo-card { background:rgba(255,255,255,0.08); border-radius:var(--r-md); padding:0.7rem; display:flex; align-items:center; gap:0.7rem; }
.periodo-num { font-family:var(--font-ui); font-weight:800; font-size:1.3rem; color:#fff; min-width:40px; }
.periodo-info { text-align:left; }
.periodo-unit { font-size:0.72rem; color:rgba(255,255,255,0.6); }
.periodo-label { font-size:0.8rem; color:rgba(255,255,255,0.85); font-weight:500; }
.garantia-content h2 { margin-bottom:0.8rem; }
.garantia-desc { color:var(--text-mid); line-height:1.8; margin-bottom:1.5rem; }
.garantia-chips { display:flex; flex-wrap:wrap; gap:0.5rem; margin-bottom:1.5rem; }
.chip { display:flex; align-items:center; gap:6px; font-size:0.8rem; padding:5px 12px; border-radius:20px; border:1.5px solid var(--border); color:var(--text-mid); background:var(--bg-white); font-weight:500; }
.chip.orange { border-color:rgba(230,81,0,0.2); color:var(--orange); background:var(--orange-lt); }
.chip-dot { width:5px; height:5px; border-radius:50%; background:var(--tech); flex-shrink:0; }
.chip.orange .chip-dot { background:var(--orange); }
@media(max-width:720px) { .garantia-inner { grid-template-columns:1fr; } .garantia-sello { position:static; } }

/* ============================================================
   GALERÍA
   ============================================================ */
.galeria-section { background:var(--bg); padding:5rem 0; }
.gal-filtros { display:flex; flex-wrap:wrap; gap:0.4rem; margin-bottom:1.5rem; }
.gal-filtro { font-family:var(--font-ui); font-size:0.8rem; font-weight:500; padding:5px 14px; border:1.5px solid var(--border); color:var(--text-mid); background:var(--bg-white); border-radius:var(--r-md); cursor:pointer; transition:all 0.18s; }
.gal-filtro:hover,.gal-filtro.active { border-color:var(--navy); color:var(--navy); background:var(--navy-faint); }
.gal-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:6px; border-radius:var(--r-lg); overflow:hidden; }
.gal-card { position:relative; overflow:hidden; cursor:pointer; aspect-ratio:4/3; background:var(--surface); border-radius:var(--r-md); }
.gal-card img { width:100%; height:100%; object-fit:cover; transition:transform 0.3s, filter 0.25s; filter:brightness(0.9) saturate(0.85); }
.gal-card:hover img { transform:scale(1.04); filter:brightness(1) saturate(1); }
.gal-overlay { position:absolute; bottom:0; left:0; right:0; background:linear-gradient(to top,rgba(27,45,79,0.88),transparent); padding:0.7rem; opacity:0; transition:opacity 0.22s; }
.gal-card:hover .gal-overlay { opacity:1; }
.gal-tag { font-size:0.65rem; text-transform:uppercase; letter-spacing:0.07em; color:rgba(255,255,255,0.65); font-weight:600; }
.gal-caption { font-size:0.75rem; color:#fff; margin-top:2px; }

/* ============================================================
   PRECIOS
   ============================================================ */
.precios-section { background:var(--bg-white); padding:5rem 0; }
.precio-tabs { display:flex; background:var(--surface); border-radius:var(--r-md); padding:3px; width:fit-content; margin-bottom:2rem; gap:2px; }
.precio-tab { font-family:var(--font-ui); font-size:0.85rem; font-weight:600; padding:0.55rem 1.4rem; border:none; background:transparent; color:var(--text-lite); cursor:pointer; border-radius:var(--r-sm); transition:all 0.18s; }
.precio-tab.active { background:var(--bg-white); color:var(--navy); box-shadow:0 1px 4px rgba(27,45,79,0.1); }
.precios-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:1rem; }
.precio-card { background:var(--bg-white); border:1px solid var(--border); border-radius:var(--r-lg); padding:1.8rem; position:relative; overflow:hidden; transition:border-color 0.2s, box-shadow 0.2s; }
.precio-card:hover { box-shadow:0 4px 20px rgba(27,45,79,0.07); }
.precio-card.featured { border-color:var(--navy); border-width:2px; }
.precio-card.featured::after { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--navy); }
.precio-highlight { font-family:var(--font-ui); font-size:0.65rem; font-weight:700; text-transform:uppercase; letter-spacing:0.07em; color:var(--navy); margin-bottom:0.5rem; }
.precio-svc { font-family:var(--font-ui); font-weight:700; font-size:0.95rem; color:var(--navy); margin-bottom:0.3rem; }
.precio-desde { font-size:0.72rem; color:var(--text-lite); margin-bottom:0.6rem; }
.precio-val { font-family:var(--font-ui); font-weight:800; font-size:1.75rem; color:var(--navy); line-height:1; }
.precio-val small { font-size:0.8rem; color:var(--text-lite); font-weight:400; margin-left:3px; }
.precio-bullets { list-style:none; margin-top:1rem; display:flex; flex-direction:column; gap:4px; }
.precio-bullets li { display:flex; align-items:flex-start; gap:7px; font-size:0.82rem; color:var(--text-mid); }
.precio-bullets li::before { content:'·'; color:var(--tech); flex-shrink:0; font-size:1rem; line-height:1.35; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { background:var(--navy); padding:6rem 0; text-align:center; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 70% 60% at 50% 100%,rgba(230,81,0,0.08) 0%,transparent 70%); pointer-events:none; }
.cta-label { color:rgba(255,255,255,0.5); margin-bottom:1rem; }
.cta-label::before { background:rgba(255,255,255,0.3); }
.cta-title { font-family:var(--font-ui); font-weight:800; font-size:clamp(1.6rem,3.5vw,2.6rem); color:#fff; line-height:1.15; max-width:640px; margin:0 auto 0.8rem; letter-spacing:-0.025em; }
.cta-sub { color:rgba(255,255,255,0.6); font-size:0.97rem; margin-bottom:2.5rem; }
.cta-btns { display:flex; gap:0.75rem; justify-content:center; flex-wrap:wrap; }
.btn-light { background:var(--bg-white); color:var(--navy); border:none; }
.btn-light:hover { background:var(--navy-faint); }
.btn-outline-white { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color:rgba(255,255,255,0.7); background:rgba(255,255,255,0.06); }
.cta-tagline { margin-top:3rem; font-size:0.72rem; letter-spacing:0.12em; color:rgba(255,255,255,0.2); text-transform:uppercase; }

/* ============================================================
   TÉRMINOS / PRIVACIDAD
   ============================================================ */
.legal-section { background:var(--bg); padding:4rem 0; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background:var(--navy); border-top:1px solid rgba(255,255,255,0.08); padding:2rem 0; }
.footer-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; }
.footer-brand { font-family:var(--font-ui); font-weight:800; font-size:1rem; letter-spacing:0.08em; color:rgba(255,255,255,0.85); }
.footer-links { display:flex; gap:1.4rem; list-style:none; flex-wrap:wrap; }
.footer-links a { font-size:0.8rem; color:rgba(255,255,255,0.45); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:rgba(255,255,255,0.85); }
.footer-copy { font-size:0.75rem; color:rgba(255,255,255,0.3); }
@media(max-width:640px) { .footer-inner { flex-direction:column; align-items:flex-start; } }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { display:none; position:fixed; inset:0; z-index:600; background:rgba(10,15,25,0.94); backdrop-filter:blur(10px); align-items:center; justify-content:center; }
.lightbox.open { display:flex; }
.lb-inner { position:relative; max-width:90vw; max-height:90vh; display:flex; flex-direction:column; align-items:center; gap:1rem; }
.lb-img { max-width:100%; max-height:75vh; object-fit:contain; border-radius:var(--r-lg); }
.lb-close { position:absolute; top:-2rem; right:0; background:transparent; border:none; color:rgba(255,255,255,0.6); font-size:1.4rem; cursor:pointer; }
.lb-nav { position:absolute; top:50%; transform:translateY(-50%); background:rgba(27,45,79,0.7); border:1px solid rgba(255,255,255,0.12); color:#fff; width:38px; height:38px; font-size:1.3rem; display:flex; align-items:center; justify-content:center; cursor:pointer; border-radius:var(--r-md); }
.lb-nav.prev { left:-3rem; } .lb-nav.next { right:-3rem; }
.lb-caption { font-size:0.82rem; color:rgba(255,255,255,0.55); text-align:center; }

/* ============================================================
   MODALES
   ============================================================ */
.modal-overlay { display:none; position:fixed; inset:0; z-index:500; background:rgba(10,15,25,0.75); backdrop-filter:blur(6px); align-items:center; justify-content:center; padding:1.5rem; }
.modal-overlay.active { display:flex; }
@keyframes modal-in { from{opacity:0;transform:translateY(16px) scale(0.98)} to{opacity:1;transform:none} }
.modal {
  background:var(--bg-white); border-radius:var(--r-xl);
  border:1px solid var(--border); position:relative;
  animation:modal-in 0.28s cubic-bezier(0.22,1,0.36,1);
  box-shadow:0 20px 60px rgba(10,15,25,0.3);
}
.modal-close { position:absolute; top:1rem; right:1rem; width:30px; height:30px; background:var(--surface); border:1px solid var(--border); border-radius:var(--r-sm); color:var(--text-lite); font-size:0.85rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:border-color 0.2s; }
.modal-close:hover { border-color:var(--navy); color:var(--navy); }

/* Modal contacto */
.contact-modal { max-width:580px; width:100%; max-height:90vh; overflow-y:auto; padding:2.5rem; }
.modal-title { font-family:var(--font-ui); font-weight:800; font-size:1.15rem; color:var(--navy); margin-bottom:0.3rem; }
.modal-sub { font-size:0.87rem; color:var(--text-lite); margin-bottom:1.8rem; }
.cf-label { display:block; font-family:var(--font-ui); font-size:0.7rem; font-weight:700; text-transform:uppercase; letter-spacing:0.07em; color:var(--navy); margin-bottom:0.4rem; }
.cf-input,.cf-select,.cf-textarea { width:100%; background:var(--bg); border:1.5px solid var(--border); color:var(--text); font-family:var(--font-body); font-size:0.93rem; padding:0.6rem 0.9rem; border-radius:var(--r-md); outline:none; transition:border-color 0.18s; margin-bottom:0.9rem; }
.cf-input:focus,.cf-select:focus,.cf-textarea:focus { border-color:var(--navy); background:var(--bg-white); }
.cf-select option { background:var(--bg-white); }
.cf-textarea { min-height:85px; resize:vertical; }
.cf-row { display:grid; grid-template-columns:1fr 1fr; gap:0.8rem; }
.cf-error { display:none; font-size:0.82rem; color:#C62828; background:#FFEBEE; border-radius:var(--r-sm); padding:0.5rem 0.8rem; margin-bottom:0.8rem; }
.cf-submit { width:100%; font-family:var(--font-ui); font-size:0.9rem; font-weight:700; padding:0.85rem; background:var(--orange); color:#fff; border:none; border-radius:var(--r-md); cursor:pointer; transition:background 0.18s; margin-top:0.3rem; }
.cf-submit:hover { background:var(--orange-h); }
.cf-submit:disabled { opacity:0.5; cursor:not-allowed; }
.cf-success { display:none; text-align:center; padding:2rem 0; }
.cf-success-icon { font-size:2.5rem; margin-bottom:0.8rem; }
.cf-success-title { font-family:var(--font-ui); font-weight:700; color:var(--navy); font-size:1.05rem; margin-bottom:0.4rem; }
.cf-success-sub { font-size:0.88rem; color:var(--text-lite); }
@media(max-width:540px) { .cf-row { grid-template-columns:1fr; } .contact-modal { padding:1.8rem 1.2rem; } }

/* Modal info */
.info-modal { max-width:420px; width:100%; padding:2rem; }
.info-row { display:flex; align-items:center; gap:10px; padding:0.8rem 0; border-bottom:1px solid var(--border); font-size:0.9rem; color:var(--text-mid); }
.info-row:last-of-type { border-bottom:none; }
.info-row svg { width:16px; height:16px; stroke:var(--navy); fill:none; stroke-width:1.8; flex-shrink:0; }

/* Modal servicio */
.svc-modal { max-width:640px; width:100%; max-height:88vh; overflow-y:auto; padding:2.5rem; }
.svc-modal-header { display:flex; align-items:flex-start; gap:1.2rem; margin-bottom:1.5rem; }
.svc-modal-num { font-family:var(--font-ui); font-weight:800; font-size:2.5rem; color:var(--border); line-height:1; flex-shrink:0; }
.svc-modal-eyebrow { font-size:0.7rem; text-transform:uppercase; letter-spacing:0.07em; color:var(--orange); font-weight:600; margin-bottom:3px; }
.svc-modal-title { font-family:var(--font-ui); font-weight:800; font-size:clamp(1.1rem,2.5vw,1.4rem); color:var(--navy); }
.svc-modal-intro { font-size:0.9rem; color:var(--text-mid); line-height:1.75; margin-bottom:1.8rem; border-left:2px solid var(--border); padding-left:1rem; }
.svc-steps { display:flex; flex-direction:column; gap:0; }
.svc-step { display:flex; gap:1rem; padding:1rem 0; border-bottom:1px solid var(--border); }
.svc-step:last-child { border-bottom:none; }
.svc-step-num { flex-shrink:0; width:32px; height:32px; border-radius:50%; background:var(--navy-faint); border:1.5px solid rgba(27,45,79,0.15); display:flex; align-items:center; justify-content:center; font-family:var(--font-ui); font-size:0.68rem; font-weight:700; color:var(--navy); margin-top:2px; }
.svc-step-name { font-family:var(--font-ui); font-weight:600; font-size:0.88rem; color:var(--navy); margin-bottom:2px; }
.svc-step-desc { font-size:0.83rem; color:var(--text-mid); line-height:1.6; }
@media(max-width:540px) { .svc-modal { padding:1.8rem 1.2rem; } }


/* ============================================================
   ADMIN GALERÍA — Panel oculto activado por secuencia de teclado
   ============================================================ */
.galeria-admin-wrap {
  display: none;
  margin-top: 1.5rem;
  text-align: center;
}
.galeria-admin-wrap.visible { display: block; }

.galeria-admin-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 600;
  padding: 0.6rem 1.4rem; border-radius: var(--r-md);
  background: var(--navy-faint); color: var(--navy);
  border: 1.5px dashed var(--navy-lite); cursor: pointer;
  transition: all 0.18s;
}
.galeria-admin-btn:hover { background: var(--navy); color: #fff; }
.galeria-admin-btn svg { flex-shrink: 0; }

/* Modal admin */
.galeria-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 700;
  background: rgba(10,15,25,0.82); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.galeria-modal-overlay.active { display: flex; }
.galeria-modal-box {
  background: var(--bg-white); border-radius: var(--r-xl);
  border: 1px solid var(--border); padding: 2rem;
  max-width: 520px; width: 100%; position: relative;
  box-shadow: 0 20px 60px rgba(10,15,25,0.25);
  animation: modal-in 0.28s cubic-bezier(0.22,1,0.36,1);
}
.galeria-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-sm); width: 30px; height: 30px;
  color: var(--text-lite); font-size: 0.85rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.galeria-modal-close:hover { border-color: var(--navy); color: var(--navy); }
.galeria-modal-tag {
  font-family: var(--font-ui); font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange);
  margin-bottom: 0.5rem;
}
.galeria-modal-title {
  font-family: var(--font-ui); font-weight: 800; font-size: 1.1rem;
  color: var(--navy); margin-bottom: 1.4rem;
}
.gal-upload-zone {
  border: 1.5px dashed var(--border-strong); border-radius: var(--r-lg);
  padding: 2rem 1rem; text-align: center; cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  margin-bottom: 1.2rem;
}
.gal-upload-zone:hover { border-color: var(--navy); background: var(--navy-faint); }
.gal-upload-text { font-size: 0.88rem; color: var(--text-lite); margin-top: 0.6rem; }
.gal-upload-text span { font-size: 0.75rem; }
.gal-previews { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1rem; }
.gal-preview-thumb {
  position: relative; width: 72px; height: 72px;
  border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border);
}
.gal-preview-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gal-preview-thumb button {
  position: absolute; top: 2px; right: 2px; width: 18px; height: 18px;
  background: rgba(10,15,25,0.75); color: #fff; border: none;
  border-radius: 50%; font-size: 0.6rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
}
.gal-form-row { margin-bottom: 1rem; }
.gal-label {
  display: block; font-family: var(--font-ui); font-size: 0.7rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--navy); margin-bottom: 0.4rem;
}
.gal-select, .gal-input {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border);
  color: var(--text); font-family: var(--font-body); font-size: 0.93rem;
  padding: 0.6rem 0.9rem; border-radius: var(--r-md); outline: none;
  transition: border-color 0.18s;
}
.gal-select:focus, .gal-input:focus { border-color: var(--navy); background: var(--bg-white); }
.gal-form-actions { display: flex; gap: 0.75rem; justify-content: flex-end; margin-top: 1.2rem; }
.gal-btn-cancel {
  font-family: var(--font-ui); font-weight: 600; font-size: 0.88rem;
  padding: 0.65rem 1.3rem; border-radius: var(--r-md);
  background: var(--surface); color: var(--text-mid); border: 1px solid var(--border); cursor: pointer;
}
.gal-btn-subir {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.88rem;
  padding: 0.65rem 1.6rem; border-radius: var(--r-md);
  background: var(--orange); color: #fff; border: none; cursor: pointer;
  transition: background 0.18s;
}
.gal-btn-subir:hover { background: var(--orange-h); }
.gal-btn-subir:disabled { opacity: 0.5; cursor: not-allowed; }

/* Modal login admin */
.admin-login-overlay {
  display: none; position: fixed; inset: 0; z-index: 900;
  background: rgba(10,15,25,0.88); backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
}
.admin-login-overlay.active { display: flex; }
.admin-login-box {
  background: var(--bg-white); border-radius: var(--r-xl);
  border: 1px solid var(--border); padding: 2rem 2rem 1.8rem;
  max-width: 360px; width: 90%; position: relative;
  box-shadow: 0 20px 60px rgba(10,15,25,0.3);
  animation: modal-in 0.28s cubic-bezier(0.22,1,0.36,1);
}
.admin-login-box button.close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-sm); width: 28px; height: 28px;
  color: var(--text-lite); font-size: 0.8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.admin-login-title { font-family: var(--font-ui); font-weight: 800; font-size: 1rem; color: var(--navy); margin-bottom: 1.4rem; }
.admin-login-error { display: none; font-size: 0.82rem; color: #C62828; background: #FFEBEE; padding: 0.5rem 0.8rem; border-radius: var(--r-sm); margin-bottom: 0.8rem; }
.admin-logout-wrap { display: none; position: fixed; bottom: 90px; right: 22px; z-index: 400; }
.admin-logout-btn {
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600;
  padding: 0.5rem 1rem; border-radius: var(--r-md);
  background: var(--bg-white); color: var(--orange);
  border: 1.5px solid rgba(230,81,0,0.3); cursor: pointer;
  backdrop-filter: blur(8px); box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.admin-logout-btn:hover { border-color: var(--orange); background: var(--orange-lt); }
.galeria-card-delete {
  position: absolute; top: 6px; right: 6px; width: 22px; height: 22px;
  background: rgba(10,15,25,0.75); color: #fff; border: none;
  border-radius: 50%; font-size: 0.65rem; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  z-index: 5;
}
.gal-card:hover .galeria-card-delete { display: flex; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity:0; transform:translateY(18px); will-change:opacity,transform; }

/* ============================================================
   RESPONSIVE MISC
   ============================================================ */
@media(max-width:768px) {
  .section { padding:3.5rem 0; }
  .wrap { padding:0 1.1rem; }
  .proceso-steps-row { grid-template-columns:1fr 1fr; gap:1.2rem; }
  .proceso-steps-row::after { display:none; }
}

/* ============================================================
   SÍNTOMAS / PROBLEMAS COMUNES (rediseño premium)
   ============================================================ */
.sintomas-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-white) 100%);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  position:relative; overflow:hidden;
}
.sintomas-section::before {
  content:''; position:absolute; top:-120px; right:-120px;
  width:340px; height:340px; border-radius:50%;
  background:radial-gradient(circle, rgba(230,109,0,0.08) 0%, transparent 70%);
  pointer-events:none;
}
.sintomas-head { max-width:760px; margin-bottom:1rem; }

.sintomas-layout {
  display:grid; grid-template-columns:1.35fr 1fr;
  gap:2.5rem; align-items:start; margin-top:2.5rem;
}

/* --- Categorías --- */
.sintomas-categorias {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:1.1rem;
}
.sint-cat {
  background:var(--bg-white); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:1.4rem 1.4rem 1.2rem;
  box-shadow:0 2px 10px rgba(27,45,79,0.04);
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.sint-cat:hover {
  transform:translateY(-4px);
  box-shadow:0 14px 32px rgba(27,45,79,0.12);
  border-color:rgba(230,109,0,0.25);
}
.sint-cat-head { display:flex; align-items:center; gap:0.8rem; margin-bottom:0.9rem; }
.sint-cat-icon {
  flex-shrink:0; width:42px; height:42px; border-radius:var(--r-md);
  background:var(--navy-faint); color:var(--navy);
  display:flex; align-items:center; justify-content:center;
  transition:background 0.25s, color 0.25s;
}
.sint-cat-icon svg { width:22px; height:22px; min-width:22px; min-height:22px; display:block; }
.sint-cat-icon--orange { background:var(--orange-lt); color:var(--orange); }
.sint-cat:hover .sint-cat-icon { background:var(--navy); color:#fff; }
.sint-cat:hover .sint-cat-icon--orange { background:var(--orange); color:#fff; }
.sint-cat-title {
  font-family:var(--font-ui); font-size:1rem; font-weight:700;
  color:var(--text); letter-spacing:-0.01em;
}
.sint-cat-list { list-style:none; display:flex; flex-direction:column; gap:0.6rem; }
.sint-cat-list li {
  display:flex; align-items:flex-start; gap:0.6rem;
  font-family:var(--font-body); font-size:0.9rem; color:var(--text-mid);
  line-height:1.4;
}
.sint-cat-list li svg {
  flex-shrink:0; width:16px; height:16px; min-width:16px; min-height:16px;
  display:block; margin-top:2px;
  color:var(--text-lite); transition:color 0.25s;
}
.sint-cat:hover .sint-cat-list li svg { color:var(--orange-mid); }

/* --- Lado derecho --- */
.sintomas-side {
  display:flex; flex-direction:column; gap:1.4rem;
  position:sticky; top:90px;
}
.sint-illustration-wrap {
  border-radius:var(--r-xl); overflow:hidden;
  box-shadow:0 16px 40px rgba(27,45,79,0.18);
  position:relative; line-height:0;
}
.sint-illustration {
  width:100%; height:280px; object-fit:cover; display:block;
  filter:saturate(1.05) contrast(1.03);
}

.sint-brands {
  background:var(--bg-white); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:1.4rem 1.5rem;
  box-shadow:0 2px 10px rgba(27,45,79,0.04);
}
.sint-brands-title {
  font-family:var(--font-ui); font-weight:700; font-size:0.98rem;
  color:var(--navy); letter-spacing:-0.01em; margin-bottom:0.4rem;
}
.sint-brands-sub {
  font-family:var(--font-body); font-size:0.85rem; line-height:1.5;
  color:var(--text-lite); margin-bottom:1.2rem;
}
.sint-brands-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:0.7rem;
}
.sint-brand {
  display:flex; align-items:center; justify-content:center;
  height:46px; border-radius:var(--r-md); padding:0 0.5rem;
  background:var(--bg); border:1px solid var(--border);
  font-family:var(--font-ui); font-weight:700; font-size:0.8rem;
  letter-spacing:0.02em; color:var(--text-lite); text-align:center;
  filter:grayscale(1); opacity:0.65;
  transition:color 0.25s, border-color 0.25s, opacity 0.25s, filter 0.25s, transform 0.25s;
}
.sint-brand:hover {
  color:var(--navy); border-color:var(--orange-mid);
  opacity:1; filter:grayscale(0); transform:translateY(-2px);
}

.sint-cta-box {
  background:var(--navy); border-radius:var(--r-xl);
  padding:1.8rem; text-align:left;
  box-shadow:0 16px 36px rgba(27,45,79,0.22);
  position:relative; overflow:hidden;
}
.sint-cta-box::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 70% 60% at 100% 0%, rgba(230,109,0,0.18) 0%, transparent 70%);
  pointer-events:none;
}
.sint-cta-text {
  font-family:var(--font-ui); font-weight:700; font-size:1.05rem;
  line-height:1.5; color:#fff; margin-bottom:1.2rem; position:relative;
}
.sint-cta-btn {
  width:100%; justify-content:center; gap:0.6rem;
  font-size:0.95rem; padding:0.9rem 1.4rem; position:relative;
}
.sint-cta-btn svg { width:18px; height:18px; min-width:18px; min-height:18px; display:block; flex-shrink:0; }
.sint-cta-secondary {
  display:block; text-align:center; margin-top:0.9rem;
  font-family:var(--font-ui); font-size:0.82rem; font-weight:600;
  color:rgba(255,255,255,0.7); text-decoration:none; position:relative;
  transition:color 0.2s;
}
.sint-cta-secondary:hover { color:#fff; }

@media(max-width:980px){
  .sintomas-layout { grid-template-columns:1fr; }
  .sintomas-side { position:static; }
  .sintomas-categorias { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:600px){
  .sintomas-categorias { grid-template-columns:1fr; }
  .sint-cta-text { font-size:0.98rem; }
  .sint-brands-grid { grid-template-columns:repeat(2,1fr); }
}

