:root {
  --paper: #fbfaf7;
  --paper-soft: #f3fbfb;
  --paper-blue: #e8f7f7;
  --aqua: #68c6c6;
  --aqua-dark: #2d8f8f;
  --ink: #3b4040;
  --text: #353939;
  --muted: #686d6d;
  --white-soft: #fdfbf4;
  --gold: #c5a35a;
  --silver: #d6dedf;
  --line: rgba(5, 5, 5, 0.12);
  --line-aqua: rgba(104, 198, 198, 0.34);
  --shadow-soft: 0 18px 46px rgba(23, 45, 45, 0.11);
  --shadow-panel: 0 28px 70px rgba(23, 45, 45, 0.14);
  --radius-card: 8px;
  --radius-panel: 28px;
  --container: min(1120px, calc(100% - 34px));
  --header-height: 66px;
  --title-font: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --body-font: Inter, "Nunito Sans", Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, var(--paper) 0%, #f8fefd 42%, var(--paper) 100%);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 12px 0;
  transition: padding 220ms ease;
}

.site-header.is-scrolled {
  padding: 7px 0;
}

.header-inner {
  width: var(--container);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 8px 10px 8px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.88);
  box-shadow: 0 14px 36px rgba(23, 45, 45, 0.1);
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 58px;
  background: rgba(251, 250, 247, 0.95);
  box-shadow: 0 14px 34px rgba(23, 45, 45, 0.12);
}

.brand,
.footer-brand {
  text-decoration: none;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  width: 188px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
  transition: width 220ms ease, height 220ms ease;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header.is-scrolled .brand-logo {
  width: 174px;
  height: 44px;
}

.desktop-nav,
.header-cta {
  display: none;
}

.desktop-nav a {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--aqua-dark);
}

.menu-toggle {
  width: 56px;
  height: 42px;
  display: inline-grid;
  place-content: center;
  gap: 4px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white-soft);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(23, 45, 45, 0.08);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 88px;
  left: 17px;
  right: 17px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 24px;
  background: rgba(251, 250, 247, 0.98);
  box-shadow: var(--shadow-panel);
  animation: menuIn 180ms ease both;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 11px 14px;
  border-radius: 16px;
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn-small {
  min-height: 42px;
  padding: 11px 17px;
  font-size: 0.92rem;
}

.btn-primary {
  color: var(--paper);
  background: var(--aqua);
  box-shadow: 0 14px 32px rgba(104, 198, 198, 0.28);
}

.btn-secondary {
  color: var(--ink);
  border: 1px solid rgba(5, 5, 5, 0.14);
  background: rgba(255, 254, 250, 0.82);
}

.header-cta {
  display: none;
}

.btn:hover,
.icon-btn:hover {
  transform: translateY(-2px);
}

.hero {
  min-height: 86svh;
  padding: 136px 0 76px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("images/bakcground-desktop.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, transparent 68%, rgba(251, 250, 247, 0.72) 87%, var(--paper) 100%),
    linear-gradient(
      90deg,
      rgba(104, 198, 198, 0.82) 0%,
      rgba(104, 198, 198, 0.7) 32%,
      rgba(104, 198, 198, 0.4) 54%,
      rgba(104, 198, 198, 0.05) 82%
    );
  backdrop-filter: blur(1.4px);
  pointer-events: none;
}


.hero-watermark {
  position: absolute;
  right: 8%;
  top: 24%;
  width: 330px;
  max-width: 52vw;
  z-index: 1;
  opacity: 0.06;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 720px;
}

.hero .eyebrow {
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(23, 45, 45, 0.48);
}

.hero h1 {
  color: var(--paper);;
  text-shadow: 0 2px 12px rgba(18, 66, 54, 0.72);
}

.hero .hero-lead,
.hero .hero-text {
  color: var(--paper);
  text-shadow: 0 2px 12px rgba(18, 66, 54, 0.72);
}

.hero .btn-primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(71, 130, 95, 0.3);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--aqua-dark);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.02;
}

h1,
h2 {
  font-family: var(--title-font);
  font-weight: 850;
}

h1 {
  max-width: 720px;
  font-size: 4.8rem;
}

.hero-lead {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 2.05rem;
  font-weight: 760;
  line-height: 1.14;
}

.hero-text {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 8px;
}

.hero-points-label {
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.5rem;
  text-align: center;
  text-shadow: 0 2px 10px rgba(18, 66, 54, 0.58);
}

@media (min-width: 761px) {
  .hero-points-label {
    text-align: left;
  }
}

.hero-points span,
.care-list span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(23, 45, 45, 0.06);
}

.quick-strip {
  padding: 22px 0 70px;
  background: var(--paper);
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.quick-item,
.ring-card {
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius-card);
  background: rgba(255, 254, 250, 0.82);
  box-shadow: var(--shadow-soft);
}

.quick-item {
  min-height: 162px;
  padding: 20px;
}

.quick-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(104, 198, 198, 0.45);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper-blue);
}

.quick-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.quick-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.25;
}

.quick-item p,
.ring-card p,
.accessory-card p,
.section-heading p,
.section-copy p,
.store-copy p,
.site-footer p {
  color: var(--muted);
}

.quick-item p {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.section {
  padding: 84px 0;
  background: var(--paper);
}

.section-soft {
  background:
    linear-gradient(180deg, var(--paper-soft), var(--paper-blue));
}

.gift-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(5, 5, 5, 0.06);
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
}

.gift-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(104, 198, 198, 0.11), transparent 42%),
    repeating-linear-gradient(135deg, rgba(5, 5, 5, 0.025) 0 1px, transparent 1px 16px);
  pointer-events: none;
}

.gift-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.section-heading,
.section-copy {
  max-width: 690px;
}

.section-heading {
  margin-bottom: 34px;
}

h2 {
  font-size: 2.7rem;
}

.section-heading p,
.section-copy p {
  margin: 15px 0 0;
  font-size: 1.03rem;
}

.care-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.gift-board {
  display: grid;
  align-content: center;
  gap: 12px;
}

.gift-row {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 20px;
  border-left: 4px solid var(--aqua);
  background: rgba(255, 254, 250, 0.78);
  box-shadow: 0 12px 32px rgba(23, 45, 45, 0.08);
}

.gift-row span {
  color: var(--aqua-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.gift-row strong {
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 1.5rem;
  line-height: 1.12;
}

.carousel {
  position: relative;
}

.carousel-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 16px;
}

.carousel-controls {
  display: inline-flex;
  gap: 8px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(5, 5, 5, 0.13);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white-soft);
  box-shadow: 0 10px 24px rgba(23, 45, 45, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.icon-btn svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.carousel-track {
  --carousel-gap: 18px;
  display: flex;
  gap: var(--carousel-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scrollbar-width: none;
  padding: 4px 2px 20px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.accessory-card {
  flex: 0 0 calc((100% - (var(--carousel-gap) * 2)) / 3);
  min-width: 0;
  scroll-snap-align: start;
}

.accessory-photo {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(104, 198, 198, 0.18), rgba(255, 254, 250, 0.88)),
    repeating-linear-gradient(45deg, rgba(5, 5, 5, 0.035) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow-soft);
}

.accessory-photo::before,
.accessory-photo::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(104, 198, 198, 0.48);
  border-radius: 50%;
}

.accessory-photo::after {
  inset: 36%;
  border-color: rgba(5, 5, 5, 0.15);
}

.accessory-card h3 {
  margin-top: 14px;
  font-size: 1.08rem;
}

.accessory-card p {
  margin: 5px 0 0;
  font-size: 0.94rem;
}

.ring-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.ring-card {
  min-height: 205px;
  padding: 22px;
}

.ring-icon {
  width: 54px;
  height: 54px;
  display: block;
  margin-bottom: 20px;
  border: 9px solid var(--aqua);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255, 254, 250, 0.92), 0 12px 28px rgba(104, 198, 198, 0.26);
}

.ring-icon.gold {
  border-color: var(--gold);
}

.ring-icon.silver {
  border-color: var(--silver);
}

.ring-icon.mixed {
  border-color: var(--gold);
  border-left-color: var(--aqua);
  border-bottom-color: var(--silver);
}

.ring-card h3 {
  font-size: 1.2rem;
}

.ring-card p {
  margin: 9px 0 0;
  font-size: 0.97rem;
}

.section-location {
  padding-bottom: 52px;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
}

.location-layout {
  display: grid;
  gap: 16px;
}

.store-tabs-shell {
  position: relative;
  min-width: 0;
}

.store-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.store-scroll-control {
  display: none;
}

.store-tab {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius-card);
  color: var(--text);
  background: rgba(255, 254, 250, 0.78);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.store-tab:hover {
  transform: translateY(-2px);
}

.store-tab.is-active {
  border-color: rgba(104, 198, 198, 0.72);
  background: var(--paper-blue);
}

.store-tab span {
  color: var(--aqua-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.store-tab strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.store-detail {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius-panel);
  padding: 18px;
  background: rgba(255, 254, 250, 0.82);
  box-shadow: var(--shadow-panel);
}

.store-copy {
  align-self: center;
}

.store-city {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--paper);
  background: var(--aqua);
  font-size: 0.82rem;
  font-weight: 900;
}

.store-copy h3 {
  font-size: 1.55rem;
  line-height: 1.12;
}

.store-copy p {
  margin: 10px 0 0;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.map-frame {
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 22px;
  background: var(--paper-blue);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.faq-section {
  padding-top: 52px;
  border-top: 1px solid rgba(5, 5, 5, 0.06);
  background:
    linear-gradient(180deg, var(--paper-soft), var(--paper));
}

.faq-container {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.86);
  box-shadow: 0 12px 32px rgba(23, 45, 45, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(104, 198, 198, 0.72);
  box-shadow: 0 18px 42px rgba(23, 45, 45, 0.11);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.35;
}

.faq-question:hover,
.faq-question:focus-visible {
  background: var(--paper-blue);
}

.faq-question:focus-visible {
  outline: 2px solid var(--aqua-dark);
  outline-offset: -3px;
}

.faq-icon {
  width: 30px;
  height: 30px;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid rgba(104, 198, 198, 0.6);
  border-radius: 50%;
  background: var(--paper-blue);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p {
  margin-top: 12px;
}

.site-footer {
  padding: 48px 0;
  color: var(--paper);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  gap: 30px;
}

.footer-about {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--paper);
  font-family: var(--title-font);
  font-size: 1.48rem;
  font-weight: 850;
  line-height: 1;
}

.footer-logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--paper);
}

.site-footer p {
  margin: 0;
  color: rgba(251, 250, 247, 0.72);
}

.footer-link {
  color: var(--aqua);
  font-weight: 850;
  text-decoration: none;
}

.footer-contact,
.newsletter-form,
.newsletter-form label {
  display: grid;
  gap: 8px;
}

.footer-contact strong,
.newsletter-form label strong {
  color: var(--paper);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--aqua);
  overflow-wrap: anywhere;
  text-decoration: none;
}

.newsletter-form label span {
  color: rgba(251, 250, 247, 0.72);
  font-size: 0.92rem;
}

.newsletter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.newsletter-row input {
  min-width: 0;
  flex: 1 1 190px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(251, 250, 247, 0.2);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(251, 250, 247, 0.08);
  font: inherit;
  outline: none;
}

.newsletter-row input::placeholder {
  color: rgba(251, 250, 247, 0.48);
}

.newsletter-row input:focus {
  border-color: var(--aqua);
}

.newsletter-row button {
  height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--aqua);
  cursor: pointer;
  font-weight: 850;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.whatsapp-menu {
  width: min(320px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-panel);
}

.whatsapp-menu:not([hidden]) {
  display: grid;
  gap: 8px;
  animation: whatsappMenuIn 180ms ease-out;
}

.whatsapp-menu p {
  margin: 0 2px 4px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.whatsapp-menu a {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(104, 198, 198, 0.32);
  border-radius: 10px;
  background: var(--paper-blue);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.whatsapp-menu a:hover,
.whatsapp-menu a:focus-visible {
  border-color: var(--aqua-dark);
  transform: translateY(-1px);
}

.whatsapp-menu strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.whatsapp-menu span {
  color: var(--muted);
  font-size: 0.86rem;
}

.whatsapp-float {
  width: 64px;
  height: 64px;
  position: relative;
  display: grid;
  place-items: center;
  border: 2px solid #69d58d;
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 16px 38px rgba(38, 126, 73, 0.34);
  cursor: pointer;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(105, 213, 141, 0.62);
  animation: whatsappPulse 1.8s ease-out infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whatsappPulse {
  from {
    opacity: 0.78;
    transform: scale(0.82);
  }
  to {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes whatsappMenuIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 680px) {
  .quick-grid,
  .ring-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .newsletter-form {
    grid-column: 1 / -1;
  }
}

@media (min-width: 860px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .quick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gift-grid {
    grid-template-columns: 1fr 0.78fr;
    align-items: center;
  }

  .location-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: stretch;
  }

  .store-detail {
    grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
    min-height: 438px;
    padding: 24px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 390px;
  }
}

@media (min-width: 1020px) {
  .ring-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(210px, 0.9fr) minmax(220px, 0.8fr) minmax(320px, 1.3fr);
  }

  .newsletter-form {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    width: 166px;
    height: 44px;
  }

  .hero {
    min-height: 82svh;
    padding: 122px 0 62px;
    background: url("images/foto-fundo-inicial.jpeg") center 34% / cover no-repeat;
  }

  .hero::before {
    background:
      linear-gradient(180deg, transparent 66%, rgba(251, 250, 247, 0.78) 86%, var(--paper) 100%),
      linear-gradient(
        90deg,
        rgba(104, 198, 198, 0.8) 0%,
        rgba(104, 198, 198, 0.64) 42%,
        rgba(104, 198, 198, 0.32) 72%,
        rgba(104, 198, 198, 0.06) 100%
      );
    backdrop-filter: blur(1.6px);
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  .hero-lead {
    font-size: 1.55rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero-points span,
  .care-list span {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }

  .section {
    padding: 68px 0;
  }

  #aliancas {
    padding-bottom: 36px;
  }

  .section-location {
    padding-top: 36px;
    padding-bottom: 30px;
  }

  .faq-section {
    padding-top: 30px;
  }

  .faq-list {
    margin-top: 28px;
  }

  .faq-question {
    min-height: 70px;
    padding: 16px;
  }

  .faq-answer {
    padding: 0 16px 18px;
  }

  .quick-strip {
    padding-bottom: 54px;
  }

  .carousel-track {
    --mobile-gap: 16px;
    --mobile-slide: calc((100vw - (var(--mobile-gap) * 2)) * 0.6);
    gap: var(--mobile-gap);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-inline: calc((100vw - var(--mobile-slide)) / 2);
    scroll-padding-inline: calc((100vw - var(--mobile-slide)) / 2);
  }

  .accessory-card {
    flex: 0 0 var(--mobile-slide);
    scroll-snap-align: center;
  }

  .accessory-photo {
    min-height: var(--mobile-slide);
  }

  .accessory-card h3 {
    font-size: 1rem;
  }

  .accessory-card p {
    font-size: 0.88rem;
  }

  .store-tabs {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .store-scroll-control:not([hidden]) {
    width: 42px;
    height: 42px;
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(104, 198, 198, 0.72);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(251, 250, 247, 0.96);
    box-shadow: 0 10px 28px rgba(23, 45, 45, 0.2);
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
  }

  .store-scroll-prev {
    left: 8px;
  }

  .store-scroll-next {
    right: 8px;
  }

  .store-scroll-control svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .store-tabs::-webkit-scrollbar {
    display: none;
  }

  .store-tab {
    flex: 0 0 206px;
    scroll-snap-align: start;
  }

  .store-detail {
    border-radius: 22px;
  }

  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 420px) {
  .header-inner {
    padding-right: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 150px;
    height: 42px;
  }

  .menu-toggle {
    width: 50px;
  }

  h1 {
    font-size: 2.82rem;
  }

  h2 {
    font-size: 1.92rem;
  }

  .hero-lead {
    font-size: 1.38rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
