@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap');

/* ══════════════════════════════════════════
   VARIABLES
   ══════════════════════════════════════════ */
:root {
  --coral:     #F75C5C;
  --coral-d:   #d94444;
  --coral-l:   #fff2f2;
  --coral-m:   #ffdada;
  --ink:       #18181B;
  --ink-soft:  #3f3f46;
  --muted:     #71717a;
  --muted-l:   #f4f4f5;
  --warm-bg:   #FAFAF8;
  --white:     #ffffff;
  --green:     #16a34a;
  --green-l:   #f0fdf4;
  --red:       #dc2626;
  --gold:      #D97706;
  --gold-l:    #fffbeb;
  --indigo:    #4338CA;
  --indigo-l:  #eef2ff;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 4px 20px rgba(0,0,0,.07);
  /* legacy aliases so pages that still use old var names don't break */
  --black:     #18181B;
  --gray:      #71717a;
  --gray-l:    #f4f4f5;
  --badge:     #D97706;
}

/* ══════════════════════════════════════════
   BASE
   ══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--warm-bg);
  line-height: 1.72;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo { font-weight: 800; font-size: 1.1rem; color: var(--ink); letter-spacing: -.4px; }
.nav-logo span { color: var(--coral); }
.nav-links { display: flex; gap: 1.75rem; font-size: .875rem; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 500; white-space: nowrap; transition: color .15s; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
@media(max-width:600px){ .nav-links { display: none; } }

/* Logo components */
.logo-wrap { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo-wrap:hover { text-decoration: none; }
.logo-circle {
  width: 36px; height: 36px;
  background: var(--coral);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(247,92,92,.3);
  flex-shrink: 0;
}
.logo-circle svg { width: 36px; height: 36px; }
.logo-text {
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -.4px;
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-size: .6rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Hamburger (index only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media(max-width:600px){ .hamburger { display: flex; } }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  overflow-y: auto;
  padding: 1rem 1.25rem 6rem;
  flex-direction: column;
  gap: .25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem .5rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--muted-l);
  text-decoration: none;
  transition: color .15s;
}
.mobile-menu a:hover { color: var(--coral); }
.mobile-menu .mobile-section-title {
  font-size: .7rem;
  font-weight: 700;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 1.1rem .5rem .35rem;
}
.mobile-menu .mobile-cta {
  margin-top: 1rem;
  background: var(--coral);
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 1rem !important;
  justify-content: center;
  font-size: 1rem !important;
  box-shadow: 0 4px 16px rgba(247,92,92,.35);
  border-bottom: none !important;
}

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  color: var(--muted);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .875rem;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  transition: color .15s;
}
.nav-dropdown-toggle:hover { color: var(--ink); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; right: 0;
  padding-top: .5rem;
  background: transparent;
  z-index: 200;
  min-width: 200px;
}
.nav-dropdown-menu-inner {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.09);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  overflow: hidden;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.1rem;
  color: var(--ink);
  font-size: .85rem;
  font-weight: 500;
  border-bottom: 1px solid var(--muted-l);
  transition: background .12s, color .12s;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--coral-l); color: var(--coral); text-decoration: none; }
.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: .42rem .95rem;
  border-radius: 999px;
  font-weight: 700 !important;
  font-size: .8rem !important;
  box-shadow: 0 2px 10px rgba(247,92,92,.32);
}
.nav-cta:hover { opacity: .88; color: var(--white) !important; }

/* ══════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════ */
.container { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 3.75rem 1.5rem 3.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(247,92,92,.09) 0%, transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(247,92,92,.06) 0%, transparent 45%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.033) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: .5;
}
.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--gold-l);
  color: var(--gold);
  font-weight: 700;
  font-size: .73rem;
  padding: .38rem .95rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid rgba(217,119,6,.18);
}
.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 400;
  line-height: 1.14;
  max-width: 680px;
  margin: 0 auto .95rem;
  letter-spacing: -.2px;
  color: var(--ink);
}
.hero h1 span { color: var(--coral); font-style: italic; }
.hero > p {
  color: var(--muted);
  max-width: 530px;
  margin: 0 auto 1.85rem;
  font-size: 1.05rem;
  line-height: 1.62;
}
.hero p { color: var(--muted); }

.hero-gift {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: .82rem 1.85rem;
  border-radius: 999px;
  box-shadow: 0 4px 22px rgba(247,92,92,.38), 0 1px 4px rgba(247,92,92,.22);
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
}
.hero-gift:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 8px 30px rgba(247,92,92,.48);
  text-decoration: none;
  color: var(--white);
}
.hero-meta { margin-top: 1.5rem; font-size: .78rem; color: #a1a1aa; }

/* ══════════════════════════════════════════
   SECTIONS & TYPOGRAPHY
   ══════════════════════════════════════════ */
section { padding: 2.75rem 0; }
section + section { border-top: 1px solid rgba(0,0,0,.06); }

h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 400;
  margin-bottom: 1.1rem;
  letter-spacing: -.15px;
  color: var(--ink);
}
h2 .emoji { margin-right: .35rem; font-style: normal; }
h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); }

p { margin-bottom: 1rem; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════
   HIGHLIGHT BOX
   ══════════════════════════════════════════ */
.highlight {
  background: var(--coral-l);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.4rem;
  margin: 1.4rem 0;
  font-size: .95rem;
  color: var(--ink-soft);
}
.highlight strong { color: var(--ink); }

/* ══════════════════════════════════════════
   FEATURE GRID
   ══════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  text-align: center;
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); transform: translateY(-2px); }
.feature-card .icon { font-size: 1.9rem; margin-bottom: .5rem; }
.feature-card strong { display: block; font-size: .9rem; color: var(--ink); font-weight: 700; margin-bottom: .2rem; }
.feature-card small { font-size: .78rem; color: var(--muted); }

/* ══════════════════════════════════════════
   STEPS
   ══════════════════════════════════════════ */
.steps { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.4rem; }
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
}
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--coral);
  color: var(--white);
  font-weight: 800;
  font-size: .95rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-body strong { display: block; font-size: .95rem; margin-bottom: .2rem; color: var(--ink); }
.step-body p { font-size: .875rem; margin-bottom: 0; color: var(--muted); }

/* Step with image */
.step-with-img {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 1.25rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}
@media(max-width:560px){
  .step-with-img { grid-template-columns: 1fr; }
  .step-with-img .phone-frame { max-width: 220px; }
}
.step-with-img .step-left { display: flex; gap: .9rem; align-items: flex-start; }
.step-with-img .step-right { display: flex; justify-content: center; }

/* ══════════════════════════════════════════
   PHONE FRAMES & SCREENSHOTS
   ══════════════════════════════════════════ */
.mockup {
  background: var(--muted-l);
  border: 2px dashed rgba(0,0,0,.12);
  border-radius: 18px;
  padding: 1.5rem 1rem;
  text-align: center;
  margin: .8rem 0;
  color: var(--muted);
  font-size: .85rem;
}
.mockup .phone-icon { font-size: 2rem; display: block; margin-bottom: .3rem; }

.phone-frame {
  max-width: 260px;
  margin: 0 auto;
  border-radius: 28px;
  border: 3px solid rgba(0,0,0,.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  overflow: hidden;
  background: var(--white);
  position: relative;
}
.phone-frame::before {
  content: '';
  display: block;
  width: 60px; height: 5px;
  background: rgba(0,0,0,.12);
  border-radius: 999px;
  margin: 10px auto 0;
}
.phone-frame img { width: 100%; display: block; margin-top: 6px; }

.phone-caption {
  text-align: center;
  font-size: .75rem;
  color: var(--muted);
  margin-top: .5rem;
  font-style: italic;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.4rem 0;
}
@media(max-width:480px){
  .screenshots-grid { gap: .65rem; }
  .phone-frame { border-radius: 18px; }
}
.screenshots-grid.col3 { grid-template-columns: repeat(3, 1fr); }
@media(max-width:580px){ .screenshots-grid.col3 { grid-template-columns: repeat(2, 1fr); } }

.screenshot-single { display: flex; justify-content: center; margin: 1.4rem 0; }
.screenshot-single .phone-frame { max-width: 300px; }

.infographic {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 1.4rem 0;
  border: 1px solid rgba(0,0,0,.08);
}
.infographic img { width: 100%; display: block; }

/* ══════════════════════════════════════════
   BBono BADGE
   ══════════════════════════════════════════ */
.bbono-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #1e3a5f;
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .4rem .9rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   TABLES
   ══════════════════════════════════════════ */
.table-wrap {
  overflow-x: auto;
  margin: 1.4rem 0;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.09);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
thead { background: var(--ink); color: var(--white); }
thead th {
  padding: .88rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
tbody tr { transition: background .1s; }
tbody tr:hover { background: rgba(247,92,92,.04); }
tbody tr:nth-child(even) { background: rgba(0,0,0,.022); }
tbody tr:nth-child(even):hover { background: rgba(247,92,92,.05); }
tbody td { padding: .78rem 1rem; vertical-align: top; border-bottom: 1px solid rgba(0,0,0,.05); color: var(--ink-soft); }
tbody tr:last-child td { border-bottom: none; font-weight: 700; color: var(--coral); }
.check-yes { color: var(--green); font-weight: 700; }
.check-no  { color: var(--red);   font-weight: 700; }

/* ══════════════════════════════════════════
   EXAMPLE BOX
   ══════════════════════════════════════════ */
.example-box {
  background: linear-gradient(135deg, var(--coral-l), #fff8f8);
  border: 1px solid var(--coral-m);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  margin-top: 1rem;
}
.example-box strong { color: var(--coral); font-size: 1.4rem; }

/* ══════════════════════════════════════════
   PROS / CONS
   ══════════════════════════════════════════ */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.4rem; }
@media(max-width:540px){ .proscons { grid-template-columns: 1fr; } }
.pros, .cons { border-radius: var(--radius); padding: 1.25rem; }
.pros { background: var(--green-l); border: 1px solid rgba(22,163,74,.2); }
.cons { background: #fff1f2;         border: 1px solid rgba(220,38,38,.15); }
.pros h3 { color: var(--green); margin-bottom: .75rem; font-size: 1rem; }
.cons h3 { color: var(--red);   margin-bottom: .75rem; font-size: 1rem; }
.pros ul, .cons ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.pros li, .cons li { font-size: .875rem; display: flex; gap: .45rem; color: var(--ink-soft); }

/* ══════════════════════════════════════════
   VS GRID (comparativa)
   ══════════════════════════════════════════ */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.4rem;
}
@media(max-width:540px){ .vs-grid { grid-template-columns: 1fr; } }
.vs-card {
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  border: 1px solid rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.vs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
}
.vs-card.tribbu::before   { background: var(--coral); }
.vs-card.blablacar::before { background: var(--indigo); }
.vs-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .75rem; }
.vs-card.tribbu h3   { color: var(--coral); }
.vs-card.blablacar h3 { color: var(--indigo); }
.vs-card ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.vs-card li { font-size: .875rem; color: var(--ink-soft); display: flex; gap: .45rem; align-items: flex-start; line-height: 1.5; }

/* ══════════════════════════════════════════
   CONCLUSION BOX
   ══════════════════════════════════════════ */
.conclusion-box {
  background: var(--green-l);
  border: 1px solid rgba(22,163,74,.2);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 1.4rem 0;
}
.conclusion-box h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: #14532d;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: .7rem;
}
.conclusion-box p { color: #166534; font-size: .95rem; margin-bottom: .6rem; }

/* ══════════════════════════════════════════
   REFERIDO / CTA BOX
   ══════════════════════════════════════════ */
.referido-box {
  background: linear-gradient(135deg, #F75C5C 0%, #FF8C42 100%);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  color: var(--white);
  margin: 1.5rem 0;
  box-shadow: 0 10px 42px rgba(247,92,92,.28), 0 2px 8px rgba(247,92,92,.14);
  position: relative;
  overflow: hidden;
}
.referido-box::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 280px; height: 280px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  pointer-events: none;
}
.referido-box::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
}
.referido-box > * { position: relative; z-index: 1; }
.referido-box h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: .5rem;
}
.referido-box p { color: rgba(255,255,255,.88); font-size: .92rem; margin-bottom: 1.2rem; }

.code-block {
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  border: 1.5px dashed rgba(255,255,255,.42);
  border-radius: 12px;
  padding: .88rem 1.15rem;
  margin: .88rem auto;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.code-text { font-size: 1.35rem; font-weight: 800; letter-spacing: .12em; color: var(--white); }
.copy-btn {
  background: var(--white);
  color: var(--coral);
  border: none;
  border-radius: var(--radius-sm);
  padding: .45rem .95rem;
  font-weight: 700;
  font-size: .8rem;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  white-space: nowrap;
  font-family: inherit;
}
.copy-btn:hover { opacity: .88; transform: scale(1.04); }
.code-note { font-size: .77rem; color: rgba(255,255,255,.65); margin-top: .5rem; margin-bottom: 1.3rem; }

.dl-btn {
  display: inline-block;
  background: var(--white);
  color: var(--coral);
  font-weight: 800;
  font-size: 1rem;
  padding: .9rem 2.25rem;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0,0,0,.16);
  transition: transform .2s cubic-bezier(.34,1.56,.64,1);
  text-decoration: none;
}
.dl-btn:hover { transform: scale(1.04); text-decoration: none; color: var(--coral); }

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.faq { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  border: 1px solid rgba(0,0,0,.09);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .2s, border-color .2s;
}
.faq-item:has(.faq-q.open) {
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border-color: rgba(247,92,92,.22);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.1rem 1.25rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  transition: background .15s;
  font-family: inherit;
}
.faq-q:hover { background: var(--muted-l); }
.faq-q .arrow {
  width: 22px; height: 22px;
  background: var(--muted-l);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  flex-shrink: 0;
  transition: transform .25s, background .2s;
}
.faq-q.open .arrow { transform: rotate(180deg); background: var(--coral-m); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  font-size: .9rem;
  color: var(--muted);
  padding: 0 1.25rem;
  line-height: 1.68;
}
.faq-a strong { color: var(--ink-soft); }
.faq-a.open { max-height: 500px; padding: .25rem 1.25rem 1.1rem; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  background: var(--ink);
  color: #71717a;
  text-align: center;
  padding: 2.5rem 1.5rem 5rem;
  font-size: .8rem;
  line-height: 1.65;
}
footer a { color: #a1a1aa; transition: color .15s; }
footer a:hover { color: var(--white); text-decoration: none; }

/* ══════════════════════════════════════════
   STICKY BAR
   ══════════════════════════════════════════ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,.08);
  padding: .88rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,.09);
}
@media(max-width:700px){ .sticky-bar { display: flex; } }
.sticky-bar p { font-size: .79rem; color: var(--muted); margin: 0; }
.sticky-bar strong { display: block; font-size: .88rem; color: var(--ink); font-weight: 700; }
.sticky-btn {
  flex-shrink: 0;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  padding: .67rem 1.15rem;
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(247,92,92,.38);
  transition: opacity .15s;
}
.sticky-btn:hover { text-decoration: none; color: var(--white); opacity: .88; }

/* ══════════════════════════════════════════
   FAB (floating action button)
   ══════════════════════════════════════════ */
.fab {
  display: none;
  position: fixed;
  bottom: 1.1rem; right: 1.1rem;
  z-index: 300;
  flex-direction: column;
  align-items: flex-end;
  gap: .4rem;
}
@media(max-width:700px){ .fab { display: flex; } }
.fab-code {
  background: var(--white);
  border: 2px solid var(--coral);
  border-radius: 999px;
  padding: .3rem .9rem;
  font-size: .73rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: .08em;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.fab-btn {
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: .82rem 1.3rem;
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(247,92,92,.48);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
  animation: fabPulse 2.5s ease-in-out infinite;
  font-family: inherit;
}
.fab-btn:hover { text-decoration: none; color: var(--white); }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(247,92,92,.48); }
  50%       { box-shadow: 0 7px 32px rgba(247,92,92,.72); }
}

/* ══════════════════════════════════════════
   MISC COMPONENTS
   ══════════════════════════════════════════ */
.tag {
  display: inline-block;
  background: var(--muted-l);
  color: var(--muted);
  font-size: .7rem;
  font-weight: 600;
  padding: .22rem .65rem;
  border-radius: 999px;
  margin-right: .25rem;
  letter-spacing: .02em;
}

.breadcrumb { font-size: .8rem; color: var(--muted); padding: .88rem 0 0; }
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--coral); text-decoration: none; }

.author-line {
  font-size: .8rem;
  color: #a1a1aa;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 0;
}

/* Sobre mí */
.sobre-mi-wrap {
  background: linear-gradient(135deg, #fff8f8, var(--coral-l));
  border: 1px solid var(--coral-m);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin: 1.5rem 0 0;
}
.avatar-svg { flex-shrink: 0; width: 64px; height: 64px; }
.avatar-svg svg { width: 64px; height: 64px; }
.sobre-mi-body { flex: 1; }
.sobre-mi-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .3rem;
}
.sobre-mi-body p { font-size: .875rem; color: var(--muted); margin-bottom: .75rem; }

/* Badge verificado */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background: var(--green-l);
  color: var(--green);
  font-size: .72rem;
  font-weight: 700;
  padding: .22rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(22,163,74,.2);
  white-space: nowrap;
}

/* Contador */
.counter-box {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  border: 1.5px solid var(--coral-m);
  border-radius: 10px;
  padding: .5rem .9rem;
  font-size: .875rem;
  color: var(--muted);
  box-shadow: 0 2px 8px rgba(247,92,92,.1);
}
.counter-box .counter-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--coral);
  font-variant-numeric: tabular-nums;
  min-width: 3ch;
  text-align: right;
}
.counter-box .euro { font-weight: 900; color: var(--coral); font-size: 1.1rem; }

/* Logo car (footer variant) */
.logo-car {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 8px;
  border: 1.5px solid var(--coral-m);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-car svg { width: 26px; height: 26px; }
