:root {
  --wine: #a61c28;
  --wine-dark: #7f131d;
  --rose: #e7b7bf;
  --rose-soft: #f7dfe4;
  --cream: #f8f3ee;
  --vanilla: #fffaf7;
  --taupe: #8c6e63;
  --text: #5a3a36;
  --gold-soft: #dcc2aa;
  --shadow: 0 20px 60px rgba(104, 31, 37, 0.16);
  --shadow-soft: 0 14px 32px rgba(104, 31, 37, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --transition: 260ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(231, 183, 191, 0.36), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(166, 28, 40, 0.12), transparent 22%),
    linear-gradient(180deg, #fffdfb 0%, #fdf5f6 40%, #f7efea 100%);
}

.page-bg::before,
.page-bg::after {
  content: "";
  position: fixed;
  z-index: 0;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.page-bg::before {
  left: -110px;
  top: 10%;
  background: rgba(231, 183, 191, 0.22);
}

.page-bg::after {
  right: -100px;
  bottom: 6%;
  background: rgba(166, 28, 40, 0.10);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 22px 16px 34px;
}

.link-card {
  position: relative;
  overflow: hidden;
  padding: 24px 18px 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(166, 28, 40, 0.08);
  box-shadow: var(--shadow);
}

.link-card::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  inset: 10px;
  border: 1px solid rgba(166, 28, 40, 0.08);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.ornament {
  text-align: center;
  color: var(--wine);
  letter-spacing: 0.4rem;
  font-size: 1rem;
  opacity: 0.75;
}

.ornament-top { margin-bottom: 10px; }
.ornament-bottom { margin-top: 18px; }

.brand-header {
  text-align: center;
}

.logo-frame {
  width: 100%;
  max-width: 390px;
  width: min(100%, 390px);
  margin: 0 auto 12px;
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,239,234,0.95));
  box-shadow: var(--shadow-soft);
}

.brand-logo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.mini-tag {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--taupe);
}

h1 {
  margin: 0;
  color: var(--wine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.08;
}

h1 span {
  display: block;
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
  color: var(--wine);
}

.brand-copy {
  max-width: 560px;
  margin: 14px auto 22px;
  line-height: 1.65;
  font-size: 1rem;
  color: rgba(90, 58, 54, 0.86);
}

.payment-notice {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  max-width: 590px;
  margin: -4px auto 24px;
  padding: 14px 16px;
  overflow: hidden;
  border: 1px solid rgba(166, 28, 40, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(247, 223, 228, 0.94), rgba(255, 250, 247, 0.98));
  box-shadow: 0 12px 28px rgba(104, 31, 37, 0.10);
  text-align: left;
}

.payment-notice::before {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--wine), var(--rose));
}

.payment-notice-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--wine);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(127, 19, 29, 0.20);
}

.payment-notice p {
  margin: 0;
  color: rgba(90, 58, 54, 0.90);
  font-size: 0.92rem;
  line-height: 1.5;
}

.payment-notice strong {
  display: block;
  margin-bottom: 2px;
  color: var(--wine-dark);
  font-size: 0.96rem;
}

.gallery-card {
  margin-bottom: 22px;
  padding: 14px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,250,247,0.86));
  box-shadow: var(--shadow-soft);
}

.gallery-slider {
  position: relative;
  height: 0;
  padding-top: 125%;
  border-radius: 22px;
  overflow: hidden;
  background: #f6efeb;
}

@supports (aspect-ratio: 4 / 5) {
  .gallery-slider {
    height: auto;
    padding-top: 0;
    aspect-ratio: 4 / 5;
  }
}

.slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide::after {
  content: "";
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(65, 28, 24, 0.82));
}

.slide figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.gallery-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.gallery-nav {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(166, 28, 40, 0.08);
  color: var(--wine);
  font-size: 1.6rem;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
  outline: none;
  background: rgba(166, 28, 40, 0.16);
  transform: translateY(-2px);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gallery-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(166, 28, 40, 0.22);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.gallery-dots button.active {
  background: var(--wine);
  transform: scale(1.2);
}

.link-list {
  display: grid;
  gap: 14px;
}

.link-button {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 15px 16px;
  border-radius: 22px;
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,250,247,0.88));
  border: 1px solid rgba(166, 28, 40, 0.10);
  box-shadow: 0 12px 28px rgba(104, 31, 37, 0.08);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.link-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.68) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
}

.link-button:hover,
.link-button:focus-visible {
  outline: none;
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(104, 31, 37, 0.14);
  border-color: rgba(166, 28, 40, 0.22);
}

.link-button:hover::before,
.link-button:focus-visible::before {
  transform: translateX(120%);
}

.link-button.featured {
  background: linear-gradient(135deg, rgba(247,223,228,0.95), rgba(255,250,247,0.95));
}

.link-button.ifood {
  background: linear-gradient(135deg, rgba(255,247,247,0.96), rgba(248,243,238,0.95));
}

.icon-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(166, 28, 40, 0.10), rgba(231, 183, 191, 0.24));
  font-size: 1.45rem;
  position: relative;
  z-index: 1;
}

.link-text,
.arrow {
  position: relative;
  z-index: 1;
}

.link-text strong,
.link-text small {
  display: block;
}

.link-text strong {
  margin-bottom: 4px;
  font-size: 1rem;
  line-height: 1.28;
  color: var(--wine-dark);
}

.link-text small {
  color: rgba(90, 58, 54, 0.75);
  line-height: 1.35;
  font-size: 0.88rem;
}

.arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(166, 28, 40, 0.08);
  color: var(--wine);
  font-weight: 800;
}

.actions-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.secondary-action {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(166, 28, 40, 0.14);
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  color: var(--wine-dark);
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.secondary-action:hover,
.secondary-action:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(104, 31, 37, 0.10);
  background: rgba(255,255,255,0.96);
}

.feedback {
  min-height: 1.4em;
  margin: 10px 0 0;
  text-align: center;
  color: var(--wine);
  font-size: 0.92rem;
}

.footer-note {
  margin-top: 20px;
  color: rgba(90, 58, 54, 0.82);
}

.footer-info-grid {
  display: grid;
  gap: 12px;
}

.footer-info-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(166, 28, 40, 0.10);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,250,247,0.84));
  box-shadow: 0 10px 24px rgba(104, 31, 37, 0.07);
  text-align: left;
}

.footer-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(166, 28, 40, 0.10), rgba(231, 183, 191, 0.24));
  font-size: 1.2rem;
}

.footer-info-card h2 {
  margin: 1px 0 7px;
  color: var(--wine-dark);
  font-size: 1rem;
  line-height: 1.3;
}

.footer-info-card p,
.footer-info-card address {
  margin: 0;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.6;
}

.footer-info-card p + p {
  margin-top: 9px;
}

.footer-info-card a {
  color: inherit;
  text-decoration: none;
}

.footer-info-card a:hover,
.footer-info-card a:focus-visible {
  color: var(--wine);
  text-decoration: underline;
  outline: none;
}

.footer-signature {
  margin: 16px 0 0;
  text-align: center;
  color: rgba(90, 58, 54, 0.68);
  font-size: 0.86rem;
}

@media (max-width: 640px) {
  .page-shell {
    padding: 12px 10px 22px;
  }

  .link-card {
    padding: 18px 14px 22px;
    border-radius: 24px;
  }

  .link-card::before {
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    inset: 8px;
    border-radius: 18px;
  }

  .gallery-card {
    padding: 10px;
  }

  .link-button {
    grid-template-columns: 50px 1fr auto;
    gap: 12px;
    padding: 14px 14px;
    min-height: 78px;
  }

  .icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 1.25rem;
  }

  .actions-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 1.75rem;
  }

  h1 span {
    font-size: 0.92rem;
  }

  .brand-copy {
    font-size: 0.94rem;
  }

  .payment-notice {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 13px 13px;
  }

  .payment-notice-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .payment-notice p {
    font-size: 0.86rem;
  }

  .slide figcaption {
    font-size: 0.88rem;
  }

  .link-text strong {
    font-size: 0.95rem;
  }

  .link-text small {
    font-size: 0.83rem;
  }

  .arrow {
    width: 32px;
    height: 32px;
  }
}


@media (hover: none) {
  .link-button:hover,
  .gallery-nav:hover,
  .secondary-action:hover { transform: none; }
}
