/* ==========================================================================
   Templo de Ifá Erigi Abola Òfún Méjì
   ========================================================================== */

:root {
  --terracota: #a63a2b;
  --terracota-dark: #7e2a1f;
  --terracota-light: #c85c45;
  --gold: #d9a441;
  --gold-light: #eccb7e;
  --green-dark: #1f3a2d;
  --green-deep: #16291f;
  --sand: #f6efe4;
  --sand-dark: #efe3cd;
  --brown: #2b1d16;
  --text: #3a2c22;
  --muted: #6b5b4e;
  --white: #fffdf8;
  --shadow: 0 18px 45px rgba(43, 29, 22, 0.12);
  --shadow-lg: 0 30px 70px rgba(43, 29, 22, 0.22);
  --radius: 18px;
  --font-head: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--terracota); color: var(--white); border-color: var(--terracota); }
.btn-primary:hover { background: var(--terracota-dark); border-color: var(--terracota-dark); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--terracota-dark); transform: translateY(-3px); }
.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn-whatsapp:hover { background: #1fb455; border-color: #1fb455; transform: translateY(-3px); }
.btn-light { background: var(--white); color: var(--terracota-dark); border-color: var(--white); }
.btn-light:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-3px); }
.btn-lg { padding: 17px 42px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }

/* ============================ NAVBAR ============================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(22, 25, 22, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.scrolled { background: rgba(22, 25, 22, 0.95); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
  padding-block: 10px;
}

.brand-logo { height: 52px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }

.nav-menu ul { display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; }
.nav-menu ul li { flex-shrink: 0; }
.nav-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--sand);
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.25s, background 0.25s;
  position: relative;
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--gold-light); background: rgba(255, 253, 248, 0.06); }
.nav-menu a.nav-highlight {
  color: var(--gold);
  background: rgba(217, 164, 65, 0.12);
  border: 1px solid rgba(217, 164, 65, 0.35);
}
.nav-menu a.nav-highlight:hover { color: var(--gold-light); background: rgba(217, 164, 65, 0.2); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

/* Language selector */
.lang-selector { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 253, 248, 0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.25s;
}
.lang-btn:hover { background: rgba(255, 253, 248, 0.2); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 170px;
  background: var(--green-deep);
  border: 1px solid rgba(255, 253, 248, 0.15);
  border-radius: 14px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.28s var(--ease);
}
.lang-selector.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--sand);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 9px 12px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-dropdown button:hover { background: rgba(217, 164, 65, 0.15); color: var(--gold-light); }
.lang-dropdown button.active { background: var(--terracota); color: var(--white); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--white); border-radius: 3px; transition: all 0.3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================ HERO ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, rgba(22, 25, 22, 0.82) 0%, rgba(43, 29, 22, 0.72) 55%, rgba(126, 42, 31, 0.62) 100%);
}
.hero-content { max-width: 860px; padding-block: 150px 90px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
  padding: 9px 20px;
  border: 1px solid rgba(217, 164, 65, 0.5);
  border-radius: 50px;
  background: rgba(22, 25, 22, 0.4);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.22rem); font-weight: 300; color: var(--sand); max-width: 640px; margin: 0 auto 42px; }
.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  opacity: 0.85;
  animation: float 2.2s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ============================ SECTION BASE ============================ */
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  text-wrap: balance;
}
.section-lead { margin-top: 20px; color: var(--muted); font-size: 1.05rem; }
.section-head.light .section-tag { color: var(--gold-light); }
.section-head.light .section-title { color: var(--white); }
.section-head.light .section-lead { color: var(--sand); }

/* ============================ MISSÃO ============================ */
.missao { background: var(--sand); position: relative; }
.missao-text {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 46px;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--text);
}
.missao-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 34px; display: block; margin-bottom: 14px; }
.feature strong { color: var(--green-deep); font-weight: 600; }

/* ============================ SERVIÇOS ============================ */
.servicos { background: var(--white); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 28px 26px 32px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--green-deep); margin-bottom: 12px; }
.card-body p { color: var(--muted); font-size: 0.97rem; flex: 1; }
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--terracota);
  font-weight: 600;
  font-size: 14.5px;
  transition: gap 0.25s, color 0.25s;
}
.link-more::after { content: "→"; }
.link-more:hover { gap: 12px; color: var(--terracota-dark); }

/* ============================ QUOTE ============================ */
.quote { background: var(--green-dark); color: var(--sand); text-align: center; position: relative; overflow: hidden; }
.quote::before {
  content: "\201C";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 220px;
  color: rgba(217, 164, 65, 0.12);
  line-height: 1;
}
.quote blockquote { position: relative; max-width: 780px; margin: 0 auto; padding: 20px 0; }
.quote-yoruba { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.2rem); font-style: italic; color: var(--gold-light); margin-bottom: 14px; }
.quote-trans { font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 300; margin-bottom: 18px; }
.quote footer { color: var(--gold); font-size: 14.5px; letter-spacing: 1.5px; text-transform: uppercase; }

/* ============================ PRINCÍPIOS ============================ */
.principios { background: var(--sand); }
.principios-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.principios-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.caption { margin-top: 18px; text-align: center; color: var(--muted); font-size: 0.95rem; font-weight: 500; }
.principios-text h3 { font-family: var(--font-head); font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--green-deep); margin-bottom: 20px; }
.principios-text p { color: var(--text); margin-bottom: 18px; }
.principios-text .btn { margin-top: 10px; }

/* ============================ AÇÕES SOCIAIS ============================ */
.sociais { position: relative; isolation: isolate; color: var(--white); }
.sociais-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.sociais-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(22, 25, 22, 0.94) 0%, rgba(126, 42, 31, 0.88) 100%);
}
.sociais-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.sociais-card {
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  padding: 34px;
  backdrop-filter: blur(8px);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.sociais-card:hover { background: rgba(255, 253, 248, 0.1); transform: translateY(-5px); }
.sociais-card-head { margin-bottom: 18px; }
.sociais-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.sociais-card-head h3 { font-family: var(--font-head); font-size: 1.6rem; color: var(--white); }
.sociais-card p { color: var(--sand); margin-bottom: 16px; }
.sociais-lista { margin-bottom: 18px; }
.sociais-lista li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; color: var(--sand); border-bottom: 1px dashed rgba(255, 253, 248, 0.15); font-size: 0.97rem; }
.sociais-lista li:last-child { border-bottom: none; }
.sociais-lista li span:first-child { color: var(--gold-light); font-weight: 700; }
.sociais-note { font-size: 0.88rem; color: var(--gold-light); border-left: 3px solid var(--gold); padding-left: 14px; }
.sociais-eixos { margin-bottom: 24px; display: flex; flex-direction: column; gap: 16px; }
.sociais-eixos li { display: flex; gap: 14px; align-items: flex-start; }
.eixo-icone { font-size: 26px; flex-shrink: 0; }
.sociais-eixos strong { color: var(--white); font-weight: 600; display: block; }
.sociais-eixos p { color: var(--sand); font-size: 0.93rem; margin: 2px 0 0; }

/* ============================ OFERTAS ============================ */
.ofertas { background: var(--white); }
.ofertas-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.ofertas-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.ofertas-text p { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text); margin-bottom: 28px; }

/* ============================ ATIVIDADES ============================ */
.atividades { background: var(--sand); }
.eventos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.evento {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.evento:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.evento-cat {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracota);
  background: rgba(166, 58, 43, 0.1);
  padding: 5px 13px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.evento h3 { font-family: var(--font-head); font-size: 1.35rem; color: var(--green-deep); margin-bottom: 10px; }
.evento p { color: var(--muted); font-size: 0.97rem; }

/* ============================ NOTÍCIAS ============================ */
.noticias { background: var(--white); }
.noticias-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.noticia {
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.noticia:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.noticia.destaque { grid-column: span 2; }
.noticia.destaque { display: grid; grid-template-columns: 1.1fr 1fr; }
.video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 280px; }
.noticia-body { padding: 30px 30px 34px; display: flex; flex-direction: column; }
.noticia-tag {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terracota);
  padding: 5px 13px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.noticia h3 { font-family: var(--font-head); font-size: 1.35rem; color: var(--green-deep); margin-bottom: 12px; }
.noticia p { color: var(--muted); font-size: 0.97rem; flex: 1; }
.noticia blockquote { color: var(--text); font-style: italic; border-left: 3px solid var(--gold); padding-left: 16px; margin-bottom: 8px; }
.noticia-data { color: var(--muted); font-size: 0.85rem; margin-top: 14px; }

/* ============================ CONTATO ============================ */
.contato { background: var(--sand); }
.contato-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; }
.contato-info { display: flex; flex-direction: column; gap: 16px; }
.contato-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contato-item:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.contato-icone { font-size: 30px; }
.contato-item strong { display: block; color: var(--green-deep); font-weight: 600; }
.contato-item span { color: var(--muted); font-size: 0.95rem; }
.contato-cta { background: var(--green-dark); border-radius: var(--radius); padding: 44px 40px; color: var(--white); box-shadow: var(--shadow-lg); }
.contato-cta h3 { font-family: var(--font-head); font-size: 1.7rem; margin-bottom: 14px; }
.contato-cta p { color: var(--sand); margin-bottom: 28px; }

/* ============================ FOOTER ============================ */
.footer { background: var(--green-deep); color: var(--sand); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 50px; }
.footer-logo { height: 48px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.95rem; color: var(--sand-dark); max-width: 340px; }
.footer-col h4 { color: var(--gold); font-size: 15px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { color: var(--sand); font-size: 0.95rem; transition: color 0.25s, padding-left 0.25s; }
.footer-col a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-phone { font-weight: 700; color: var(--gold-light) !important; }
.footer-bottom { border-top: 1px solid rgba(255, 253, 248, 0.12); padding: 26px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.88rem; color: var(--sand-dark); }
.social { display: flex; gap: 12px; }
.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.08);
  color: var(--sand);
  transition: all 0.3s var(--ease);
}
.social a:hover { background: var(--terracota); color: var(--white); transform: translateY(-4px); }

/* ============================ REVEAL ============================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1200px) {
  .nav-inner { gap: 10px; }
  .nav-menu a { padding: 10px 9px; font-size: 13px; }
  .nav-actions { gap: 10px; }
  .nav-actions .btn-whatsapp { display: none; }
}

@media (max-width: 1100px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: min(320px, 82vw);
    height: 100vh;
    background: var(--green-deep);
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
    padding: 96px 26px 30px;
    transition: right 0.4s var(--ease);
    z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-menu ul { flex-direction: column; align-items: stretch; gap: 6px; }
  .nav-menu ul li { flex-shrink: 1; }
  .nav-menu a { font-size: 15.5px; padding: 13px 16px; white-space: normal; }
  .cards, .eventos-grid { grid-template-columns: 1fr; }
  .principios-grid, .ofertas-grid, .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .sociais-grid { grid-template-columns: 1fr; }
  .noticias-grid { grid-template-columns: 1fr; }
  .noticia.destaque { grid-column: span 1; grid-template-columns: 1fr; }
  .missao-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .hero-content { padding-block: 130px 70px; }
}

/* ============================ PROTEÇÃO ============================ */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input, textarea, [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
.protect-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(18px);
  background: rgba(22, 25, 22, 0.96);
  color: var(--gold-light);
  border: 1px solid rgba(217, 164, 65, 0.5);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  z-index: 2000;
  pointer-events: none;
  max-width: 92%;
  text-align: center;
}
.protect-toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
