:root {
  --green-deep: #0f2119;
  --green-panel: #17301f;
  --green-panel-light: #1e3a26;
  --gold: #c9a24b;
  --gold-light: #e6c878;
  --cream: #f4ead2;
  --cream-dim: #cfc3a3;
  --red-accent: #b53a2c;
  --red-accent-light: #d05340;
  --shadow: rgba(0, 0, 0, 0.45);

  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "EB Garamond", "Iowan Old Style", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  font-family: var(--font-body);
  background-color: var(--green-deep);
  background-image:
    radial-gradient(ellipse at top, rgba(255, 255, 255, 0.05), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.55), transparent 65%),
    linear-gradient(var(--green-deep), var(--green-deep));
  background-attachment: fixed;
  padding: clamp(24px, 6vw, 56px) 16px 32px;
}

/* background-attachment: fixed é instável em navegadores mobile (trava/pisca ao rolar) */
@media (max-width: 600px), (hover: none) {
  body {
    background-attachment: scroll;
  }
}

.page {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* ---------- Header ---------- */

.header {
  text-align: center;
  margin-bottom: 28px;
}

.logo-frame {
  display: inline-block;
}

.logo-frame img {
  display: block;
  width: min(96vw, 480px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 22px var(--shadow));
}

.tagline {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 2.4vw, 0.85rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ---------- Ornamental divider ---------- */

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 18px;
  color: var(--gold);
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.divider__mark {
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  flex: none;
}

/* ---------- Links ---------- */

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 12px 18px;
  background: var(--green-panel);
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  color: var(--cream);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 16px var(--shadow);
}

.link-card:hover,
.link-card:focus-visible {
  background: var(--green-panel-light);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px var(--shadow);
}

.link-card:active {
  transform: translateY(0);
}

.link-card__icon {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--gold-light);
}

.link-card__label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.link-card--whatsapp {
  background: linear-gradient(155deg, var(--red-accent), #8f2c20);
  border-color: var(--gold-light);
  min-height: 58px;
}

.link-card--whatsapp:hover,
.link-card--whatsapp:focus-visible {
  background: linear-gradient(155deg, var(--red-accent-light), var(--red-accent));
}

.link-card--whatsapp .link-card__label {
  font-size: 1.05rem;
}

/* ---------- Info panels (hours / phones / address / email) ---------- */

.panel {
  background: var(--green-panel);
  border: 1px solid rgba(201, 162, 75, 0.5);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 14px;
}

.panel__title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel__title-icon {
  width: 18px;
  height: 18px;
  flex: none;
}

.hours-list,
.phones-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 1rem;
}

.hours-list li span:first-child {
  color: var(--cream-dim);
}

.phones-list a,
.panel a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.phones-list a:hover,
.panel a:hover {
  border-bottom-color: var(--gold);
}

.phones-list li {
  font-size: 1.05rem;
}

.phones-list .phone-label {
  color: var(--cream-dim);
  font-size: 0.85rem;
  margin-right: 6px;
}

.address-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.address-map-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.email-link {
  font-size: 1.05rem;
}

/* ---------- Footer ---------- */

.footer {
  text-align: center;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 162, 75, 0.35);
  color: var(--cream-dim);
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

@media (max-width: 360px) {
  .link-card__label {
    font-size: 0.9rem;
  }
}
