/* ============================================================
   ETERNITY ENERGIA — Landing Page de Tráfego Pago
   Carregado APÓS main.css — herda variáveis e reset
   ============================================================ */

/* ── LP HEADER ───────────────────────────────────────────── */
.lp-header {
  background: var(--escuro);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.lp-header__phone {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--amarelo);
  white-space: nowrap;
}
.lp-header__phone a {
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.lp-header__phone svg {
  width: 16px;
  height: 16px;
  fill: #25D366;
  flex-shrink: 0;
}

/* ── LP HERO ─────────────────────────────────────────────── */
.lp-hero {
  background: var(--escuro);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 6vw, 4rem);
  text-align: center;
}
.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(250, 185, 0, 0.12);
  border: 1px solid rgba(250, 185, 0, 0.3);
  color: var(--amarelo);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.lp-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--branco);
  margin-bottom: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.lp-hero__title em {
  color: var(--amarelo);
  font-style: normal;
}
.lp-hero__title-location {
  display: block;
  font-size: 0.55em;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2em;
}
.lp-hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.lp-hero__cta {
  margin-bottom: 2.5rem;
}
.btn--lp {
  display: inline-block;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  background: var(--amarelo);
  color: var(--escuro);
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(250,185,0,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.btn--lp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(250,185,0,0.5);
}
.lp-seals {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.lp-seal {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 500;
}
.lp-seal svg {
  color: var(--amarelo);
  flex-shrink: 0;
}

/* ── NÚMEROS ─────────────────────────────────────────────── */
.lp-numbers {
  background: var(--amarelo);
  padding: 2rem 0;
}
.lp-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (max-width: 600px) {
  .lp-numbers__grid { grid-template-columns: repeat(2, 1fr); }
}
.lp-number__val {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--escuro);
  line-height: 1;
}
.lp-number__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(26,34,40,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* ── COMO FUNCIONA ───────────────────────────────────────── */
.lp-steps {
  background: var(--off-white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.lp-steps__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: var(--escuro);
}
.lp-steps__title em {
  color: #b97700;
  font-style: normal;
}
.lp-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .lp-steps__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.lp-step {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}
.lp-step__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amarelo);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.lp-step__icon {
  width: 48px;
  height: 48px;
  background: rgba(250,185,0,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--amarelo);
}
.lp-step__icon svg { width: 24px; height: 24px; }
.lp-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.lp-step p {
  font-size: 0.88rem;
  color: var(--cinza-txt);
  line-height: 1.6;
}

/* ── VÍDEOS / SHORTS CAROUSEL ───────────────────────────── */
.lp-videos {
  background: var(--escuro);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.lp-videos__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--branco);
  margin-bottom: 2.5rem;
}
.lp-videos__title em { color: var(--amarelo); font-style: normal; }

.lp-shorts-carousel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lp-shorts-track-wrap {
  flex: 1;
  overflow: hidden;
}
.lp-shorts-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
  will-change: transform;
}
.lp-short {
  flex: 0 0 calc((100% - 2rem) / 3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
  position: relative;
}
.lp-short iframe,
.lp-video-facade {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.lp-video-facade {
  position: relative;
  padding: 0;
  cursor: pointer;
  background: #050505;
  color: var(--branco);
  font: inherit;
}
.lp-video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.78;
}
.lp-video-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.lp-video-facade__play,
.lp-video-facade__label {
  position: absolute;
  z-index: 1;
}
.lp-video-facade__play {
  width: 72px;
  height: 52px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}
.lp-video-facade__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-left: 18px solid var(--branco);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}
.lp-video-facade__label {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
}
.lp-video-facade:hover .lp-video-facade__play,
.lp-video-facade:focus-visible .lp-video-facade__play {
  background: rgba(250, 185, 0, 0.92);
}
.lp-video-facade:hover .lp-video-facade__play::before,
.lp-video-facade:focus-visible .lp-video-facade__play::before {
  border-left-color: var(--escuro);
}
.lp-video-facade:focus-visible {
  outline: 3px solid var(--amarelo);
  outline-offset: -3px;
}
@media (max-width: 860px) {
  .lp-short { flex: 0 0 calc((100% - 1rem) / 2); }
}
@media (max-width: 540px) {
  .lp-short { flex: 0 0 100%; }
}

.lp-shorts-prev,
.lp-shorts-next {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--borda);
  color: var(--branco);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lp-shorts-prev:hover,
.lp-shorts-next:hover { background: var(--amarelo); color: var(--escuro); }
.lp-shorts-prev:disabled,
.lp-shorts-next:disabled { opacity: 0.25; cursor: default; }

.lp-shorts-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.lp-shorts-dot {
  position: relative;
  width: 8px;
  height: 8px;
  min-width: 24px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  padding: 0;
}
.lp-shorts-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.15s, transform 0.15s;
}
.lp-shorts-dot.is-active {
  transform: scale(1.3);
}
.lp-shorts-dot.is-active::before {
  background: var(--amarelo);
}
.lp-shorts-dot:focus-visible {
  outline: 2px solid var(--amarelo);
  outline-offset: 2px;
}
.lp-shorts-dot:hover::before,
.lp-shorts-dot:focus-visible::before {
  background: rgba(255,255,255,0.38);
}

/* ── DEPOIMENTOS ─────────────────────────────────────────── */
.lp-testimonials {
  background: var(--carvao);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.lp-testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--branco);
  margin-bottom: 2.5rem;
}
.lp-testimonials__title em { color: var(--amarelo); font-style: normal; }
.lp-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .lp-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lp-testimonials__grid { grid-template-columns: 1fr; max-width: 420px; }
}
.lp-testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: left;
}
.lp-testimonial__quote {
  font-size: 1.75rem;
  color: var(--amarelo);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.lp-testimonial__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.lp-testimonial__author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--amarelo);
}

/* ── CTA FINAL ───────────────────────────────────────────── */
.lp-cta-final {
  background: linear-gradient(135deg, var(--escuro) 0%, #243040 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.lp-cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--branco);
  margin-bottom: 0.75rem;
}
.lp-cta-final__title em { color: var(--amarelo); font-style: normal; }
.lp-cta-final__sub {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ── LP FOOTER ───────────────────────────────────────────── */
.lp-footer {
  background: var(--escuro);
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid var(--borda);
}
.lp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.lp-footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ── POPUP MODAL ─────────────────────────────────────────── */
.lp-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.lp-modal-overlay.is-open {
  display: flex;
}
.lp-modal {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 2rem);
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lp-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  cursor: pointer;
  color: var(--cinza-txt);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.25rem;
}
.lp-modal__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--escuro);
  margin-bottom: 0.4rem;
}
.lp-modal__sub {
  font-size: 0.88rem;
  color: var(--cinza-txt);
  margin-bottom: 1.5rem;
}
.lp-modal .form__group { margin-bottom: 1rem; }
.lp-modal .form__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--escuro);
  margin-bottom: 0.35rem;
}
.lp-modal .form__input,
.lp-modal .form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--escuro);
  background: var(--branco);
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.lp-modal .form__input:focus,
.lp-modal .form__select:focus {
  outline: none;
  border-color: var(--amarelo);
}
.lp-modal .form__error {
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 0.3rem;
  display: none;
}
.lp-modal .form__error.visible { display: block; }
.lp-modal .form__group {
  position: relative;
}
.lp-modal .form__autocomplete {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 10;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  max-height: 220px;
  overflow-y: auto;
  padding: 0.35rem;
}
.lp-modal .form__autocomplete-item {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--escuro);
  text-align: left;
  font: inherit;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  cursor: pointer;
}
.lp-modal .form__autocomplete-item:hover,
.lp-modal .form__autocomplete-item:focus {
  background: rgba(255, 199, 0, 0.12);
  outline: none;
}
.lp-modal__submit {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.lp-modal__submit:hover { opacity: 0.9; }
.lp-modal__submit svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}
.lp-modal__disclaimer {
  font-size: 0.72rem;
  color: var(--cinza-txt);
  text-align: center;
  margin-top: 0.75rem;
}
@media (max-width: 640px), (max-height: 820px) {
  .lp-modal-overlay {
    padding: 0.75rem;
    align-items: flex-start;
  }
  .lp-modal {
    margin: auto 0;
    padding: 1.25rem;
    max-height: calc(100vh - 1.5rem);
  }
  .lp-modal__title {
    font-size: 1.15rem;
    line-height: 1.15;
    padding-right: 1.75rem;
  }
  .lp-modal__sub {
    margin-bottom: 1rem;
  }
  .lp-modal .form__group {
    margin-bottom: 0.8rem;
  }
  .lp-modal .form__input,
  .lp-modal .form__select {
    padding: 0.68rem 0.9rem;
  }
  .lp-modal__submit {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
}

/* ── CHAT WIDGET ─────────────────────────────────────────── */
.cw-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.cw-bubble.is-visible { display: flex; }
.cw-bubble__hint {
  background: var(--escuro);
  color: var(--branco);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  animation: hintIn 0.3s ease;
}
@keyframes hintIn {
  from { opacity:0; transform: translateX(8px); }
  to   { opacity:1; transform: translateX(0); }
}
.cw-bubble__btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  border: none;
  transition: transform 0.15s;
}
.cw-bubble__btn:hover { transform: scale(1.08); }
.cw-bubble__btn svg { width: 32px; height: 32px; fill: #fff; }

.cw-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: var(--branco);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.cw-panel.is-open { display: flex; }
.cw-panel__header {
  background: #075E54;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cw-panel__header-info { display: flex; align-items: center; gap: 0.75rem; }
.cw-panel__avatar {
  width: 40px; height: 40px;
  background: var(--amarelo);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cw-panel__avatar svg { width: 22px; height: 22px; fill: var(--escuro); }
.cw-panel__name {
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}
.cw-panel__status {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}
.cw-panel__close {
  background: none; border: none;
  color: rgba(255,255,255,0.8);
  font-size: 1.4rem; cursor: pointer; padding: 0.2rem;
}
.cw-panel__messages {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 180px;
  max-height: 280px;
  overflow-y: auto;
  background: #ECE5DD;
}
.cw-msg {
  max-width: 86%;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
  animation: msgIn 0.2s ease;
}
@keyframes msgIn {
  from { opacity:0; transform: translateY(6px); }
  to   { opacity:1; transform: translateY(0); }
}
.cw-msg--bot {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  color: var(--escuro);
}
.cw-msg--user {
  background: #DCF8C6;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  color: var(--escuro);
}
.cw-panel__input-area {
  padding: 0.75rem 1rem;
  border-top: 1px solid #e2e8f0;
  background: #fff;
}
.cw-panel__input-area input,
.cw-panel__input-area select {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--escuro);
  background: var(--branco);
}
.cw-panel__input-area input:focus,
.cw-panel__input-area select:focus {
  outline: none;
  border-color: #25D366;
}
.cw-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cw-option-btn {
  width: 100%;
  padding: 0.55rem 0.9rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius);
  background: var(--branco);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--escuro);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s;
}
.cw-option-btn:hover {
  border-color: #25D366;
  background: #f0fdf4;
}
.cw-send-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.65rem;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.15s;
}
.cw-send-btn:hover { opacity: 0.9; }
.cw-city-picker {
  position: relative;
}
.cw-city-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  z-index: 20;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  max-height: 220px;
  overflow-y: auto;
  padding: 0.35rem;
}
.cw-city-result {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--escuro);
  text-align: left;
  font: inherit;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  cursor: pointer;
}
.cw-city-result:hover,
.cw-city-result:focus {
  background: #f0fdf4;
  outline: none;
}
.cw-wa-btn {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
