/* ==========================================================================
   Trebiluna — capa visual
   Hoja de estilos propia del sitio botoysandgifts.com
   Prefijo de clases: tbn_
   ========================================================================== */

:root {
  --tbn-ink: #17202e;
  --tbn-deep: #23406e;
  --tbn-deep-soft: #35578c;
  --tbn-berry: #b23a48;
  --tbn-berry-dark: #932f3b;
  --tbn-amber: #e4761f;
  --tbn-leaf: #2f7d5e;
  --tbn-cream: #fff7ee;
  --tbn-sand: #f6ead9;
  --tbn-paper: #ffffff;
  --tbn-muted: #5c6675;
  --tbn-line: #e7dccf;
  --tbn-shadow: 0 18px 42px rgba(35, 64, 110, .10);
  --tbn-shadow-sm: 0 6px 18px rgba(35, 64, 110, .08);
  --tbn-radius: 18px;
  --tbn-radius-lg: 28px;
  --tbn-pill: 999px;
  --tbn-display: "Baloo 2", "Trebuchet MS", sans-serif;
  --tbn-body: "Karla", "Segoe UI", Arial, sans-serif;
  --tbn-wrap: 1140px;
}

/* --------------------------------------------------------------- base --- */

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--tbn-cream);
  color: var(--tbn-ink);
  font-family: var(--tbn-body);
  font-size: 1.05rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--tbn-display);
  color: var(--tbn-deep);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 .6em;
  font-weight: 700;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.1rem; }

a {
  color: var(--tbn-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}

a:hover { color: var(--tbn-berry); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--tbn-amber);
  outline-offset: 2px;
  border-radius: 4px;
}

img { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 1.1rem 1.15rem; padding: 0; }
li { margin-bottom: .45rem; }

strong { font-weight: 700; color: var(--tbn-ink); }

.tbn_wrap {
  width: 100%;
  max-width: var(--tbn-wrap);
  margin: 0 auto;
  padding: 0 22px;
  box-sizing: border-box;
}

.tbn_skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--tbn-deep);
  color: #fff;
  padding: 12px 18px;
  z-index: 200;
  border-radius: 0 0 12px 0;
}

.tbn_skip:focus {
  left: 0;
  color: #fff;
}

/* ------------------------------------------------------------- cabecera --- */

.tbn_top {
  background: var(--tbn-paper);
  border-bottom: 1px solid var(--tbn-line);
  position: sticky;
  top: 0;
  z-index: 90;
}

.tbn_top_line {
  background: var(--tbn-deep);
  color: #f3f6fb;
  font-size: .88rem;
  letter-spacing: .01em;
}

.tbn_top_line .tbn_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 26px;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.tbn_top_line a {
  color: #ffe6cf;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.tbn_top_line a:hover { color: #fff; text-decoration: underline; }

.tbn_top_links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 22px;
}

.tbn_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}

.tbn_brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.tbn_brand_mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.tbn_brand_txt { display: flex; flex-direction: column; line-height: 1.1; }

.tbn_brand_name {
  font-family: var(--tbn-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--tbn-deep);
}

.tbn_brand_sub {
  font-size: .74rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--tbn-amber);
  font-weight: 700;
}

.tbn_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tbn_nav li { margin: 0; }

.tbn_nav a {
  display: block;
  padding: 10px 13px;
  border-radius: var(--tbn-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: .98rem;
  color: var(--tbn-ink);
}

.tbn_nav a:hover { background: var(--tbn-sand); color: var(--tbn-deep); }

.tbn_nav a[data-aqui="si"] {
  background: var(--tbn-deep);
  color: #fff;
}

.tbn_cta_top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tbn-berry);
  color: #fff;
  border-radius: var(--tbn-pill);
  padding: 12px 22px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--tbn-shadow-sm);
  transition: background .2s ease, transform .2s ease;
}

.tbn_cta_top:hover {
  background: var(--tbn-berry-dark);
  color: #fff;
  transform: translateY(-1px);
}

.tbn_burger {
  display: none;
  background: var(--tbn-sand);
  border: 1px solid var(--tbn-line);
  border-radius: 12px;
  width: 48px;
  height: 46px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.tbn_burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tbn-deep);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

.tbn_burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tbn_burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.tbn_burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------- hero --- */

.tbn_hero {
  background:
    radial-gradient(circle at 88% 12%, rgba(228, 118, 31, .16), transparent 42%),
    radial-gradient(circle at 6% 84%, rgba(47, 125, 94, .14), transparent 46%),
    var(--tbn-cream);
  padding: 62px 0 70px;
  border-bottom: 1px solid var(--tbn-line);
}

.tbn_hero_grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.tbn_kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--tbn-paper);
  border: 1px solid var(--tbn-line);
  color: var(--tbn-leaf);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--tbn-pill);
  margin-bottom: 20px;
}

.tbn_hero h1 { margin-bottom: .45em; }

.tbn_lead {
  font-size: 1.2rem;
  color: var(--tbn-muted);
  max-width: 34em;
}

.tbn_btn_row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.tbn_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--tbn-pill);
  padding: 14px 28px;
  font-family: var(--tbn-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.tbn_btn_main {
  background: var(--tbn-berry);
  color: #fff;
  box-shadow: var(--tbn-shadow-sm);
}

.tbn_btn_main:hover { background: var(--tbn-berry-dark); color: #fff; transform: translateY(-2px); }

.tbn_btn_ghost {
  background: transparent;
  color: var(--tbn-deep);
  border-color: var(--tbn-deep);
}

.tbn_btn_ghost:hover { background: var(--tbn-deep); color: #fff; }

.tbn_btn_leaf {
  background: var(--tbn-leaf);
  color: #fff;
}

.tbn_btn_leaf:hover { background: #24634a; color: #fff; transform: translateY(-2px); }

.tbn_hero_art {
  position: relative;
  background: var(--tbn-paper);
  border: 1px solid var(--tbn-line);
  border-radius: var(--tbn-radius-lg);
  padding: 18px;
  box-shadow: var(--tbn-shadow);
}

.tbn_hero_art img { border-radius: var(--tbn-radius); width: 100%; }

.tbn_hero_tag {
  position: absolute;
  right: -14px;
  bottom: 26px;
  background: var(--tbn-amber);
  color: #2a1600;
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 18px;
  border-radius: var(--tbn-pill);
  box-shadow: var(--tbn-shadow-sm);
}

.tbn_facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px dashed var(--tbn-line);
}

.tbn_fact strong {
  display: block;
  font-family: var(--tbn-display);
  font-size: 1.7rem;
  color: var(--tbn-berry);
  line-height: 1.1;
}

.tbn_fact span { font-size: .92rem; color: var(--tbn-muted); }

/* ------------------------------------------------------------- secciones --- */

.tbn_sec { padding: 66px 0; }
.tbn_sec_paper { background: var(--tbn-paper); border-top: 1px solid var(--tbn-line); border-bottom: 1px solid var(--tbn-line); }
.tbn_sec_sand { background: var(--tbn-sand); border-top: 1px solid var(--tbn-line); border-bottom: 1px solid var(--tbn-line); }

.tbn_sec_head { max-width: 46em; margin-bottom: 38px; }
.tbn_sec_head.tbn_centro { margin-left: auto; margin-right: auto; text-align: center; }

.tbn_eyebrow {
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--tbn-amber);
  margin-bottom: 10px;
}

.tbn_grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tbn_grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.tbn_grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.tbn_card {
  background: var(--tbn-paper);
  border: 1px solid var(--tbn-line);
  border-radius: var(--tbn-radius);
  padding: 26px 24px;
  box-shadow: var(--tbn-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}

.tbn_card:hover { transform: translateY(-3px); box-shadow: var(--tbn-shadow); }

.tbn_card h3 { margin-bottom: .4em; }
.tbn_card p:last-child { margin-bottom: 0; }

.tbn_icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--tbn-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tbn_icon svg { width: 28px; height: 28px; }

.tbn_icon_leaf { background: rgba(47, 125, 94, .12); }
.tbn_icon_berry { background: rgba(178, 58, 72, .10); }
.tbn_icon_deep { background: rgba(35, 64, 110, .10); }

/* pasos numerados */

.tbn_pasos { counter-reset: paso; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.tbn_paso {
  background: var(--tbn-paper);
  border: 1px solid var(--tbn-line);
  border-radius: var(--tbn-radius);
  padding: 46px 22px 24px;
  position: relative;
}

.tbn_paso::before {
  counter-increment: paso;
  content: counter(paso);
  position: absolute;
  top: -18px;
  left: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tbn-deep);
  color: #fff;
  font-family: var(--tbn-display);
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tbn_paso h3 { font-size: 1.15rem; }
.tbn_paso p { margin-bottom: 0; font-size: .98rem; color: var(--tbn-muted); }

/* fichas de colección */

.tbn_ficha {
  background: var(--tbn-paper);
  border: 1px solid var(--tbn-line);
  border-radius: var(--tbn-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--tbn-shadow-sm);
}

.tbn_ficha_img { background: var(--tbn-sand); }
.tbn_ficha_img img { width: 100%; }

.tbn_ficha_body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }

.tbn_edad {
  align-self: flex-start;
  background: rgba(47, 125, 94, .12);
  color: #1f5a43;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--tbn-pill);
  margin-bottom: 12px;
}

.tbn_ficha_body h3 { font-size: 1.22rem; }
.tbn_ficha_body p { font-size: .97rem; color: var(--tbn-muted); }

.tbn_lista_check { list-style: none; margin: 0 0 18px; padding: 0; }

.tbn_lista_check li {
  position: relative;
  padding-left: 26px;
  font-size: .95rem;
  color: var(--tbn-ink);
}

.tbn_lista_check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--tbn-amber);
}

.tbn_precio {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--tbn-line);
  font-family: var(--tbn-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tbn-deep);
}

.tbn_precio small { display: block; font-family: var(--tbn-body); font-size: .82rem; font-weight: 400; color: var(--tbn-muted); }

/* filtro por edad */

.tbn_filtro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tbn_filtro button {
  border: 2px solid var(--tbn-line);
  background: var(--tbn-paper);
  color: var(--tbn-ink);
  border-radius: var(--tbn-pill);
  padding: 10px 20px;
  font-family: var(--tbn-body);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.tbn_filtro button:hover { border-color: var(--tbn-deep); }

.tbn_filtro button[aria-pressed="true"] {
  background: var(--tbn-deep);
  border-color: var(--tbn-deep);
  color: #fff;
}

/* testimonio */

.tbn_voz {
  background: var(--tbn-deep);
  color: #eef2f8;
  border-radius: var(--tbn-radius-lg);
  padding: 42px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}

.tbn_voz_foto {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--tbn-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tbn-display);
  font-size: 2rem;
  font-weight: 700;
  color: #2a1600;
  flex-shrink: 0;
}

.tbn_voz blockquote {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.7;
  font-style: italic;
}

.tbn_voz cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 700;
  color: #ffd9b3;
  font-size: .98rem;
}

/* llamada final */

.tbn_llamada {
  background: linear-gradient(135deg, var(--tbn-berry), #8f2b38);
  color: #fff;
  border-radius: var(--tbn-radius-lg);
  padding: 48px 46px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 30px;
  align-items: center;
}

.tbn_llamada h2 { color: #fff; margin-bottom: .3em; }
.tbn_llamada p { margin-bottom: 0; color: #ffe4e7; }

.tbn_llamada .tbn_btn_main { background: #fff; color: var(--tbn-berry-dark); }
.tbn_llamada .tbn_btn_main:hover { background: #ffe9d6; color: var(--tbn-berry-dark); }

/* --------------------------------------------------------------- páginas --- */

.tbn_encabezado {
  background: var(--tbn-deep);
  color: #eef2f8;
  padding: 52px 0 56px;
}

.tbn_encabezado h1 { color: #fff; margin-bottom: .35em; }
.tbn_encabezado p { color: #cfdaea; max-width: 46em; margin-bottom: 0; font-size: 1.1rem; }

.tbn_miga {
  font-size: .88rem;
  color: #b9c8de;
  margin-bottom: 16px;
}

.tbn_miga a { color: #ffd9b3; text-decoration: none; }
.tbn_miga a:hover { text-decoration: underline; color: #fff; }

.tbn_articulo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: start;
}

.tbn_texto { background: var(--tbn-paper); border: 1px solid var(--tbn-line); border-radius: var(--tbn-radius); padding: 38px 40px; }
.tbn_texto h2 { margin-top: 1.6em; }
.tbn_texto h2:first-child { margin-top: 0; }
.tbn_texto h3 { margin-top: 1.4em; }
.tbn_texto img { border-radius: var(--tbn-radius); margin: 6px 0 26px; }

.tbn_dato {
  background: var(--tbn-sand);
  border-left: 5px solid var(--tbn-amber);
  border-radius: 0 14px 14px 0;
  padding: 20px 24px;
  margin: 26px 0;
}

.tbn_dato p:last-child { margin-bottom: 0; }
.tbn_dato strong { color: var(--tbn-deep); }

.tbn_tabla { width: 100%; border-collapse: collapse; margin: 24px 0 28px; font-size: .97rem; }
.tbn_tabla th, .tbn_tabla td { border: 1px solid var(--tbn-line); padding: 11px 14px; text-align: left; vertical-align: top; }
.tbn_tabla th { background: var(--tbn-sand); font-family: var(--tbn-display); color: var(--tbn-deep); font-weight: 700; }
.tbn_tabla caption { caption-side: bottom; font-size: .86rem; color: var(--tbn-muted); padding-top: 10px; text-align: left; }

.tbn_aside { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 20px; }

.tbn_panel {
  background: var(--tbn-paper);
  border: 1px solid var(--tbn-line);
  border-radius: var(--tbn-radius);
  padding: 24px;
}

.tbn_panel h3 { font-size: 1.12rem; }
.tbn_panel ul { list-style: none; margin: 0; padding: 0; }
.tbn_panel li { margin-bottom: 10px; font-size: .96rem; }
.tbn_panel li:last-child { margin-bottom: 0; }
.tbn_panel a { text-decoration: none; font-weight: 600; }
.tbn_panel a:hover { text-decoration: underline; }

.tbn_panel_deep { background: var(--tbn-deep); color: #dfe7f2; border-color: var(--tbn-deep); }
.tbn_panel_deep h3 { color: #fff; }
.tbn_panel_deep a { color: #ffd9b3; }

.tbn_meta_art {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: .9rem;
  color: var(--tbn-muted);
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--tbn-line);
}

/* tarjetas de artículo */

.tbn_post {
  background: var(--tbn-paper);
  border: 1px solid var(--tbn-line);
  border-radius: var(--tbn-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--tbn-shadow-sm);
}

.tbn_post h3 { font-size: 1.18rem; margin-bottom: .35em; }
.tbn_post p { font-size: .96rem; color: var(--tbn-muted); }

.tbn_post_link {
  margin-top: auto;
  font-weight: 700;
  text-decoration: none;
  color: var(--tbn-berry);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.tbn_post_link:hover { color: var(--tbn-berry-dark); text-decoration: underline; }

/* preguntas */

.tbn_faq { border: 1px solid var(--tbn-line); border-radius: var(--tbn-radius); background: var(--tbn-paper); overflow: hidden; }
.tbn_faq details { border-bottom: 1px solid var(--tbn-line); }
.tbn_faq details:last-child { border-bottom: 0; }

.tbn_faq summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--tbn-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--tbn-deep);
  list-style: none;
  position: relative;
  padding-right: 56px;
}

.tbn_faq summary::-webkit-details-marker { display: none; }

.tbn_faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--tbn-amber);
  line-height: 1;
}

.tbn_faq details[open] summary::after { content: "–"; }
.tbn_faq .tbn_faq_body { padding: 0 24px 22px; color: var(--tbn-muted); }
.tbn_faq .tbn_faq_body p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------ formulario --- */

.tbn_form_grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: start; }

.tbn_form_box {
  background: var(--tbn-paper);
  border: 1px solid var(--tbn-line);
  border-radius: var(--tbn-radius-lg);
  padding: 34px 36px;
  box-shadow: var(--tbn-shadow);
}

.tbn_campo_fila { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tbn_campo { margin-bottom: 18px; display: flex; flex-direction: column; }

.tbn_campo label {
  font-weight: 700;
  font-size: .93rem;
  margin-bottom: 7px;
  color: var(--tbn-ink);
}

.tbn_campo input,
.tbn_campo select,
.tbn_campo textarea {
  font-family: var(--tbn-body);
  font-size: 1rem;
  color: var(--tbn-ink);
  background: var(--tbn-cream);
  border: 2px solid var(--tbn-line);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  transition: border-color .2s ease, background .2s ease;
}

.tbn_campo textarea { min-height: 132px; resize: vertical; line-height: 1.6; }

.tbn_campo input:focus,
.tbn_campo select:focus,
.tbn_campo textarea:focus { border-color: var(--tbn-deep); background: var(--tbn-paper); }

.tbn_ayuda { font-size: .85rem; color: var(--tbn-muted); margin-top: 6px; }

.tbn_acepto {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--tbn-sand);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 6px 0 22px;
  font-size: .92rem;
  line-height: 1.6;
}

.tbn_acepto input { width: 22px; height: 22px; margin-top: 2px; flex-shrink: 0; accent-color: var(--tbn-berry); }

.tbn_datos_lista { list-style: none; margin: 0; padding: 0; }

.tbn_datos_lista li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--tbn-line);
}

.tbn_datos_lista li:last-child { border-bottom: 0; }

.tbn_datos_lista .tbn_icon { width: 44px; height: 44px; border-radius: 13px; margin-bottom: 0; flex-shrink: 0; }
.tbn_datos_lista .tbn_icon svg { width: 22px; height: 22px; }
.tbn_datos_lista strong { display: block; font-family: var(--tbn-display); color: var(--tbn-deep); font-size: 1.05rem; }
.tbn_datos_lista span, .tbn_datos_lista a { font-size: .97rem; color: var(--tbn-muted); }
.tbn_datos_lista a { text-decoration: none; }
.tbn_datos_lista a:hover { text-decoration: underline; color: var(--tbn-berry); }

/* gracias */

.tbn_gracias {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--tbn-paper);
  border: 1px solid var(--tbn-line);
  border-radius: var(--tbn-radius-lg);
  padding: 54px 44px;
  box-shadow: var(--tbn-shadow);
}

.tbn_gracias .tbn_sello {
  width: 92px;
  height: 92px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(47, 125, 94, .12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tbn_gracias .tbn_sello svg { width: 46px; height: 46px; }
.tbn_gracias .tbn_btn_row { justify-content: center; }

/* ---------------------------------------------------------------- legal --- */

.tbn_legal { background: var(--tbn-paper); border: 1px solid var(--tbn-line); border-radius: var(--tbn-radius); padding: 40px 44px; max-width: 900px; margin: 0 auto; }
.tbn_legal h2 { font-size: 1.5rem; margin-top: 1.8em; }
.tbn_legal h2:first-of-type { margin-top: 0; }
.tbn_legal h3 { font-size: 1.15rem; }
.tbn_legal .tbn_actualizado { font-size: .92rem; color: var(--tbn-muted); border-bottom: 1px solid var(--tbn-line); padding-bottom: 16px; margin-bottom: 26px; }

/* ------------------------------------------------------------------ pie --- */

.tbn_pie {
  background: var(--tbn-ink);
  color: #c3cbd8;
  padding: 56px 0 26px;
  font-size: .96rem;
}

.tbn_pie_grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; }

.tbn_pie h4 {
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: .02em;
  margin-bottom: 16px;
}

.tbn_pie ul { list-style: none; margin: 0; padding: 0; }
.tbn_pie li { margin-bottom: 9px; }
.tbn_pie a { color: #c3cbd8; text-decoration: none; }
.tbn_pie a:hover { color: #ffd9b3; text-decoration: underline; }

.tbn_pie_brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tbn_pie_brand svg { width: 46px; height: 46px; }
.tbn_pie_brand span { font-family: var(--tbn-display); font-size: 1.4rem; font-weight: 800; color: #fff; }

.tbn_pie_nota { color: #8f9aac; font-size: .92rem; max-width: 30em; }

.tbn_pie_bajo {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid #2b3648;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  color: #8f9aac;
  font-size: .9rem;
}

/* ------------------------------------------------------------ responsive --- */

@media (max-width: 980px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }

  .tbn_burger { display: flex; }

  .tbn_nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tbn-paper);
    border-bottom: 1px solid var(--tbn-line);
    box-shadow: var(--tbn-shadow);
    padding: 12px 22px 20px;
  }

  .tbn_nav[data-abierto="si"] { display: block; }
  .tbn_nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .tbn_nav a { padding: 13px 14px; border-radius: 12px; }

  .tbn_bar { position: relative; flex-wrap: wrap; }
  .tbn_cta_top { display: none; }

  .tbn_hero_grid,
  .tbn_grid2,
  .tbn_articulo,
  .tbn_form_grid { grid-template-columns: 1fr; }

  .tbn_grid3 { grid-template-columns: repeat(2, 1fr); }
  .tbn_grid4 { grid-template-columns: repeat(2, 1fr); }
  .tbn_pasos { grid-template-columns: repeat(2, 1fr); }
  .tbn_pie_grid { grid-template-columns: repeat(2, 1fr); }
  .tbn_aside { position: static; }
  .tbn_llamada { grid-template-columns: 1fr; }
  .tbn_hero_art { order: -1; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.45rem; }

  .tbn_sec { padding: 46px 0; }
  .tbn_hero { padding: 40px 0 48px; }
  .tbn_grid3, .tbn_grid4, .tbn_pasos, .tbn_pie_grid, .tbn_campo_fila { grid-template-columns: 1fr; }
  .tbn_voz { grid-template-columns: 1fr; padding: 30px 26px; text-align: left; }
  .tbn_llamada { padding: 32px 26px; }
  .tbn_texto, .tbn_legal, .tbn_form_box, .tbn_gracias { padding: 26px 22px; }
  .tbn_top_line .tbn_wrap { justify-content: flex-start; }
  .tbn_hero_tag { right: 10px; bottom: 10px; }
}

@media print {
  .tbn_top, .tbn_pie, .tbn_llamada, .tbn_burger { display: none; }
  body { background: #fff; }
}
