:root {
  --night: #07111f;
  --slate: #111827;
  --gold: #c9a45c;
  --wine: #4a102a;
  --paper: #f4efe6;
  --sand: #d8c7a3;
  --muted: rgba(244, 239, 230, 0.74);
  --line: rgba(201, 164, 92, 0.26);
  --panel: rgba(17, 24, 39, 0.78);
  --panel-soft: rgba(244, 239, 230, 0.065);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--night);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

main,
section,
.container,
.hero-inner,
.portal-layout,
.payment-layout,
.portal-main,
.portal-sidebar,
.payment-panel,
.pricing-card,
.result-card,
.timeline-card {
  min-width: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--night);
  background: var(--paper);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 17, 31, 0.92);
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 32px), var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 190px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(201, 164, 92, 0.18), rgba(17, 24, 39, 0.1));
  font-family: Georgia, serif;
  font-size: 22px;
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.1;
}

.brand-note {
  color: var(--sand);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 10px 9px;
  color: var(--muted);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  color: var(--paper);
  background: rgba(244, 239, 230, 0.08);
  outline: none;
}

.nav-links .nav-cta {
  margin-left: 8px;
  color: var(--night);
  background: var(--gold);
  font-weight: 700;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus {
  color: var(--night);
  background: #dfbf78;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.86) 44%, rgba(7, 17, 31, 0.54) 100%),
    url("../img/israel-o-mago-simbolo.svg") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0), var(--night));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 86px 0 120px;
}

.hero-content {
  max-width: min(100%, 760px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.08;
  max-width: 100%;
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.mobile-break {
  display: none;
}

.hero-lead {
  max-width: 710px;
  margin-top: 24px;
  color: rgba(244, 239, 230, 0.86);
  font-size: 1.14rem;
}

.hero-note {
  max-width: 640px;
  margin-top: 18px;
  color: var(--sand);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button::after {
  content: ">";
  font-weight: 900;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--night);
  background: var(--gold);
  box-shadow: 0 18px 35px rgba(201, 164, 92, 0.22);
}

.button-primary:hover,
.button-primary:focus {
  background: #dfbf78;
}

.button-secondary {
  color: var(--paper);
  border-color: var(--line);
  background: rgba(244, 239, 230, 0.06);
}

.button-secondary:hover,
.button-secondary:focus {
  border-color: rgba(244, 239, 230, 0.5);
  background: rgba(244, 239, 230, 0.11);
}

.trust-row {
  width: min(calc(100% - 32px), var(--max));
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.9);
  box-shadow: var(--shadow);
}

.trust-row span {
  padding: 20px;
  color: var(--sand);
  text-align: center;
  border-right: 1px solid rgba(201, 164, 92, 0.18);
}

.trust-row span:last-child {
  border-right: 0;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: rgba(244, 239, 230, 0.035);
}

.section.wine-band {
  background:
    linear-gradient(90deg, rgba(74, 16, 42, 0.58), rgba(7, 17, 31, 0.86)),
    var(--slate);
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section-header {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header.center .section-kicker {
  justify-content: center;
}

.section-header.center .section-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section h3 {
  font-size: 1.35rem;
}

.lead {
  color: rgba(244, 239, 230, 0.84);
  font-size: 1.08rem;
}

.muted {
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.text-stack {
  display: grid;
  gap: 18px;
}

.quote-panel,
.notice-panel,
.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.quote-panel strong,
.notice-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  line-height: 1.2;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.feature-card,
.step-card,
.faq-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(201, 164, 92, 0.22);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.service-card {
  display: grid;
  gap: 14px;
}

.service-card .tag,
.page-card .tag {
  width: fit-content;
  padding: 5px 9px;
  color: var(--sand);
  border: 1px solid rgba(201, 164, 92, 0.32);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-link {
  width: fit-content;
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
}

.service-link:hover,
.service-link:focus {
  text-decoration: underline;
  outline: none;
}

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

.step-card {
  counter-increment: steps;
  position: relative;
  padding-top: 64px;
}

.step-card::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.feature-list,
.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li,
.clean-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.feature-list li::before,
.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-card h3 {
  margin-bottom: 8px;
}

.cta-band {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.88), rgba(74, 16, 42, 0.58)),
    var(--slate);
  border-top: 1px solid rgba(201, 164, 92, 0.2);
  border-bottom: 1px solid rgba(201, 164, 92, 0.2);
}

.cta-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.page-hero {
  padding: 88px 0 64px;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.94), rgba(17, 24, 39, 0.72)),
    url("../img/israel-o-mago-simbolo.svg") center right / cover no-repeat;
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
}

.page-hero .container {
  max-width: var(--max);
}

.page-hero h1 {
  font-size: clamp(2.35rem, 6vw, 4.4rem);
}

.page-hero p {
  max-width: 760px;
  margin-top: 20px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.page-card {
  padding: 28px;
  border: 1px solid rgba(201, 164, 92, 0.22);
  border-radius: var(--radius);
  background: rgba(244, 239, 230, 0.055);
}

.page-card h2,
.page-card h3 {
  margin: 12px 0;
}

.service-detail {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(201, 164, 92, 0.22);
  border-radius: var(--radius);
  background: rgba(244, 239, 230, 0.055);
}

.service-detail + .service-detail {
  margin-top: 20px;
}

.service-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.service-detail h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.info-table {
  display: grid;
  gap: 12px;
}

.info-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
}

.info-row strong {
  color: var(--gold);
}

.message-box {
  padding: 18px;
  color: var(--sand);
  border: 1px dashed rgba(201, 164, 92, 0.42);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.44);
}

.site-footer {
  padding: 54px 0 28px;
  background: #050b14;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 28px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(201, 164, 92, 0.16);
}

.footer-title {
  margin-bottom: 12px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--gold);
  outline: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(244, 239, 230, 0.58);
  font-size: 0.9rem;
}

.portal-preview,
.portal-sidebar,
.portal-main,
.payment-panel,
.pricing-card,
.result-card,
.timeline-card {
  border: 1px solid rgba(201, 164, 92, 0.22);
  border-radius: var(--radius);
  background: rgba(244, 239, 230, 0.055);
  box-shadow: var(--shadow);
}

.portal-preview,
.portal-sidebar,
.payment-panel,
.pricing-card,
.result-card,
.timeline-card {
  padding: 26px;
}

.portal-status-list,
.portal-preview {
  display: grid;
  gap: 16px;
}

.portal-status {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
}

.portal-status strong,
.timeline-step strong {
  display: block;
  color: var(--paper);
}

.portal-status p,
.timeline-step p {
  color: var(--muted);
  font-size: 0.94rem;
}

.status-dot {
  width: 14px;
  height: 14px;
  margin-top: 5px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(201, 164, 92, 0.08);
  box-shadow: 0 0 0 5px rgba(201, 164, 92, 0.07);
}

.status-dot.active {
  background: var(--gold);
}

.portal-layout,
.payment-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.payment-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
}

.portal-main {
  padding: 0;
  overflow: hidden;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
  background: rgba(7, 17, 31, 0.36);
}

.tab-button {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--muted);
  border: 1px solid rgba(201, 164, 92, 0.24);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.tab-button.active,
.tab-button:hover,
.tab-button:focus {
  color: var(--night);
  background: var(--gold);
  outline: none;
}

.tab-panel {
  display: none;
  padding: 28px;
}

.tab-panel.active {
  display: block;
}

.form-card {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--sand);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--paper);
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.64);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(201, 164, 92, 0.18);
}

.checkbox-line {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 500;
}

.checkbox-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 5px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.compact-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 22px;
}

.result-card {
  margin-top: 22px;
  border-color: rgba(201, 164, 92, 0.42);
}

.result-card h3 {
  margin-bottom: 8px;
}

.protocol-code {
  display: inline-flex;
  margin: 10px 0 14px;
  padding: 8px 12px;
  color: var(--night);
  border-radius: var(--radius);
  background: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.timeline-card {
  display: grid;
  gap: 0;
}

.timeline-step {
  position: relative;
  padding: 18px 0 18px 26px;
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
}

.timeline-step:last-child {
  border-bottom: 0;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(201, 164, 92, 0.12);
}

.timeline-step.done::before {
  background: var(--gold);
}

.notice-mini {
  margin-top: 22px;
  padding: 16px;
  border: 1px dashed rgba(201, 164, 92, 0.38);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.4);
}

.notice-mini strong {
  color: var(--gold);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  display: grid;
  gap: 14px;
  box-shadow: none;
}

.pricing-card.featured {
  border-color: rgba(201, 164, 92, 0.58);
  background:
    linear-gradient(180deg, rgba(201, 164, 92, 0.12), rgba(244, 239, 230, 0.055)),
    rgba(17, 24, 39, 0.72);
  box-shadow: 0 24px 70px rgba(201, 164, 92, 0.12);
}

[data-package].selected {
  border-color: var(--gold);
  background: #dfbf78;
}

.price-label {
  color: var(--gold);
  font-weight: 900;
}

.payment-warning {
  border-color: rgba(201, 164, 92, 0.48);
}

.summary-panel {
  position: sticky;
  top: 98px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  padding: 12px 16px;
  color: var(--night);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  text-decoration: none;
  font-weight: 900;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  background: #dfbf78;
  outline: none;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    background: rgba(7, 17, 31, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    background-position: center;
  }

  .hero-inner {
    padding: 80px 0 110px;
  }

  .trust-row,
  .card-grid,
  .pricing-grid,
  .steps,
  .page-grid,
  .grid-2,
  .portal-layout,
  .payment-layout,
  .footer-grid,
  .cta-content {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    position: static;
  }

  .trust-row span {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 164, 92, 0.18);
  }

  .trust-row span:last-child {
    border-bottom: 0;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .container,
  .hero-inner,
  .trust-row {
    width: 20rem;
    max-width: calc(100% - 24px);
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .brand-note {
    display: none;
  }

  .brand {
    min-width: auto;
    max-width: calc(100% - 58px);
  }

  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: static;
    margin-left: auto;
    flex: 0 0 44px;
    z-index: 30;
    border-color: rgba(201, 164, 92, 0.62);
    background: rgba(244, 239, 230, 0.08);
  }

  .nav-toggle span {
    margin: 3px auto;
  }

  h1 {
    font-size: 1.72rem !important;
    line-height: 1.12;
  }

  .mobile-break {
    display: block;
  }

  .hero h1,
  .hero-lead,
  .hero-note,
  .hero .eyebrow {
    width: 18rem;
    max-width: 100%;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-lead,
  .hero-note {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .eyebrow,
  .section-kicker {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 8px;
    letter-spacing: 0.08em;
  }

  .eyebrow::before,
  .section-kicker::before {
    width: 34px;
    flex: 0 0 34px;
  }

  .section {
    padding: 68px 0;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .form-grid,
  .compact-form {
    grid-template-columns: 1fr;
  }

  .tab-panel {
    padding: 20px;
  }

  .page-hero {
    padding: 78px 0 56px;
    background-position: center;
  }

  .page-hero p,
  .page-card,
  .portal-preview,
  .portal-sidebar,
  .payment-panel,
  .pricing-card,
  .result-card,
  .timeline-card,
  .form-card {
    overflow-wrap: anywhere;
  }

  .portal-preview,
  .portal-sidebar,
  .payment-panel,
  .pricing-card,
  .result-card,
  .timeline-card {
    padding: 22px;
  }

  .floating-whatsapp {
    right: auto;
    left: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
    padding: 10px 13px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .service-detail-header {
    display: grid;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
