/**
 * Embarque Theme — assets/css/main.css
 * CSS principal do tema. Open Sans · Identidade Embarque Oficial.
 * Performance: 90+ PageSpeed Mobile, 95+ Desktop.
 */

/* ─────────────────────────────────────────────────────────────
   VARIÁVEIS GLOBAIS
───────────────────────────────────────────────────────────── */
:root {
  --eo-black:   #0a0a0a;
  --eo-bg:      #05070a;
  --eo-cyan:    #00b4d8;
  --eo-celeste: #5FA9FF;
  --eo-blue:    #0077ff;
  --eo-aero:    #1E4D8F;
  --eo-gold:    #C9A961;
  --eo-white:   #FFFFFF;
  --eo-gray:    #b0c4d8;
  --eo-gray-2:  #7a96b0;
  --eo-border:  rgba(0,180,216,.15);
  --eo-glass:   rgba(5,7,10,.85);
  --header-h:   90px;
  --max-w:      1280px;
  --radius:     12px;
  --font:       'Open Sans', system-ui, sans-serif;
  --ease:       cubic-bezier(.22,.8,.26,.99);
}

/* ─────────────────────────────────────────────────────────────
   RESET MÍNIMO
───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--eo-bg);
  color: var(--eo-white);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--eo-cyan); text-decoration: none; transition: color .2s; }
a:hover { color: var(--eo-white); }

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

ul, ol { list-style: none; }

/* ─────────────────────────────────────────────────────────────
   ACESSIBILIDADE
───────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--eo-cyan);
  color: var(--eo-black);
  padding: 8px 16px;
  font-weight: 700;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ─────────────────────────────────────────────────────────────
   LAYOUT PRINCIPAL
───────────────────────────────────────────────────────────── */
#main-content {
  padding-top: var(--header-h);
  min-height: 70vh;
}

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

.eo-section {
  padding: 80px 0;
}

.eo-section--dark {
  background: var(--eo-black);
}

/* ─────────────────────────────────────────────────────────────
   TIPOGRAFIA
───────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--eo-white);
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1.2em; color: var(--eo-gray); }
p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────────────────────
   BOTÕES
───────────────────────────────────────────────────────────── */
.eo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .25s var(--ease);
  text-decoration: none;
  line-height: 1;
}

.eo-btn--primary {
  background: var(--eo-blue);
  color: var(--eo-white);
  box-shadow: 0 4px 20px rgba(0,119,255,.35);
}
.eo-btn--primary:hover {
  background: var(--eo-cyan);
  color: var(--eo-black);
  box-shadow: 0 6px 30px rgba(0,180,216,.45);
  transform: translateY(-2px);
}

.eo-btn--outline {
  background: transparent;
  color: var(--eo-cyan);
  border: 1.5px solid var(--eo-cyan);
}
.eo-btn--outline:hover {
  background: var(--eo-cyan);
  color: var(--eo-black);
}

.eo-btn--gold {
  background: linear-gradient(135deg, var(--eo-gold), #a88234);
  color: var(--eo-black);
  box-shadow: 0 4px 20px rgba(201,169,97,.4);
}
.eo-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201,169,97,.5);
}

/* ─────────────────────────────────────────────────────────────
   HERO GENÉRICO (páginas internas)
───────────────────────────────────────────────────────────── */
.eo-hero-inner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--eo-black) 0%, #050d1a 100%);
  border-bottom: 1px solid var(--eo-border);
  overflow: hidden;
}

.eo-hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='1' cy='1' r='.5' fill='%2300b4d820'/%3E%3C/svg%3E") repeat;
  opacity: .5;
}

.eo-hero-inner__content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px 60px;
}

.eo-hero-inner__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--eo-cyan);
  border: 1px solid var(--eo-border);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.eo-hero-inner__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.eo-hero-inner__desc {
  font-size: 1.1rem;
  color: var(--eo-gray);
  max-width: 640px;
}

/* ─────────────────────────────────────────────────────────────
   BREADCRUMBS
───────────────────────────────────────────────────────────── */
.eo-breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--eo-border);
  background: rgba(0,0,0,.3);
}

.eo-breadcrumbs__list {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.eo-breadcrumbs__item { display: flex; align-items: center; }
.eo-breadcrumbs__link { font-size: 12px; color: var(--eo-gray); }
.eo-breadcrumbs__link:hover { color: var(--eo-cyan); }
.eo-breadcrumbs__current { font-size: 12px; color: var(--eo-cyan); font-weight: 600; }
.eo-breadcrumbs__sep { font-size: 12px; color: var(--eo-gray-2); }

/* ─────────────────────────────────────────────────────────────
   CONTEÚDO EDITORIAL (page.php / single.php)
───────────────────────────────────────────────────────────── */
.eo-entry {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.eo-entry__header { margin-bottom: 40px; }

.eo-entry__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--eo-gray-2);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.eo-entry__meta a { color: var(--eo-cyan); }

.eo-entry__reading-time {
  background: var(--eo-border);
  padding: 3px 10px;
  border-radius: 4px;
  color: var(--eo-cyan);
  font-size: 11px;
  font-weight: 600;
}

.eo-entry__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 30px 0;
  border: 1px solid var(--eo-border);
}

/* Conteúdo tipografado */
.eo-content h1, .eo-content h2, .eo-content h3,
.eo-content h4, .eo-content h5, .eo-content h6 {
  margin: 2em 0 .75em;
  color: var(--eo-white);
}

.eo-content p    { margin-bottom: 1.4em; color: var(--eo-gray); }
.eo-content ul,
.eo-content ol   { padding-left: 1.5em; margin-bottom: 1.4em; color: var(--eo-gray); }
.eo-content li   { margin-bottom: .4em; }
.eo-content a    { color: var(--eo-cyan); border-bottom: 1px solid rgba(0,180,216,.3); }
.eo-content a:hover { color: var(--eo-white); border-color: transparent; }
.eo-content strong { color: var(--eo-white); font-weight: 700; }
.eo-content em   { color: var(--eo-gray); }
.eo-content blockquote {
  border-left: 3px solid var(--eo-cyan);
  margin: 2em 0;
  padding: 16px 24px;
  background: rgba(0,180,216,.06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--eo-gray);
}
.eo-content code {
  background: rgba(0,180,216,.1);
  color: var(--eo-cyan);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: .9em;
}
.eo-content pre {
  background: rgba(0,0,0,.5);
  border: 1px solid var(--eo-border);
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5em 0;
}
.eo-content img {
  border-radius: 8px;
  border: 1px solid var(--eo-border);
}
.eo-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 14px;
}
.eo-content th {
  background: var(--eo-border);
  color: var(--eo-cyan);
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eo-content td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: var(--eo-gray);
}
.eo-content tr:hover td { background: rgba(0,180,216,.04); }

/* ─────────────────────────────────────────────────────────────
   CARDS DE POST/AERONAVE
───────────────────────────────────────────────────────────── */
.eo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.eo-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--eo-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}

.eo-card:hover {
  transform: translateY(-4px);
  border-color: var(--eo-cyan);
  box-shadow: 0 12px 40px rgba(0,180,216,.15);
}

.eo-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.eo-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.eo-card:hover .eo-card__thumb img { transform: scale(1.06); }

.eo-card__label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--eo-cyan);
  color: var(--eo-black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.eo-card__body { padding: 20px; }
.eo-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--eo-white); line-height: 1.35; }
.eo-card__title a { color: inherit; }
.eo-card__title a:hover { color: var(--eo-cyan); }
.eo-card__excerpt { font-size: 13.5px; color: var(--eo-gray); line-height: 1.6; margin-bottom: 16px; }
.eo-card__meta { font-size: 11.5px; color: var(--eo-gray-2); display: flex; gap: 12px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────
   FICHA TÉCNICA (CPT Aeronaves/Helicópteros)
───────────────────────────────────────────────────────────── */
.eo-specs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.eo-spec {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--eo-border);
  border-radius: 8px;
  padding: 16px 20px;
}

.eo-spec__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--eo-cyan);
  margin-bottom: 4px;
}

.eo-spec__value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--eo-white);
}

/* ─────────────────────────────────────────────────────────────
   BUSCA
───────────────────────────────────────────────────────────── */
.eo-search-form {
  display: flex;
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
}

.eo-search-form input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--eo-border);
  border-right: none;
  color: var(--eo-white);
  padding: 14px 20px;
  font-family: var(--font);
  font-size: 14px;
  border-radius: 8px 0 0 8px;
  outline: none;
  transition: border-color .2s;
}

.eo-search-form input:focus { border-color: var(--eo-cyan); }
.eo-search-form input::placeholder { color: var(--eo-gray-2); }

.eo-search-form button {
  background: var(--eo-blue);
  color: var(--eo-white);
  border: none;
  padding: 0 28px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  transition: background .2s;
}

.eo-search-form button:hover { background: var(--eo-cyan); color: var(--eo-black); }

/* Resultados da busca */
.eo-search-results { padding: 40px 0; }
.eo-search-results__header { margin-bottom: 32px; }
.eo-search-results__count { color: var(--eo-gray); font-size: 14px; }

/* ─────────────────────────────────────────────────────────────
   404
───────────────────────────────────────────────────────────── */
.eo-404 {
  text-align: center;
  padding: 120px 24px;
}

.eo-404__code {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--eo-cyan), var(--eo-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eo-404__title { font-size: 2rem; margin: 20px 0 12px; }
.eo-404__desc { color: var(--eo-gray); max-width: 480px; margin: 0 auto 40px; }

/* ─────────────────────────────────────────────────────────────
   PAGINAÇÃO
───────────────────────────────────────────────────────────── */
.eo-pagination {
  margin: 60px 0;
  display: flex;
  justify-content: center;
}

.eo-pagination ul {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.eo-pagination li a,
.eo-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--eo-border);
  color: var(--eo-gray);
  transition: all .2s;
}

.eo-pagination li a:hover { border-color: var(--eo-cyan); color: var(--eo-cyan); }
.eo-pagination li span.current { background: var(--eo-cyan); color: var(--eo-black); border-color: var(--eo-cyan); }

/* ─────────────────────────────────────────────────────────────
   POSTS RELACIONADOS
───────────────────────────────────────────────────────────── */
.eo-related {
  padding: 60px 0;
  border-top: 1px solid var(--eo-border);
}

.eo-related__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--eo-cyan);
  margin-bottom: 32px;
}

/* ─────────────────────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────────────────────── */
.eo-cta-section {
  background: linear-gradient(135deg, rgba(0,119,255,.12), rgba(0,180,216,.08));
  border: 1px solid var(--eo-border);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px auto;
  max-width: 800px;
}

.eo-cta-section__title { font-size: 2rem; margin-bottom: 12px; }
.eo-cta-section__desc  { color: var(--eo-gray); max-width: 480px; margin: 0 auto 32px; }

/* ─────────────────────────────────────────────────────────────
   WIDGET / SIDEBAR
───────────────────────────────────────────────────────────── */
.eo-sidebar { padding-top: 8px; }

.widget {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--eo-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.widget__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--eo-cyan);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--eo-border);
}

/* ─────────────────────────────────────────────────────────────
   RODAPÉ — estilos do JSON Elementor integrados
───────────────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
    body { background: #0c0e10; font-family: 'Raleway', sans-serif; }
    .ft { background: #0c0e10; width: 100%; }
    .ft-body { display: grid; grid-template-columns: 1fr 1.4fr 1fr 1fr; max-width: 1140px; margin: 0 auto; padding: 52px 60px 40px; gap: 40px; }
    .ft-col { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .ft-col-left { align-items: flex-start; text-align: left; }
    .ft-logo-wrap { margin-bottom: 20px; }
    .ft-logo { display: block; width: 52px; height: auto; }
    .ft-tagline { font-size: 13px; font-weight: 400; color: #c8d8e0; line-height: 1.85; text-align: left; }
    .ft-head { font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #00b8d9; margin-bottom: 18px; }
    .ft-menu { list-style: none; width: 100%; }
    .ft-menu > li { margin-bottom: 2px; }
    .ft-item { display: flex; align-items: center; justify-content: space-between; padding: 4px 0; gap: 6px; }
    .ft-item > a { font-size: 13px; font-weight: 400; color: #c8d8e0; text-decoration: none; transition: color .15s; flex: 1; }
    .ft-item > a:hover { color: #fff; }
    .ft-arrow { font-size: 9px; color: #00b8d9; transition: transform .2s; flex-shrink: 0; line-height: 1; padding: 2px 4px; cursor: pointer; user-select: none; }
    .ft-arrow.open { transform: rotate(90deg); }
    .ft-sub { list-style: none; padding-left: 14px; border-left: 1px solid #1a2e3a; margin: 4px 0 8px; display: none; }
    .ft-sub.open { display: block; }
    .ft-sub > li { margin-bottom: 2px; }
    .ft-sub-item { display: flex; align-items: center; justify-content: space-between; padding: 3px 0; gap: 6px; }
    .ft-sub-item > a { font-size: 11.5px; font-weight: 300; color: #8aaabb; text-decoration: none; transition: color .15s; flex: 1; }
    .ft-sub-item > a:hover { color: #c8d8e0; }
    .ft-sub-arrow { font-size: 8px; color: #00b8d9; transition: transform .2s; flex-shrink: 0; padding: 2px 4px; cursor: pointer; user-select: none; }
    .ft-sub-arrow.open { transform: rotate(90deg); }
    .ft-subsub { list-style: none; padding-left: 12px; border-left: 1px solid #112030; margin: 3px 0 6px; display: none; }
    .ft-subsub.open { display: block; }
    .ft-subsub li a { font-size: 10.5px; font-weight: 300; color: #607888; text-decoration: none; transition: color .15s; display: block; padding: 2px 0; }
    .ft-subsub li a:hover { color: #aac8d8; }
    .ft-link { font-size: 13px; font-weight: 400; color: #c8d8e0; text-decoration: none; transition: color .15s; display: block; padding: 4px 0; }
    .ft-link:hover { color: #fff; }
    .ft-contact { width: 100%; }
    .ft-crow { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
    .ft-cico { width: 32px; height: 32px; flex-shrink: 0; border: 1px solid #0e2333; border-radius: 7px; display: flex; align-items: center; justify-content: center; background: #0a1520; }
    .ft-cico svg { width: 14px; height: 14px; fill: #00b8d9; }
    .ft-ctxt { font-size: 13px; font-weight: 400; color: #c8d8e0; line-height: 1.75; text-align: left; }
    .ft-ctxt a { color: #c8d8e0; text-decoration: none; transition: color .15s; }
    .ft-ctxt a:hover { color: #fff; }
    .ft-social { width: 100%; }
    .ft-srow { margin-bottom: 10px; }
    .ft-srow a { display: flex; align-items: center; gap: 11px; text-decoration: none; }
    .ft-sico { width: 34px; height: 34px; flex-shrink: 0; border: 1px solid #0e2333; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: #0a1520; transition: border-color .15s, background .15s; }
    .ft-srow a:hover .ft-sico { border-color: #00b8d9; background: #0d2535; }
    .ft-sico svg { width: 14px; height: 14px; fill: #00b8d9; }
    .ft-slbl { font-size: 13px; font-weight: 400; color: #c8d8e0; transition: color .15s; }
    .ft-srow a:hover .ft-slbl { color: #fff; }
    .ft-divider { max-width: 1140px; margin: 0 auto; border: none; border-top: 1px solid #131c22; }
    .ft-bases { max-width: 1140px; margin: 0 auto; padding: 13px 60px; display: flex; align-items: center; gap: 18px; border-bottom: 1px solid #0f161c; }
    .ft-blbl { font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #00b8d9; white-space: nowrap; flex-shrink: 0; }
    .ft-blist { display: flex; flex-wrap: wrap; align-items: center; }
    .ft-b { font-size: 11px; font-weight: 300; color: #6a7e8a; white-space: nowrap; transition: color .15s; cursor: default; }
    .ft-b:hover { color: #b0bec5; }
    .ft-sep { color: #2a3a42; margin: 0 8px; font-size: 10px; }
    .ft-bottom { max-width: 1140px; margin: 0 auto; padding: 0 60px; height: 48px; position: relative; display: flex; align-items: center; }
    .ft-copy { font-size: 12px; font-weight: 300; color: #4a5e6a; white-space: nowrap; position: absolute; left: 60px; top: 50%; transform: translateY(-50%); }
    .ft-blinks { display: flex; gap: 26px; position: absolute; right: 60px; top: 50%; transform: translateY(-50%); }
    .ft-blinks a { font-size: 12px; font-weight: 300; color: #4a5e6a; text-decoration: none; transition: color .15s; white-space: nowrap; }
    .ft-blinks a:hover { color: #00b8d9; }

    /* ── RESPONSIVO ── */
    @media (max-width: 1024px) {
      .ft-body { grid-template-columns: 1fr 1fr; padding: 40px 40px 30px; gap: 36px; }
    }

    @media (max-width: 768px) {
      .ft-body { grid-template-columns: 1fr 1fr; padding: 36px 24px 28px; gap: 28px; }
      .ft-col { align-items: flex-start; text-align: left; }
      .ft-bases { padding: 12px 24px; flex-wrap: wrap; gap: 10px; }
      .ft-bottom { padding: 14px 24px; height: auto; position: relative; flex-direction: column; align-items: flex-start; gap: 8px; }
      .ft-copy { position: static; transform: none; }
      .ft-blinks { position: static; transform: none; }
    }

    @media (max-width: 480px) {
      .ft-body { grid-template-columns: 1fr; padding: 32px 20px 24px; gap: 28px; }
      .ft-logo { width: 44px; }
      .ft-tagline { font-size: 12px; }
      .ft-head { font-size: 9px; }
      .ft-item > a, .ft-link { font-size: 14px; }
      .ft-sub-item > a { font-size: 12px; }
      .ft-subsub li a { font-size: 11px; }
      .ft-ctxt { font-size: 12px; }
      .ft-slbl { font-size: 13px; }
      .ft-bases { padding: 12px 20px; }
      .ft-blbl { font-size: 8px; }
      .ft-b { font-size: 11px; }
      .ft-bottom { padding: 14px 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
      .ft-copy { position: static; transform: none; font-size: 11px; }
      .ft-blinks { position: static; transform: none; gap: 16px; }
      .ft-blinks a { font-size: 11px; }
      .ft-col { align-items: flex-start; text-align: left; }
    }
/* ─────────────────────────────────────────────────────────────
   RESPONSIVO
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .eo-grid { grid-template-columns: 1fr; }
  .eo-specs { grid-template-columns: 1fr 1fr; }
  .eo-entry { padding: 40px 16px; }
  .eo-section { padding: 50px 0; }
  .eo-cta-section { padding: 40px 20px; margin: 40px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    transition-duration: .001s !important;
  }
}
