/* ==========================================================================
   RMS Global Commerce — rmsglobalcommerce.com
   ========================================================================== */

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

:root {
  /* Cor */
  --ink:        #0b1220;   /* texto principal, quase-preto azulado */
  --ink-soft:   #56637a;   /* corpo de texto, bullets */
  --paper:      #ffffff;
  --surface:    #f4f7f9;   /* fundos alternados */
  --line:       #dfe6ec;   /* bordas */
  --night:      #0b1a2a;   /* seções escuras — azul-marinho, não preto */
  --night-2:    #14283d;

  /* AÇÃO — todo CTA usa esta cor, e nada mais usa.
     Teal, não o dourado do outro projeto: empresa diferente, identidade diferente.
     O botão põe texto --ink por cima, então a cor precisa ser clara o bastante:
     #14b8a6 com #0b1220 dá ~7:1 de contraste. */
  --action:       #14b8a6;
  --action-dark:  #0d9488;   /* hover, e texto de destaque sobre branco */
  --action-soft:  #effcf9;

  --urgent:     #e5484d;   /* urgência, "Dia N", escassez */
  --go:         #17a673;   /* confirmação, checks */

  /* Métrica */
  --w-read:     780px;     /* largura de leitura */
  --w-wide:     1120px;    /* grades largas */
  --r:          14px;      /* raio padrão */

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Archivo', var(--sans);
}

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--action); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--action);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { max-width: var(--w-read); margin-inline: auto; padding-inline: 22px; }
.wrap--wide { max-width: var(--w-wide); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 20px; z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ===== Tipografia ===== */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }

p { text-wrap: pretty; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--action-dark);
}

.lede { font-size: 1.1rem; color: var(--ink-soft); }

.section-head { text-align: center; margin-bottom: 44px; }
.section-head p { color: var(--ink-soft); margin-top: 12px; }

/* ===== Botões ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  padding: 19px 38px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn--primary {
  background: var(--action);
  color: var(--ink);
  box-shadow: 0 6px 20px -6px rgba(20, 184, 166, 0.75);
}
.btn--primary:hover {
  background: var(--action-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(20, 184, 166, 0.9);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover { border-color: var(--action); color: var(--action); }

.btn--block { display: flex; width: 100%; }

.btn__note {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-top: 12px;
}

.cta-band {
  text-align: center;
  padding: 40px 22px;
}
.cta-band .btn { max-width: 460px; width: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===== Barra de anúncio ===== */

.topbar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 11px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.topbar strong { color: var(--action); }

/* ===== Hero ===== */

.hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(20,184,166,0.14), transparent 70%),
    var(--paper);
  padding: 52px 0 8px;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.brand svg { flex-shrink: 0; }

.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--action-dark); }

.hero__sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 32px;
}

.hero__media {
  margin: 0 auto 34px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(13,17,23,0.4);
  max-width: 720px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 26px;
}
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust svg { color: var(--go); flex-shrink: 0; }

/* ===== Ancoragem de preço ===== */

.anchor {
  text-align: center;
  padding: 46px 22px;
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.anchor__was {
  font-size: 1.05rem;
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: var(--urgent);
  text-decoration-thickness: 2px;
}
.anchor__now {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 6px 0 4px;
}
.anchor__now span { color: var(--action-dark); }
.anchor__note { font-size: 0.92rem; color: var(--ink-soft); }

/* ===== Contador ===== */

.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.countdown__cell {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 6px;
  min-width: 74px;
}
.countdown__num {
  display: block;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__lbl {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 5px;
}

/* ===== Dor / dúvida ===== */

.pain { padding: 72px 0; }
.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.pain__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px;
}
.pain__card h3 { font-size: 1.05rem; margin-bottom: 9px; }
.pain__card p { font-size: 0.94rem; color: var(--ink-soft); }

/* ===== O método (sem rosto, sem instrutor) ===== */

.method {
  background: var(--night);
  color: #fff;
  padding: 76px 0;
}
.method h2 { color: #fff; }

.method__body p {
  color: rgba(255,255,255,0.76);
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.method__body strong { color: #fff; }

.method blockquote {
  border-left: 3px solid var(--action);
  padding: 6px 0 6px 24px;
  margin: 30px 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
  text-wrap: balance;
}

.method__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 22px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.method__pillar b {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--action);
  margin-bottom: 6px;
}
.method__pillar span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
}

/* ===== Currículo ===== */

.curriculum { padding: 76px 0; }

.day {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.day:last-child { border-bottom: none; }

.day__media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 16 / 9;
  container-type: inline-size;
}
.day__media img { width: 100%; height: 100%; object-fit: cover; }

/* Texto grande sobre a foto — feito em CSS, não queimado na imagem.
   Fica nítido em qualquer tela, é editável e não pesa nada. */
.day__media[data-label]::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 62%;
  background: linear-gradient(to top, rgba(6,8,12,0.88), rgba(6,8,12,0.35) 45%, transparent);
}
.day__media[data-label]::after {
  content: attr(data-label);
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 5%;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15cqw;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}

.day__tag {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--urgent);
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.day h3 { margin-bottom: 12px; }

.day__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 7px;
  font-size: 0.93rem;
  color: var(--ink-soft);
}
.day__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--action);
}
.day__list li strong { color: var(--ink); font-weight: 600; }

@media (max-width: 720px) {
  .day { grid-template-columns: 1fr; gap: 16px; padding: 22px 0; }
}

/* ===== Prova social ===== */

.proof { background: var(--night); color: #fff; padding: 76px 0; }
.proof h2 { color: #fff; }
.proof .section-head p { color: rgba(255,255,255,0.65); }

.proof__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.quote {
  background: var(--night-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 26px 24px;
}
.quote p { font-size: 0.96rem; color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--night);
  border: 1px solid rgba(255,255,255,0.16);
  flex-shrink: 0;
  object-fit: cover;
}
.quote__name { font-weight: 700; font-size: 0.9rem; }
.quote__role { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.quote__stars { color: var(--action); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }

/* Bloco de transparência, no lugar dos depoimentos enquanto não há alunos */
.honest p {
  color: rgba(255,255,255,0.78);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 26px;
}
.honest em { color: #fff; font-style: normal; font-weight: 600; }

.honest__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.honest__item {
  background: var(--night-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 24px 22px;
}
.honest__item b {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--action);
  margin-bottom: 8px;
}
.honest__item span {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.66);
  line-height: 1.6;
}
.honest__close {
  margin-bottom: 0 !important;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 0.96rem !important;
}

/* ===== Para quem é / não é ===== */

.fit { padding: 76px 0; }
.fit__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.fit__card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px;
}
.fit__card--yes { background: var(--paper); border-color: var(--go); }
.fit__card--no  { background: var(--surface); }
.fit__card h3 { margin-bottom: 18px; }

.fit__card li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 13px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.fit__card li::before {
  position: absolute;
  left: 0; top: -1px;
  font-weight: 800;
  font-size: 1rem;
}
.fit__card--yes li::before { content: '✓'; color: var(--go); }
.fit__card--no  li::before { content: '✕'; color: var(--urgent); }

/* ===== Preços ===== */

.pricing {
  background: var(--surface);
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  align-items: start;
}

/* Cinco planos: cards mais estreitos e tipografia proporcional,
   para caber sem virar uma coluna gigante no desktop. */
.plans--five {
  grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
  gap: 16px;
}
.plans--five .plan { padding: 26px 20px; }
.plans--five .plan__price { font-size: 2.5rem; }
.plans--five .plan__price sup { font-size: 1.1rem; top: -0.9rem; }
.plans--five .plan__for { font-size: 0.87rem; }
.plans--five .plan__feats li { font-size: 0.84rem; padding-left: 22px; }
.plans--five .btn { padding: 15px 18px; font-size: 0.95rem; }

@media (max-width: 1180px) {
  .plans--five { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

.plan {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.plan:hover {
  border-color: var(--action);
  box-shadow: 0 16px 40px -18px rgba(13,17,23,0.28);
  transform: translateY(-3px);
}

.plan--best {
  border-color: var(--action);
  box-shadow: 0 16px 44px -16px rgba(20,184,166,0.5);
}

.plan__flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--action);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan__tier {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.plan__price {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 8px 0 2px;
}
.plan__price sup { font-size: 1.3rem; top: -1.1rem; }
.plan__once { font-size: 0.84rem; color: var(--ink-soft); }
.plan__for {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 16px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.plan__feats { flex: 1; margin-bottom: 24px; }
.plan__feats li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.plan__feats li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--go);
  font-weight: 800;
}
.plan__feats li strong { color: var(--ink); font-weight: 600; }

.guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 620px;
  margin: 44px auto 0;
  padding: 24px 26px;
  background: var(--action-soft);
  border: 1px solid rgba(20,184,166,0.4);
  border-radius: var(--r);
}
.guarantee svg { flex-shrink: 0; color: var(--action-dark); }
.guarantee h4 { font-size: 1.02rem; margin-bottom: 5px; }
.guarantee p { font-size: 0.89rem; color: var(--ink-soft); }

@media (max-width: 640px) {
  .guarantee { flex-direction: column; text-align: center; gap: 14px; }
}

/* ===== FAQ ===== */

.faq { padding: 76px 0; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.03rem;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  flex-shrink: 0;
  width: 11px; height: 11px;
  border-right: 2.5px solid var(--action-dark);
  border-bottom: 2.5px solid var(--action-dark);
  transform: rotate(45deg);
  transition: transform 0.2s;
  margin-top: -5px;
}
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq__item p {
  padding: 0 0 22px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 64ch;
}

/* ===== CTA final ===== */

.final {
  background: var(--night);
  color: #fff;
  text-align: center;
  padding: 80px 22px;
}
.final h2 { color: #fff; margin-bottom: 16px; }
.final p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 32px; }
.final .btn { max-width: 460px; width: 100%; }
.final .btn__note { color: rgba(255,255,255,0.55); }

/* ===== Rodapé ===== */

.foot {
  background: #090b0f;
  color: rgba(255,255,255,0.55);
  padding: 52px 22px 38px;
  font-size: 0.85rem;
  text-align: center;
}
.foot a { color: rgba(255,255,255,0.85); }
.foot a:hover { color: var(--action); text-decoration: underline; }

.foot__brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
}
.foot__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  margin: 22px 0;
}
.foot__legal {
  max-width: 620px;
  margin: 24px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.42);
}
.foot__legal p + p { margin-top: 10px; }

/* ===== Páginas internas (legais / obrigado) ===== */

.doc { max-width: 720px; margin-inline: auto; padding: 56px 22px 72px; }
.doc h1 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 6px; }
.doc__date { color: var(--ink-soft); font-size: 0.86rem; margin-bottom: 34px; }
.doc h2 { font-size: 1.15rem; margin: 32px 0 12px; }
.doc p, .doc li { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 12px; }
.doc ul { list-style: disc; padding-left: 24px; margin-bottom: 18px; }
.doc ul li { margin-bottom: 7px; }
.doc__back {
  display: inline-block;
  margin-bottom: 26px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--action-dark);
}
.doc__back:hover { text-decoration: underline; }

.done {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 56px 22px;
  background: var(--surface);
}
.done__card {
  max-width: 560px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 20px 50px -24px rgba(13,17,23,0.3);
}
.done__mark {
  width: 68px; height: 68px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--go);
  color: #fff;
  display: grid;
  place-items: center;
}
.done__card h1 { font-size: 1.9rem; margin-bottom: 14px; }
.done__card p { color: var(--ink-soft); margin-bottom: 12px; font-size: 0.97rem; }
.done__alert {
  background: var(--action-soft);
  border: 1px solid rgba(20,184,166,0.4);
  border-radius: 10px;
  padding: 15px 18px;
  margin: 22px 0;
  color: var(--ink) !important;
  font-size: 0.92rem !important;
}
.done__steps {
  text-align: left;
  background: var(--surface);
  border-radius: 10px;
  padding: 22px 24px;
  margin: 24px 0;
}
.done__steps h2 { font-size: 1rem; margin-bottom: 12px; text-align: center; }
.done__steps ol { list-style: decimal; padding-left: 20px; }
.done__steps li { font-size: 0.91rem; color: var(--ink-soft); margin-bottom: 8px; }

/* ===== Barra fixa mobile ===== */

.stickybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line);
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  gap: 14px;
  transform: translateY(110%);
  transition: transform 0.25s ease;
}
.stickybar.is-on { transform: translateY(0); }
.stickybar__price { flex-shrink: 0; }
.stickybar__price b {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1;
}
.stickybar__price span { font-size: 0.72rem; color: var(--ink-soft); }
.stickybar .btn {
  flex: 1;
  padding: 14px 20px;
  font-size: 0.97rem;
}

@media (max-width: 860px) {
  .stickybar { display: flex; }
  body { padding-bottom: 76px; }
}

/* ===== Utilidades ===== */

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
