/* ============================================================
   Leandro Jumper — estilo premium técnico. Dark default + Light.
   ============================================================ */
:root {
  --accent: #F56A00;   /* CTA naranja intenso */
  --accent2: #178DFF;  /* azul eléctrico */
  --radius: 18px;
  --maxw: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- DARK (default) — identidad azul marino ---------- */
html[data-theme="dark"] {
  --bg: #0F1F3D;       /* azul marino principal (70%) */
  --bg2: #081223;      /* azul casi negro (navbar/footer/fondo alt) */
  --surface: #14294c;  /* card navy oscura */
  --surface-2: #1b3560; /* card hover / navy más clara */
  --border: rgba(39,73,109,.6);
  --border-strong: #27496D;
  --text: #FFFFFF;
  --muted: #C8D1DB;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --glow: 0 0 0 1px rgba(23,141,255,.35), 0 0 30px rgba(23,141,255,.22); /* glow azul eléctrico */
}
/* ---------- LIGHT ---------- */
html[data-theme="light"] {
  --bg: #f4f6f9;
  --bg2: #ffffff;
  --surface: #ffffff;
  --surface-2: #f0f3f7;
  --border: rgba(15,23,32,.10);
  --border-strong: rgba(15,23,32,.18);
  --text: #10161d;
  --muted: #566370;
  --shadow: 0 16px 40px rgba(20,30,45,.12);
  --glow: 0 0 0 1px rgba(245,106,0,.35), 0 0 24px rgba(245,106,0,.14);
  --accent2: #178DFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .3s var(--ease);
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(245,106,0,.12), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(23,141,255,.14), transparent 55%),
    var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

h1,h2,h3 { line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }
.section { padding: 84px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent2); margin-bottom: 12px;
}
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 13px 22px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff8c3a);
  color: #fff; box-shadow: var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,106,0,.45); }
.btn-ghost { background: var(--surface); border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { background: var(--surface-2); transform: translateY(-2px); }
.btn-wpp { background: #25d366; color: #05230f; }
.btn-wpp:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.35); }
.btn-sm { padding: 9px 15px; font-size: .85rem; }

/* ---------- Header ---------- */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav-inner { display: flex; align-items: center; gap: 18px; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; }
.brand .logo {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #0a0c10;
  font-weight: 900; font-size: 1rem;
}
.brand .name { font-size: 1.02rem; letter-spacing: -.01em; }
/* logo por imagen */
.brand .logo.has-img { display: inline-flex; align-items: center; background: none; border-radius: 8px; width: auto; height: auto; padding: 0; overflow: visible; }
.brand .logo.has-img img { display: block; width: auto !important; max-width: none !important; height: 44px; border-radius: 8px; }
header.nav .brand .logo.has-img img { height: 120px; }
header.nav .nav-inner { height: auto; min-height: 132px; }
.brand .name { font-size: 1.3rem; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  padding: 8px 12px; border-radius: 9px; font-size: .9rem; color: var(--muted);
  font-weight: 600; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--accent2); background: var(--surface); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text); cursor: pointer; display: grid; place-items: center;
  font-size: 1.05rem; transition: background .2s, transform .2s;
}
.icon-btn:hover { background: var(--surface-2); color: var(--accent2); border-color: var(--accent2); transform: translateY(-1px); }
.lang-select {
  border: 1px solid var(--border-strong); background: var(--surface); color: var(--text);
  border-radius: 10px; padding: 8px 10px; font-weight: 700; font-size: .82rem; cursor: pointer;
}
.hamburger { display: none; }

/* mobile drawer */
.drawer { display: none; }
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .hamburger { display: grid; }
  .drawer {
    display: block; position: fixed; inset: 96px 0 auto 0; z-index: 99;
    background: var(--bg2); border-bottom: 1px solid var(--border);
    transform: translateY(-120%); transition: transform .35s var(--ease); padding: 16px 20px 26px;
  }
  .drawer.open { transform: translateY(0); }
  .drawer a { display: block; padding: 14px 6px; font-size: 1.05rem; font-weight: 600; border-bottom: 1px solid var(--border); }
  .drawer .btn { width: 100%; margin-top: 12px; }
}

/* ---------- Hero ---------- */
.hero { padding: 160px 0 60px; position: relative; }
@media (max-width: 940px){
  header.nav .brand .logo.has-img img { height: 76px; }
  header.nav .nav-inner { min-height: 88px; }
  .brand .name { font-size: 1.05rem; }
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 5.4vw, 3.7rem); }
.hero .sub { font-size: 1.12rem; color: var(--muted); margin: 20px 0 26px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.tag {
  font-size: .78rem; font-weight: 600; padding: 6px 12px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); color: var(--muted);
}
.hero-visual {
  border-radius: 26px; overflow: hidden; border: 1px solid var(--border-strong);
  background: var(--surface); box-shadow: var(--shadow); aspect-ratio: 4/5; position: relative;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .ph {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  color: var(--muted); font-size: .9rem; padding: 20px;
  background: repeating-linear-gradient(45deg, var(--surface), var(--surface) 12px, var(--surface-2) 12px, var(--surface-2) 24px);
}
.metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 30px; }
.metric {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 14px; text-align: center;
}
.metric .v { font-size: 1.5rem; font-weight: 800; color: var(--accent2); }
.metric .l { font-size: .74rem; color: var(--muted); margin-top: 2px; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; aspect-ratio: 4/4.4; }
  .metrics { grid-template-columns: repeat(2,1fr); }
}

/* ---------- Countdown ---------- */
.countdown-wrap {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, var(--surface)), var(--surface));
  border: 1px solid var(--border-strong); border-radius: 24px; padding: 34px; box-shadow: var(--shadow);
}
.cd-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: flex-start; }
.cd-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 10px; color: var(--muted); font-size: .92rem; }
.cd-meta b { color: var(--text); }
.badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700;
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--border-strong);
}
.badge.open { color: var(--accent2); border-color: color-mix(in srgb, var(--accent2) 50%, transparent); }
.badge.last, .badge.lot { color: #ff8a4c; border-color: rgba(255,138,76,.5); }
.badge.soon { color: var(--muted); }
.badge.closed, .badge.ended { color: var(--muted); opacity: .8; }
.cd-timer { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 26px; }
.cd-cell { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 16px 8px; text-align: center; }
.cd-cell .n { font-size: clamp(1.6rem,5vw,2.6rem); font-weight: 800; font-variant-numeric: tabular-nums; }
.cd-cell .u { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.cd-empty { text-align: center; color: var(--muted); padding: 30px; font-size: 1.1rem; }

/* ---------- Cards / courses ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 34px; }
.chip {
  padding: 8px 15px; border-radius: 999px; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--muted); font-size: .84rem; font-weight: 600; cursor: pointer;
  transition: all .2s;
}
.chip:hover { color: var(--text); }
.chip.active { background: var(--accent); color: #fff; border-color: transparent; }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 22px; }

/* ---------- carousel (próximas turmas) ---------- */
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 6px 2px 14px; -ms-overflow-style: none; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
/* 3 cards visíveis no desktop */
.carousel-track > .card { flex: 0 0 calc((100% - 44px) / 3); scroll-snap-align: start; }
.carousel-track > p { flex: 1 0 100%; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border-strong);
  background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: blur(8px);
  color: var(--text); font-size: 1.6rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  box-shadow: var(--shadow); transition: background .2s, transform .2s, opacity .2s;
}
.carousel-arrow:hover { background: var(--accent); color: #fff; transform: translateY(-50%) scale(1.06); }
.carousel-arrow.prev { left: -8px; }
.carousel-arrow.next { right: -8px; }
.carousel-arrow[disabled] { opacity: .35; cursor: default; pointer-events: none; }
.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 8px; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--border-strong); cursor: pointer; padding: 0; transition: background .2s, width .2s; }
.carousel-dots button.active { background: var(--accent2); width: 22px; border-radius: 4px; }
@media (max-width: 980px){ .carousel-track > .card { flex: 0 0 calc((100% - 22px) / 2); } }
@media (max-width: 640px){
  .carousel-track > .card { flex: 0 0 88%; }
  .carousel-arrow.prev { left: 2px; } .carousel-arrow.next { right: 2px; }
}
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.card .media { aspect-ratio: 4/5; background: var(--bg2); position: relative; overflow: hidden; display: grid; place-items: center; }
.card .media img, .card .media video, .card .media iframe { width: 100%; height: 100%; }
.card .media img, .card .media video { object-fit: contain !important; }
.card .media .ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); font-size: .8rem;
  background: repeating-linear-gradient(45deg, var(--surface), var(--surface) 10px, var(--surface-2) 10px, var(--surface-2) 20px); }
.card .body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card h3 { font-size: 1.18rem; }
.card .rows { font-size: .88rem; color: var(--muted); display: flex; flex-direction: column; gap: 4px; }
.card .rows b { color: var(--text); font-weight: 600; }
.card .pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill { font-size: .72rem; padding: 4px 9px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); color: var(--muted); }
.card .card-cta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 6px; }
.card.featured { border-color: color-mix(in srgb, var(--accent2) 50%, transparent); box-shadow: var(--glow); }

/* ---------- Method ---------- */
.method-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.method-step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; position: relative; }
.method-step .num { font-size: 2.4rem; font-weight: 900; color: color-mix(in srgb, var(--accent2) 60%, transparent); }
.method-step h3 { margin: 6px 0 8px; font-size: 1.3rem; }
.quote-band { text-align: center; margin-top: 40px; font-size: clamp(1.3rem,3.5vw,2rem); font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
@media (max-width: 820px){ .method-grid { grid-template-columns: 1fr; } }

/* ---------- generic lists ---------- */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 16px; }
.tile { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px; display: flex; gap: 12px; align-items: flex-start; }
.tile .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent2); margin-top: 9px; flex: none; }
.modules { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 18px; }
.module { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.module h3 { font-size: 1.12rem; margin-bottom: 12px; color: var(--accent2); }
.module ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.module li { padding-left: 20px; position: relative; font-size: .92rem; color: var(--muted); }
.module li::before { content: "▹"; position: absolute; left: 0; color: var(--accent2); }

/* ---------- teacher ---------- */
.teacher-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; }
.teacher-photo { border-radius: 24px; overflow: hidden; aspect-ratio: 3/4; border: 1px solid var(--border-strong); background: var(--surface); }
@media (max-width: 820px){ .teacher-grid { grid-template-columns: 1fr; } .teacher-photo { max-width: 360px; margin: 0 auto; } }

/* ---------- testimonials ---------- */
.testi { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.testi .stars { color: var(--accent); letter-spacing: 2px; }
.testi .who { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.testi .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; font-weight: 800; color: var(--accent2); }

/* ---------- posts ---------- */
.post { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.post .media { aspect-ratio: 16/9; background: var(--surface-2); }
.post .body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post .cat { font-size: .74rem; font-weight: 700; color: var(--accent2); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 18px 20px; background: none; border: none; color: var(--text); font-weight: 600; font-size: 1rem; cursor: pointer; display: flex; justify-content: space-between; gap: 12px; }
.faq-q .ic { transition: transform .3s; color: var(--accent2); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); color: var(--muted); }
.faq-a div { padding: 0 20px 18px; }
.faq-item.open .faq-a { max-height: 320px; }

/* ---------- form ---------- */
.form-card { max-width: 720px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 24px; padding: 34px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--bg2); border: 1px solid var(--border-strong); border-radius: 11px; padding: 12px 14px;
  color: var(--text); font-size: .95rem; font-family: inherit; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent2); }
.field textarea { resize: vertical; min-height: 90px; }
@media (max-width: 620px){ .form-grid { grid-template-columns: 1fr; } }

/* ---------- scarcity band ---------- */
.scarcity { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.scarcity .s {
  font-size: .9rem; font-weight: 700; padding: 10px 18px; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent); color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 12px; }
.gallery-grid .g { aspect-ratio: 1; border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
  background: repeating-linear-gradient(45deg, var(--surface), var(--surface) 10px, var(--surface-2) 10px, var(--surface-2) 20px);
  display: grid; place-items: center; color: var(--muted); font-size: .78rem; }
.gallery-grid .g img { width:100%; height:100%; object-fit: cover; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--border); padding: 50px 0 30px; margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.foot-grid a.mut { color: var(--muted); display: block; padding: 4px 0; font-size: .9rem; }
.foot-grid a.mut:hover { color: var(--text); }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.foot-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--muted); font-size: .82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
@media (max-width: 720px){ .foot-grid { grid-template-columns: 1fr; } }

/* ---------- floating whatsapp ---------- */
.fab-wpp {
  position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45);
  color: #fff; font-size: 1.7rem; transition: transform .2s; animation: pulse 2.5s infinite;
}
.fab-wpp:hover { transform: scale(1.08); }
@keyframes pulse { 0%,100%{ box-shadow: 0 10px 30px rgba(37,211,102,.45);} 50%{ box-shadow: 0 10px 40px rgba(37,211,102,.7);} }

/* ---------- modal ---------- */
.modal-bg { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-bg.open { display: flex; }
.modal { background: var(--bg2); border: 1px solid var(--border-strong); border-radius: 22px; max-width: 640px; width: 100%;
  max-height: 88vh; overflow: auto; box-shadow: var(--shadow); }
.modal .m-media { aspect-ratio: 4/5; max-height: 60vh; background: var(--bg2); display: grid; place-items: center; }
.modal .m-body { padding: 26px; }
.modal .m-close { position: sticky; top: 10px; float: right; margin: 10px; }

/* ---------- animated titles: gradiente de color en loop (estilo guilherme) ---------- */
.hero h1, main h2 {
  background: linear-gradient(90deg,
    #FFFFFF 0%, #178DFF 25%, #F56A00 50%, #178DFF 75%, #FFFFFF 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: titleFlow 8s linear infinite;
}
@keyframes titleFlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1, main h2 { animation: none; }
}

/* reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* toast */
.toast { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px); opacity: 0;
  background: var(--text); color: var(--bg); padding: 12px 20px; border-radius: 999px; font-weight: 600; font-size: .9rem;
  z-index: 300; transition: all .3s; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
