/* =========================================================
   RA Reguladora — folha de estilos
   Paleta: azul institucional (#00498E → #003C74) + dourado do logo
   ========================================================= */

/* ---------- Fontes (auto-hospedadas) ---------- */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/inter-v20-latin-500.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/inter-v20-latin-600.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/inter-v20-latin-700.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/inter-v20-latin-800.woff2") format("woff2"); }

/* ---------- Tokens ---------- */
:root {
  --azul-950: #041F3D;
  --azul-900: #062B52;
  --azul-800: #003C74;
  --azul-700: #00498E;
  --azul-600: #0A5CAD;
  --azul-100: #E3EDF8;
  --dourado-600: #B98A1E;
  --dourado-500: #D9A62E;
  --dourado-300: #EBC569;
  --dourado-100: #FBF3DF;
  --ink-900: #14243A;
  --ink-700: #33455E;
  --ink-500: #5D7189;
  --cinza-100: #F4F7FB;
  --branco: #FFFFFF;
  --borda: #E1E8F1;
  --sombra: 0 10px 30px rgba(6, 43, 82, 0.10);
  --sombra-leve: 0 4px 14px rgba(6, 43, 82, 0.07);
  --raio: 16px;
  --grad-azul: linear-gradient(135deg, var(--azul-700) 0%, var(--azul-800) 100%);
  --altura-header: 82px;
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; overflow-x: clip; }
body {
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink-900);
  background: var(--branco);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--azul-700); text-decoration: none; }
a:hover { text-decoration: none; }
ul { list-style: none; }
.container { width: min(1160px, 92%); margin-inline: auto; }
.ico { width: 1.05em; height: 1.05em; fill: currentColor; flex: none; }
:focus-visible { outline: 3px solid var(--dourado-500); outline-offset: 2px; border-radius: 4px; }

/* seções ancoradas abaixo do header fixo */
section[id] { scroll-margin-top: calc(var(--altura-header) + 12px); }

/* ---------- Animação de entrada ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Topbar ---------- */
.topbar { background: var(--azul-950); color: #C7D6E8; font-size: 0.84rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 12px; }
.topbar-contatos { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-link { color: #C7D6E8; display: inline-flex; align-items: center; gap: 7px; }
.topbar-link:hover { color: var(--dourado-300); }
.topbar-social { color: #C7D6E8; display: inline-flex; padding: 6px; border-radius: 50%; }
.topbar-social:hover { color: var(--dourado-300); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--borda);
  transition: box-shadow 0.25s ease;
}
.header.rolando { box-shadow: var(--sombra-leve); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--altura-header); }
.header-logo img { width: clamp(190px, 24vw, 250px); height: auto; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  color: var(--ink-700); font-weight: 600; font-size: 0.98rem;
  padding: 10px 14px; border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover { color: var(--azul-700); background: var(--azul-100); }
.nav-link.ativo { color: var(--azul-700); background: var(--azul-100); }
.nav-link-cta {
  background: var(--grad-azul); color: var(--branco); margin-left: 8px;
  box-shadow: 0 6px 16px rgba(0, 73, 142, 0.28);
}
.nav-link-cta:hover { background: var(--grad-azul); color: var(--branco); filter: brightness(1.12); }
.nav-link-cta.ativo { color: var(--branco); background: var(--grad-azul); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; width: 26px; height: 3px; border-radius: 3px; background: var(--azul-800); margin: 5px 0; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 15px 28px; border-radius: 12px; border: 0; cursor: pointer;
  transition: transform 0.15s ease, filter 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primario { background: var(--grad-azul); color: var(--branco); box-shadow: 0 8px 22px rgba(0, 60, 116, 0.35); }
.btn-primario:hover { filter: brightness(1.12); }
.btn-vidro { background: rgba(255, 255, 255, 0.14); color: var(--branco); border: 1px solid rgba(255, 255, 255, 0.45); backdrop-filter: blur(4px); }
.btn-vidro:hover { background: rgba(255, 255, 255, 0.24); }
.btn-contorno { background: transparent; color: var(--azul-700); border: 2px solid var(--azul-700); }
.btn-contorno:hover { background: var(--azul-100); }
.btn-largo { width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(78vh, 720px); display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: url("../assets/hero.jpg") center 30% / cover no-repeat;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(4, 31, 61, 0.94) 0%, rgba(0, 60, 116, 0.72) 46%, rgba(0, 73, 142, 0.30) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 96px 0; }
.hero-kicker {
  color: var(--dourado-300); font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; font-size: 0.85rem; margin-bottom: 16px;
}
.hero-kicker::after { content: ""; display: inline-block; width: 54px; height: 2px; background: var(--dourado-500); vertical-align: middle; margin-left: 14px; }
.hero-title {
  color: var(--branco); font-size: clamp(1.9rem, 4.6vw, 3.3rem);
  font-weight: 800; line-height: 1.18; max-width: 21ch;
  text-wrap: balance;
}
.hero-title strong { color: var(--dourado-300); }
.hero-acoes { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-seta {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 1; color: rgba(255, 255, 255, 0.85);
  animation: flutuar 2.2s ease-in-out infinite;
}
.hero-seta svg { width: 30px; height: 30px; fill: currentColor; }
@keyframes flutuar { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Seções ---------- */
.secao { padding: 88px 0; }
.secao-alt { background: var(--cinza-100); }
.secao-kicker {
  color: var(--dourado-600); font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; font-size: 0.8rem; margin-bottom: 8px;
}
.secao-kicker-clara { color: var(--dourado-300); }
.secao-titulo {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; line-height: 1.25;
  color: var(--azul-900); margin-bottom: 34px; max-width: 28ch;
}
.secao-titulo::after { content: ""; display: block; width: 64px; height: 4px; border-radius: 4px; background: var(--dourado-500); margin-top: 14px; }
.secao-titulo-claro { color: var(--branco); }
.secao-escura { background: radial-gradient(120% 130% at 85% 0%, var(--azul-700) 0%, var(--azul-900) 55%, var(--azul-950) 100%); }

/* ---------- Cards genéricos ---------- */
.card {
  background: var(--branco); border: 1px solid var(--borda);
  border-radius: var(--raio); box-shadow: var(--sombra-leve);
  padding: 30px;
}

/* ---------- Quem Somos ---------- */
.quem-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; margin-bottom: 44px; }
.quem-texto p { margin-bottom: 16px; color: var(--ink-700); font-size: 1.05rem; }
.quem-fotos { position: relative; padding-bottom: 56px; padding-right: 56px; }
.quem-foto-1 { border-radius: var(--raio); box-shadow: var(--sombra); width: 100%; }
.quem-foto-2 {
  position: absolute; right: 0; bottom: 0; width: 52%;
  border-radius: var(--raio); box-shadow: var(--sombra);
  border: 5px solid var(--branco);
}
.mvp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mvp-card-largo { grid-column: 1 / -1; }
.mvp-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--dourado-100); color: var(--dourado-600);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.mvp-ico svg { width: 26px; height: 26px; fill: currentColor; }
.mvp-card h3 { color: var(--azul-800); font-size: 1.18rem; margin-bottom: 8px; }
.mvp-card p { color: var(--ink-700); }

/* ---------- Estratégia ---------- */
.estrategia-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.estrategia-foto { position: relative; }
.estrategia-foto img { border-radius: var(--raio); box-shadow: var(--sombra); width: 100%; }
.estrategia-selo {
  position: absolute; left: -18px; bottom: -18px;
  background: var(--grad-azul); color: var(--branco);
  border-radius: 14px; padding: 16px 22px; box-shadow: var(--sombra);
  display: flex; flex-direction: column; line-height: 1.15;
}
.estrategia-selo strong { font-size: 1.7rem; font-weight: 800; color: var(--dourado-300); }
.estrategia-selo span { font-size: 0.82rem; opacity: 0.9; }
.estrategia-texto p { margin-bottom: 16px; color: var(--ink-700); font-size: 1.03rem; }
.etapas-titulo { margin: 46px 0 20px; color: var(--azul-900); font-size: 1.2rem; font-weight: 700; }
.etapas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; counter-reset: etapa; }
.etapa {
  background: var(--branco); border: 1px solid var(--borda); border-radius: 12px;
  padding: 16px 18px; font-weight: 600; color: var(--ink-700); font-size: 0.95rem;
  display: flex; align-items: center; gap: 13px; box-shadow: var(--sombra-leve);
}
.etapa-num {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad-azul); color: var(--dourado-300);
  font-weight: 800; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Serviços ---------- */
.servicos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.servico { transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease; }
.servico:hover { transform: translateY(-5px); box-shadow: var(--sombra); border-color: var(--dourado-300); }
.servico-ico {
  width: 56px; height: 56px; border-radius: 15px;
  background: var(--grad-azul); color: var(--dourado-300);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.servico-ico svg { width: 28px; height: 28px; fill: currentColor; }
.servico h3 { color: var(--azul-800); font-size: 1.22rem; margin-bottom: 10px; }
.servico p { color: var(--ink-700); }

/* ---------- Abrangência ---------- */
.abrangencia-dica { color: #B9CCE1; margin: -16px 0 30px; font-size: 0.96rem; }
.abrangencia-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 40px; align-items: start; }
.mapa-wrap { position: relative; }
.mapa-wrap > img { width: 100%; height: auto; filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35)); }

.ponto {
  position: absolute; transform: translate(-50%, -50%);
  width: 20px; height: 20px; border-radius: 50%;
  border: 0; cursor: pointer; padding: 0;
}
.ponto::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
}
.ponto-ok::before { background: var(--dourado-500); border: 2.5px solid var(--branco); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45); }
.ponto-ok::after {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid rgba(217, 166, 46, 0.75);
  animation: pulso 2s ease-out infinite;
}
.ponto-neg { width: 16px; height: 16px; cursor: default; }
.ponto-neg::before { background: rgba(255, 255, 255, 0.22); border: 2px dashed rgba(255, 255, 255, 0.85); }
@keyframes pulso {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.ponto .ponto-rotulo {
  position: absolute; left: 50%; bottom: calc(100% + 9px); transform: translateX(-50%);
  background: var(--azul-950); color: var(--branco);
  font-size: 0.78rem; font-weight: 600; white-space: nowrap;
  padding: 5px 10px; border-radius: 7px;
  opacity: 0; pointer-events: none; transition: opacity 0.18s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.ponto:hover .ponto-rotulo, .ponto:focus-visible .ponto-rotulo { opacity: 1; }

.abrangencia-listas { display: flex; flex-direction: column; gap: 28px; }
.legenda-bloco { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--raio); padding: 22px; }
.legenda-titulo { color: var(--branco); font-size: 0.98rem; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.ponto-legenda { flex: none; width: 14px; height: 14px; border-radius: 50%; display: inline-block; }
.ponto-legenda-ok { background: var(--dourado-500); border: 2px solid var(--branco); }
.ponto-legenda-neg { background: rgba(255, 255, 255, 0.2); border: 2px dashed rgba(255, 255, 255, 0.85); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 999px;
  background: rgba(255, 255, 255, 0.08); color: var(--branco);
  font-size: 0.85rem; font-weight: 600; font-family: inherit;
  padding: 7px 14px; cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.chip:hover { background: var(--dourado-500); border-color: var(--dourado-500); color: var(--azul-950); }
.chip-neg { cursor: default; opacity: 0.75; border-style: dashed; }
.chip-neg:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.35); color: var(--branco); }

/* ---------- Modal de estado ---------- */
.estado-modal {
  border: 0; border-radius: var(--raio); padding: 0;
  width: min(680px, 92vw); max-height: 82vh;
  box-shadow: 0 30px 80px rgba(4, 31, 61, 0.5);
}
.estado-modal::backdrop { background: rgba(4, 31, 61, 0.6); backdrop-filter: blur(3px); }
.estado-modal-topo {
  position: sticky; top: 0;
  background: var(--grad-azul); color: var(--branco);
  padding: 22px 28px; border-radius: var(--raio) var(--raio) 0 0;
}
.estado-modal-kicker { color: var(--dourado-300); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; font-weight: 700; }
.estado-modal-topo h3 { font-size: 1.4rem; margin-top: 2px; }
.estado-modal-fechar {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255, 255, 255, 0.14); color: var(--branco);
  border: 0; border-radius: 50%; width: 38px; height: 38px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.estado-modal-fechar:hover { background: rgba(255, 255, 255, 0.28); }
.estado-modal-fechar svg { width: 20px; height: 20px; fill: currentColor; }
.estado-modal-corpo { padding: 24px 28px 30px; overflow-y: auto; }
.estado-modal-corpo .base-bloco { margin-bottom: 18px; }
.estado-modal-corpo .base-bloco:last-child { margin-bottom: 0; }
.base-titulo {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dourado-100); color: var(--dourado-600);
  font-weight: 700; font-size: 0.88rem;
  border-radius: 999px; padding: 5px 14px; margin-bottom: 8px;
}
.base-titulo .ico { width: 0.95em; height: 0.95em; }
.base-cidades { color: var(--ink-700); font-size: 0.97rem; }
.estado-nota { background: var(--azul-100); color: var(--azul-800); border-radius: 10px; padding: 12px 16px; font-weight: 600; margin-top: 6px; }

/* ---------- Fale Conosco ---------- */
.fale-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 26px; align-items: start; }
.campo { margin-bottom: 16px; }
.campo label { display: block; font-weight: 600; color: var(--azul-900); margin-bottom: 6px; font-size: 0.94rem; }
.campo input, .campo textarea {
  width: 100%; border: 1.5px solid var(--borda); border-radius: 10px;
  padding: 13px 15px; font: inherit; color: var(--ink-900);
  background: var(--cinza-100);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.campo input:focus, .campo textarea:focus {
  outline: none; border-color: var(--azul-700); background: var(--branco);
  box-shadow: 0 0 0 4px rgba(0, 73, 142, 0.12);
}
.campo textarea { resize: vertical; min-height: 130px; }
.fale-obs { margin-top: 12px; font-size: 0.85rem; color: var(--ink-500); text-align: center; }
.dado-card h3 { color: var(--azul-800); font-size: 1.3rem; margin-bottom: 18px; }
.dados-lista li { display: flex; gap: 14px; margin-bottom: 18px; color: var(--ink-700); }
.dados-lista .ico { margin-top: 5px; color: var(--dourado-600); width: 1.25em; height: 1.25em; }
.dados-lista strong { color: var(--azul-900); }
.dado-card .btn { margin-top: 6px; width: 100%; }
.localizacao-titulo { margin: 44px 0 18px; color: var(--azul-900); font-size: 1.2rem; font-weight: 700; }
.mapa-embed { border-radius: var(--raio); overflow: hidden; box-shadow: var(--sombra-leve); border: 1px solid var(--borda); }
.mapa-embed iframe { display: block; }

/* ---------- Rodapé ---------- */
.rodape { background: var(--azul-950); color: #B9CCE1; }
.rodape-grid { display: grid; grid-template-columns: 1.2fr 1fr 0.8fr; gap: 40px; padding: 60px 0 44px; }
.rodape-marca img { width: 230px; margin-bottom: 14px; }
.rodape-marca p { font-size: 0.95rem; opacity: 0.85; }
.rodape h4 { color: var(--branco); font-size: 1rem; margin-bottom: 14px; }
.rodape-col p { margin-bottom: 8px; font-size: 0.95rem; }
.rodape-col a { color: #B9CCE1; }
.rodape-col a:hover { color: var(--dourado-300); }
.rodape-nav { display: flex; flex-direction: column; gap: 8px; }
.rodape-nav a { color: #B9CCE1; font-size: 0.95rem; }
.rodape-nav a:hover { color: var(--dourado-300); }
.rodape-base { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 18px 0; font-size: 0.85rem; }
.rodape-base p { opacity: 0.75; text-align: center; }

/* ---------- Botão voltar ao topo ---------- */
.topo-btn {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-azul); color: var(--branco); border: 0; cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 60, 116, 0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.2s ease;
}
.topo-btn.visivel { opacity: 1; pointer-events: auto; transform: none; }
.topo-btn:hover { filter: brightness(1.15); }
.topo-btn svg { width: 22px; height: 22px; fill: currentColor; }

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 1024px) {
  .quem-grid, .estrategia-grid { grid-template-columns: 1fr; gap: 36px; }
  .estrategia-foto { max-width: 440px; }
  .abrangencia-grid { grid-template-columns: 1fr; }
  .fale-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --altura-header: 70px; }
  .topbar-inner { justify-content: center; }
  .topbar-social { display: none; }
  .nav {
    position: fixed; inset: calc(var(--altura-header)) 0 auto 0;
    background: var(--branco); border-bottom: 1px solid var(--borda);
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 14px 5%; box-shadow: var(--sombra);
    transform: translateY(-130%); transition: transform 0.28s ease;
    z-index: 55;
  }
  .nav.aberto { transform: none; }
  .nav-link { padding: 14px 16px; font-size: 1.05rem; }
  .nav-link-cta { margin-left: 0; text-align: center; justify-content: center; display: flex; }
  .nav-toggle { display: block; }
  .secao { padding: 64px 0; }
  .hero { min-height: min(68vh, 600px); }
  .hero-inner { padding: 72px 0; }
  .servicos-grid, .mvp-grid { grid-template-columns: 1fr; }
  .mvp-card-largo { grid-column: auto; }
  .estrategia-selo { left: 12px; bottom: -16px; }
  .rodape-grid { grid-template-columns: 1fr; gap: 30px; padding: 44px 0 34px; }
  .ponto { width: 17px; height: 17px; }
  .ponto-neg { width: 14px; height: 14px; }
  .ponto::after { inset: -5px; }
}

@media (max-width: 480px) {
  .topbar { font-size: 0.78rem; }
  .hero-acoes .btn { width: 100%; }
  .estado-modal { width: 96vw; max-height: 88vh; }
  .estado-modal-topo, .estado-modal-corpo { padding-left: 18px; padding-right: 18px; }
}
