/* =========================================================
   GEEK IT — Hoja de estilos maestra
   Paleta: #118CCB (azul), #DC4E00 (naranja)
   ========================================================= */

:root {
  --blue: #118ccb;
  --blue-dark: #0a6fa3;
  --blue-soft: #e6f4fb;
  --orange: #dc4e00;
  --orange-dark: #b84100;
  --orange-soft: #fff1e8;
  --ink: #0f172a;
  --ink-soft: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 10px 30px -10px rgba(17, 140, 203, .25);
  --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, .15);
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1200px;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { color: var(--ink-soft); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAVBAR ---------- */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  transition: transform .2s;
}
.nav-logo:hover { transform: scale(1.03); }
.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}
@media (max-width: 540px) {
  .nav-logo img { height: 32px; }
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active {
  color: var(--blue);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  transition: transform .2s, background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { background: var(--blue); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: .3s;
}

@media (max-width: 860px) {
  .nav-links { 
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { max-height: 500px; padding: 16px 0; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 14px 24px; display: block; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}

/* ---------- BOTONES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(220, 78, 0, .5);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(220, 78, 0, .6);
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.btn-ghost {
  background: rgba(17, 140, 203, .08);
  color: var(--blue);
}
.btn-ghost:hover { background: rgba(17, 140, 203, .16); }

/* ---------- HERO (inicio) ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(17, 140, 203, .18), transparent 60%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(220, 78, 0, .12), transparent 60%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 24px;
  animation: fadeInUp .7s ease;
}
.hero-badge span.dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  margin-bottom: 20px;
  animation: fadeInUp .7s ease .1s backwards;
}
.hero h1 span.accent {
  background: linear-gradient(135deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 540px;
  animation: fadeInUp .7s ease .2s backwards;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp .7s ease .3s backwards;
}
.hero-stats {
  margin-top: 48px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp .7s ease .4s backwards;
}
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue);
  display: block;
  line-height: 1;
}
.hero-stat span {
  font-size: .9rem;
  color: var(--muted);
}
.hero-visual {
  position: relative;
  animation: fadeIn 1s ease .3s backwards;
}
.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.hero-float {
  position: absolute;
  background: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}
.hero-float.a { top: 24px; left: -30px; }
.hero-float.b { bottom: 24px; right: -20px; animation-delay: 1s; }
.hero-float-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.2rem;
}
.hero-float.b .hero-float-icon {
  background: var(--orange-soft);
  color: var(--orange);
}
.hero-float strong {
  font-family: var(--font-display);
  font-size: .95rem;
  display: block;
}
.hero-float span {
  font-size: .8rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 50px 0 70px; }
  .hero-float { display: none; }
}

/* ---------- PAGE HEADER (páginas internas) ---------- */
.page-header {
  padding: 70px 0 50px;
  background: linear-gradient(180deg, var(--blue-soft) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(220, 78, 0, .1), transparent 60%);
}
.page-header-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-header .eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-header h1 { margin-bottom: 16px; }
.page-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ---------- SECCIONES ---------- */
section { padding: 80px 0; }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 14px; }

/* ---------- SERVICIOS GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.service-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { flex: 1; margin-bottom: 16px; }
.service-card-link {
  color: var(--blue);
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.service-card:hover .service-card-link { gap: 10px; color: var(--orange); }

/* ---------- SEGMENTOS (Residencial / Empresarial) ---------- */
.segments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.segment {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  cursor: pointer;
  isolation: isolate;
}
.segment img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
  z-index: 0;
}
.segment::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, .85) 100%);
  z-index: 1;
}
.segment:hover img { transform: scale(1.06); }
.segment-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  color: #fff;
  z-index: 2;
}
.segment-body h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.segment-body p { color: rgba(255, 255, 255, .85); margin-bottom: 16px; }
.segment-tag {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 14px;
}
@media (max-width: 700px) {
  .segments { grid-template-columns: 1fr; }
}

/* ---------- VALORES (nosotros) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.value {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  transition: transform .3s, background .3s;
}
.value:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.value:nth-child(even) .value-icon { background: var(--orange); }
.value h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value p { font-size: .95rem; }

/* ---------- ABOUT CONTENT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; font-size: 1.05rem; }
.about-text .highlight {
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  background: var(--orange-soft);
  border-radius: 8px;
  margin: 24px 0;
  color: var(--ink);
  font-weight: 500;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- CTA FINAL ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(220, 78, 0, .35), transparent 60%);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 60%);
}
.cta-band > div { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255, 255, 255, .9); margin-bottom: 28px; font-size: 1.1rem; }

/* ---------- CONTACTO ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: border-color .3s, transform .3s;
}
.contact-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.contact-card.wa .icon { background: #25d36620; color: #25d366; }
.contact-card.mail .icon { background: var(--orange-soft); color: var(--orange); }
.contact-card h3 { margin-bottom: 6px; }
.contact-card p { margin-bottom: 16px; }
.contact-card .value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 600;
  padding: 0;
  border: none;
  background: none;
  margin-bottom: 20px;
  display: block;
}

.contact-hours {
  background: var(--bg-soft);
  padding: 24px;
  border-radius: var(--radius);
  margin-top: 24px;
}
.contact-hours h4 {
  font-family: var(--font-display);
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.contact-hours ul { list-style: none; }
.contact-hours li {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: .95rem;
  border-bottom: 1px dashed var(--line);
}
.contact-hours li:last-child { border: none; }
.contact-hours span:last-child { color: var(--muted); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- SERVICIO DETALLE (página servicios) ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}
.service-detail:nth-child(even) .service-detail-img { order: 2; }
.service-detail-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.service-detail-body .tag {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 14px;
}
.service-detail-body h2 { margin-bottom: 14px; font-size: 2rem; }
.service-detail-body p { margin-bottom: 16px; font-size: 1.05rem; }
.service-detail-body ul {
  list-style: none;
  margin-top: 16px;
}
.service-detail-body li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--ink);
  font-weight: 500;
}
.service-detail-body li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 18px; height: 18px;
  background: var(--blue);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center;
}
@media (max-width: 860px) {
  .service-detail { grid-template-columns: 1fr; gap: 24px; }
  .service-detail:nth-child(even) .service-detail-img { order: 0; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(1.2); }
.footer-brand p { color: #94a3b8; margin-bottom: 20px; max-width: 320px; }
.footer h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: #94a3b8; transition: color .2s; font-size: .95rem; }
.footer ul a:hover { color: var(--blue); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .08);
  border-radius: 10px;
  transition: background .2s;
  cursor: pointer;
}
.footer-social a:hover { background: var(--blue); }
.footer-social svg { width: 16px; height: 16px; fill: #cbd5e1; }
.footer-social a:hover svg { fill: #fff; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #64748b;
  font-size: .88rem;
}
.footer-bottom strong { color: var(--orange); font-family: var(--font-display); }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- WHATSAPP FLOTANTE ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, .5);
  z-index: 90;
  transition: transform .2s;
  animation: pulse-wa 2s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- ANIMACIONES ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.2); }
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 10px 25px -5px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, .5); }
  50% { box-shadow: 0 10px 25px -5px rgba(37, 211, 102, .5), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s, transform .8s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   BANNER DE COOKIES
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, .25), 0 0 0 1px var(--line);
  z-index: 200;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity .4s ease, transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}
.cookie-banner-inner {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1;
  min-width: 240px;
}
.cookie-banner-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.cookie-banner-text p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.cookie-banner-text a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}
.cookie-banner-text a:hover { color: var(--orange); }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.cookie-btn-accept {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(220, 78, 0, .5);
}
.cookie-btn-accept:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
.cookie-btn-reject {
  background: #fff;
  color: var(--ink-soft);
  border: 1.5px solid var(--line);
}
.cookie-btn-reject:hover {
  border-color: var(--ink-soft);
  color: var(--ink);
}

@media (max-width: 520px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
  .cookie-banner-inner {
    padding: 18px 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
  }
}

/* Mover un poco el WhatsApp flotante cuando el banner está visible */
@media (min-width: 521px) {
  .cookie-banner.visible ~ .wa-float {
    transform: translateY(-10px);
  }
}
