/* =============================================
   INDEUS Studio Creativo — Design System
   Chaos Elegance Aesthetic
   ============================================= */

:root {
  --red:    #D7282F;
  --cream:  #FFF4D8;
  --black:  #080808;
  --dark:   #0D0D0D;
  --g1:     #111111;
  --g2:     #1A1A1A;
  --g3:     #2A2A2A;
  --gt:     #555555;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
  --mono:   'JetBrains Mono', monospace;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:  80px;
}

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

html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: auto; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; }

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }

.loader-svg { width: 130px; height: 130px; }
.lc { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: lcDraw 2s var(--ease) forwards; }
.lc-1 { animation-delay: 0s; }
.lc-2 { animation-delay: 0.25s; }
.lc-3 { animation-delay: 0.5s; }
.lc-dot {
  transform-origin: 60px 60px;
  animation: lcSpin 3s linear infinite;
}
@keyframes lcDraw { to { stroke-dashoffset: 0; } }
@keyframes lcSpin { to { transform: rotate(360deg); } }

.loader-counter {
  font-family: var(--mono); font-size: 3.5rem; font-weight: 300;
  color: var(--cream); letter-spacing: 0.08em; line-height: 1;
}
.loader-label {
  font-family: var(--mono); font-size: 0.6rem;
  color: var(--gt); letter-spacing: 0.35em; text-transform: uppercase;
}

/* ─── CURSOR ─── */
#cursor-dot {
  width: 7px; height: 7px; background: var(--red); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, background 0.3s;
}
#cursor-ring {
  width: 34px; height: 34px; border: 1px solid rgba(215,40,47,0.5); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.3s, opacity 0.3s;
}
body.is-hovering #cursor-ring { width: 56px; height: 56px; border-color: rgba(255,244,216,0.35); }
body.is-hovering #cursor-dot  { background: var(--cream); transform: translate(-50%,-50%) scale(0.5); }

/* ─── NAV ─── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background 0.5s, border-color 0.5s;
}
#nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--g2);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600; letter-spacing: 0.08em;
}
.nav-mark { width: 32px; height: 32px; }
#nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  position: relative; padding-bottom: 2px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--red); transition: width 0.35s var(--ease);
}
.nav-link:hover::after { width: 100%; }
.nav-cta {
  color: var(--red); border: 1px solid var(--red);
  padding: 8px 20px; border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--red); color: var(--cream); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span {
  display: block; width: 24px; height: 1px; background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── MOBILE MENU ─── */
#mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
#mobile-menu.open { opacity: 1; pointer-events: all; }
.mm-link { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; }
.mm-cta { color: var(--red); }

/* ─── CONTAINER ─── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--gt); text-transform: uppercase; margin-bottom: 24px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.05; color: var(--cream);
}
.section-title em { font-style: italic; color: var(--red); }
.section-title.bebas {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7.5vw, 7rem);
  line-height: 0.92; letter-spacing: 0.02em; font-weight: 400;
}
.section-title.bebas em { font-style: normal; color: var(--red); }
.section-header { margin-bottom: 72px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 2px; transition: all 0.35s var(--ease);
  font-family: var(--sans);
}
.btn-red { background: var(--red); color: var(--cream); }
.btn-red:hover { background: #b81f25; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(215,40,47,0.3); }
.btn-ghost { border: 1px solid rgba(255,244,216,0.25); color: var(--cream); }
.btn-ghost:hover { border-color: var(--cream); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ─── HERO ─── */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px;
}
.hero-pre {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.25em;
  color: var(--gt); text-transform: uppercase; margin-bottom: 24px;
  opacity: 0; transform: translateY(20px);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5.5rem, 17vw, 17rem);
  font-weight: 400; line-height: 0.88; letter-spacing: 0.02em;
  margin-bottom: 28px; overflow: hidden;
}
.ht-in   { display: block; color: var(--cream); opacity: 0; transform: translateY(100%); }
.ht-deus { display: block; color: var(--red);   opacity: 0; transform: translateY(100%); }
/* Service titles — mix Bebas for variety */
.svc-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.65rem;
  color: var(--cream); margin-bottom: 16px; line-height: 1.1;
  letter-spacing: 0.03em;
}
/* Method step titles — Bebas */
.ms-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  color: var(--cream); margin-bottom: 16px; letter-spacing: 0.03em;
}
.hero-tag {
  font-family: var(--serif); font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300; color: rgba(255,244,216,0.6); margin-bottom: 48px;
  opacity: 0; transform: translateY(20px);
}
.hero-btns { display: flex; gap: 16px; justify-content: center; opacity: 0; transform: translateY(20px); flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.2em;
  color: var(--gt); text-transform: uppercase;
  opacity: 0; animation: scrollHintIn 1s 3s var(--ease) forwards;
}
.scroll-track { width: 1px; height: 50px; background: var(--g3); position: relative; overflow: hidden; }
.scroll-thumb { position: absolute; top: 0; width: 100%; height: 50%; background: var(--red); animation: scrollThumb 2s ease-in-out infinite; }
@keyframes scrollThumb { 0%{top:-50%} 100%{top:100%} }
@keyframes scrollHintIn { to { opacity: 1; } }

.chaos-deco {
  position: absolute; z-index: 1; pointer-events: none;
  display: flex; gap: 0; width: 100%;
}
.cd-1 { position: absolute; left: 40px; bottom: 100px; font-family: var(--mono); font-size: 0.6rem; color: var(--g3); letter-spacing: 0.1em; }
.cd-2 { position: absolute; right: 40px; top: 140px; font-family: var(--mono); font-size: 0.6rem; color: var(--g3); letter-spacing: 0.1em; }
.cd-3 { position: absolute; left: 40px; top: 140px; font-family: var(--mono); font-size: 0.6rem; color: rgba(215,40,47,0.3); letter-spacing: 0.1em; }

/* ─── MANIFESTO ─── */
#manifiesto {
  position: relative; padding: 140px 0; overflow: hidden;
  background: var(--dark);
}
.manifesto-body {
  font-family: var(--serif); font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300; line-height: 1.4; color: var(--cream);
  max-width: 900px; margin-bottom: 80px;
}
.manifesto-body .word {
  display: inline-block; opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s;
  margin-right: 0.25em;
}
.manifesto-body .word.visible { opacity: 1; transform: translateY(0); }
.manifesto-defs { display: flex; gap: 64px; flex-wrap: wrap; }
.mdef { display: flex; flex-direction: column; gap: 8px; }
.mdef-word {
  font-family: var(--serif); font-size: 5rem; font-weight: 700;
  color: var(--cream); line-height: 1;
}
.mdef-word.bebas { font-family: 'Bebas Neue', sans-serif; font-size: 6.5rem; letter-spacing: 0.04em; }
.mdef-word--red { color: var(--red); }
.mdef-meaning { font-family: var(--mono); font-size: 0.65rem; color: var(--gt); letter-spacing: 0.15em; }
.manifesto-bg-num {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif; font-size: 30vw;
  color: rgba(255,255,255,0.012); line-height: 1; pointer-events: none; user-select: none;
}

/* ─── BEBAS NEUE UTILITY ─── */
.bebas { font-family: 'Bebas Neue', sans-serif !important; letter-spacing: 0.04em; }

/* ─── WORLDS SECTION ─── */
#worlds {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--black);
}
#worlds-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.worlds-text {
  position: relative; z-index: 2; text-align: center;
  opacity: 0; transition: opacity 0.8s ease; pointer-events: none;
  padding: 0 24px;
}
.worlds-eyebrow {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.22em;
  color: var(--gt); text-transform: uppercase; margin-bottom: 20px; display: block;
}
.worlds-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  color: var(--cream); line-height: 0.95; letter-spacing: 0.04em;
  margin-bottom: 20px; text-shadow: 0 0 60px rgba(215,40,47,0.4);
}
.worlds-sub {
  font-family: var(--sans); font-size: 0.9rem; font-weight: 300;
  color: rgba(255,244,216,0.55); letter-spacing: 0.08em;
}

/* ─── SERVICIOS ─── */
#servicios { padding: 140px 0; background: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.svc-card {
  position: relative; padding: 48px 40px; background: var(--g1);
  overflow: hidden; cursor: default;
  transition: background 0.4s;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(215,40,47,0.05) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.svc-card:hover { background: var(--g2); }
.svc-card:hover::before { opacity: 1; }
.svc-num {
  display: block; font-family: var(--mono); font-size: 0.65rem;
  color: var(--red); letter-spacing: 0.2em; margin-bottom: 20px;
}
.svc-title {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  color: var(--cream); margin-bottom: 16px; line-height: 1.2;
}
.svc-desc { font-size: 0.85rem; color: var(--gt); line-height: 1.75; }
.svc-line {
  position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--red); transition: width 0.5s var(--ease);
}
.svc-card:hover .svc-line { width: 100%; }

/* ─── PROYECTOS ─── */
#proyectos { padding: 140px 0; background: var(--dark); }
.portfolio-list { margin-top: 80px; }

.pf-item {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--g2);
  cursor: none;
}
.pf-item:last-child { border-bottom: 1px solid var(--g2); }
.pf-item-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 36px 48px;
  transition: padding 0.4s var(--ease);
}
.pf-item:hover .pf-item-inner { padding-left: 72px; }
.pf-num {
  font-family: var(--mono); font-size: 0.7rem; color: var(--gt);
  min-width: 28px; letter-spacing: 0.1em;
}
.pf-info { flex: 1; }
.pf-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--cream); line-height: 1.1;
  transition: color 0.3s;
}
.pf-item:hover .pf-title { color: var(--red); }
.pf-cat {
  display: block; font-family: var(--mono); font-size: 0.65rem;
  color: var(--gt); letter-spacing: 0.15em; margin-top: 6px; text-transform: uppercase;
}
.pf-arrow {
  font-size: 1.5rem; color: var(--gt);
  transform: translateX(-10px); opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s, color 0.3s;
}
.pf-item:hover .pf-arrow { transform: translateX(0); opacity: 1; color: var(--red); }
.pf-line {
  position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--red); transition: width 0.6s var(--ease);
}
.pf-item:hover .pf-line { width: 100%; }

/* Preview panel that reveals on hover */
.pf-preview {
  position: absolute; top: 0; right: 0; width: 380px; height: 100%;
  display: flex; align-items: center; padding: 32px 40px;
  transform: translateX(100%); transition: transform 0.5s var(--ease);
  pointer-events: none;
}
.pf-item:hover .pf-preview { transform: translateX(0); }
.pf-preview-content { max-width: 260px; }
.pf-preview-label {
  display: block; font-family: var(--mono); font-size: 0.6rem;
  color: var(--red); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px;
}
.pf-preview-content p { font-size: 0.82rem; color: rgba(255,244,216,0.6); line-height: 1.65; }

/* Follower cursor image */
#pf-follower {
  position: fixed; top: 0; left: 0; z-index: 200;
  pointer-events: none; width: 320px; height: 220px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s var(--ease), opacity 0.4s;
  opacity: 0; border-radius: 4px; overflow: hidden;
}
#pf-follower.active { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.pf-follower-inner { width: 100%; height: 100%; }

/* ─── MÉTODO ─── */
#metodo { padding: 140px 0; background: var(--black); }
.method-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 0; }
.method-step {
  position: relative; padding: 48px 40px;
  border-left: 1px solid var(--g2); 
}
.method-step:first-child { border-left: none; }
.ms-num {
  font-family: var(--mono); font-size: 0.65rem; color: var(--red);
  letter-spacing: 0.2em; margin-bottom: 28px; display: block;
}
.ms-title {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 400;
  color: var(--cream); margin-bottom: 16px;
}
.ms-desc { font-size: 0.85rem; color: var(--gt); line-height: 1.75; }
.ms-connector {
  position: absolute; top: 64px; right: -1px; width: 1px; height: 0;
  background: var(--red);
}

/* ─── NOSOTROS ─── */
#nosotros { padding: 140px 0; background: var(--dark); }
.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  align-items: center;
}
.about-content .section-title { margin-bottom: 32px; }
.about-p { font-size: 0.95rem; color: rgba(255,244,216,0.65); line-height: 1.85; margin-bottom: 20px; }
.about-stats { display: flex; gap: 48px; margin-top: 56px; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-val {
  font-family: var(--serif); font-size: 3rem; font-weight: 700;
  color: var(--cream); line-height: 1;
}
.stat-lbl { font-family: var(--mono); font-size: 0.6rem; color: var(--gt); letter-spacing: 0.15em; text-transform: uppercase; }
.stat-count { display: inline; }

.about-visual { position: relative; }
.about-img-box {
  position: relative; width: 100%; aspect-ratio: 4/5;
  background: var(--g1);
  border: 1px solid var(--g2); border-radius: 2px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.about-img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0005 0%, #180010 40%, #D7282F15 100%);
}
.about-quote-box {
  position: relative; z-index: 2; padding: 40px;
}
blockquote {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.5; margin-bottom: 16px;
}
cite { font-family: var(--mono); font-size: 0.6rem; color: var(--red); letter-spacing: 0.2em; font-style: normal; }
.about-fractal {
  position: absolute; top: -40px; right: -40px; width: 180px; opacity: 0.4;
  animation: fractalSpin 30s linear infinite;
}
@keyframes fractalSpin { to { transform: rotate(360deg); } }

/* ─── CONTACTO ─── */
#contacto {
  position: relative; padding: 140px 0;
  background: var(--black); overflow: hidden;
}
#contact-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; opacity: 0.5;
}
.contact-wrap { position: relative; z-index: 2; }
.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: 0.04em; line-height: 0.9; color: var(--cream);
  margin-bottom: 24px;
}
.contact-sub { font-size: 0.95rem; color: var(--gt); margin-bottom: 64px; }
.contact-form { max-width: 720px; display: flex; flex-direction: column; gap: 24px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cf-group { position: relative; }
.cf-group input,
.cf-group textarea,
.cf-group select {
  width: 100%; background: var(--g1); border: 1px solid var(--g2);
  color: var(--cream); font-family: var(--sans); font-size: 0.9rem; font-weight: 300;
  padding: 18px 20px; border-radius: 2px; outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.cf-group input:focus,
.cf-group textarea:focus,
.cf-group select:focus { border-color: var(--red); }
.cf-group label {
  position: absolute; top: 18px; left: 20px;
  font-size: 0.85rem; color: var(--gt);
  transition: top 0.3s, font-size 0.3s, color 0.3s;
  pointer-events: none;
}
.cf-group input:focus ~ label,
.cf-group input:not(:placeholder-shown) ~ label,
.cf-group textarea:focus ~ label,
.cf-group textarea:not(:placeholder-shown) ~ label {
  top: -10px; font-size: 0.65rem; color: var(--red);
  background: var(--black); padding: 0 4px; left: 16px;
}
.cf-group select option { background: var(--g1); }
.btn-ico { transition: transform 0.3s; }
.btn-red:hover .btn-ico { transform: translateX(4px); }

.contact-meta { margin-top: 48px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.contact-email {
  font-family: var(--serif); font-size: 1.4rem; color: var(--cream);
  border-bottom: 1px solid var(--g3); transition: border-color 0.3s, color 0.3s;
}
.contact-email:hover { border-color: var(--red); color: var(--red); }
.contact-social { display: flex; gap: 24px; }
.csoc {
  font-family: var(--mono); font-size: 0.65rem; color: var(--gt);
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: color 0.3s;
}
.csoc:hover { color: var(--cream); }

/* ─── FOOTER ─── */
#footer { padding: 40px 0; border-top: 1px solid var(--g2); background: var(--black); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.08em;
}
.footer-nav { display: flex; gap: 28px; }
.footer-nav a {
  font-family: var(--mono); font-size: 0.65rem; color: var(--gt);
  letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.3s;
}
.footer-nav a:hover { color: var(--cream); }
.footer-copy { font-family: var(--mono); font-size: 0.6rem; color: var(--g3); letter-spacing: 0.1em; }

/* ─── SCROLL REVEAL BASE ─── */
.reveal { opacity: 0; transform: translateY(40px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .method-steps  { grid-template-columns: repeat(2, 1fr); }
  .about-wrap    { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  #nav-links  { display: none; }
  .nav-burger { display: flex; }
  .container  { padding: 0 24px; }
  #servicios, #proyectos, #metodo, #nosotros, #contacto { padding: 100px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .method-steps  { grid-template-columns: 1fr; }
  .pf-preview    { display: none; }
  .cf-row        { grid-template-columns: 1fr; }
  .footer-inner  { flex-direction: column; text-align: center; }
  .contact-meta  { flex-direction: column; align-items: flex-start; }
  .about-wrap    { padding: 0 24px; }
}
