/* Etherna — Components CSS v2.0 */

/* ── Valor cards hover ──────────────────────────────────── */
.valor-card { transition: transform .45s var(--eth-ease); }
.valor-card:hover { transform: translateY(-8px); }

/* ── Imagens ────────────────────────────────────────────── */
.etherna-img-round img, .etherna-img-arredondada img { border-radius: 4px !important; object-fit: cover !important; }
.etherna-img-circle img { border-radius: 50% !important; object-fit: cover !important; }

/* ── Widget sidebar ─────────────────────────────────────── */
.etherna-widget { margin-bottom: 2.5rem; }
.etherna-widget-title {
  font-family: var(--eth-font-body);
  font-size: .62rem; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--eth-gold); margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--eth-gold-border);
}
.etherna-widget ul { list-style: none; }
.etherna-widget ul li { padding: .5rem 0; border-bottom: 1px solid rgba(0,0,0,.05); font-size: .88rem; }
.etherna-widget ul li a { color: var(--eth-text-mid); font-weight: 300; }
.etherna-widget ul li a:hover { color: var(--eth-gold); }

/* ── Cookie banner (básico) ─────────────────────────────── */
.etherna-cookies {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--eth-black); color: rgba(255,255,255,.7);
  padding: 1.2rem var(--eth-side-pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  font-family: var(--eth-font-body); font-size: .78rem; font-weight: 300;
  transform: translateY(100%); transition: transform .5s var(--eth-ease);
}
.etherna-cookies.show { transform: translateY(0); }
.etherna-cookies a { color: var(--eth-gold); }
.etherna-cookies-btn {
  background: var(--eth-gold); color: var(--eth-black);
  border: none; cursor: pointer;
  font-family: var(--eth-font-body); font-size: .65rem;
  font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  padding: .7rem 1.6rem; flex-shrink: 0;
  transition: background .3s var(--eth-ease);
}
.etherna-cookies-btn:hover { background: var(--eth-gold-dark); color: #fff; }

/* ── Back to top ────────────────────────────────────────── */
.etherna-back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 46px; height: 46px;
  background: var(--eth-black); color: var(--eth-gold);
  border: 1px solid rgba(201,169,110,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: all .4s var(--eth-ease);
}
.etherna-back-top.show { opacity: 1; visibility: visible; }
.etherna-back-top:hover { background: var(--eth-gold); color: var(--eth-black); }
