:root {
  color-scheme: light;
  --blue-900: #062b63;
  --blue-800: #07639c;
  --blue-600: #0c93d2;
  --blue-300: #bfefff;
  --green: #7bc438;
  --green-dark: #299735;
  --ink: #12304f;
  --muted: #5d7184;
  --line: #d6e8f2;
  --bg: #f5fbff;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(9, 72, 122, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(123, 196, 56, 0.8);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(150px, 18%) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(7, 99, 156, 0.14);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.brand-logo {
  width: 100%;
  max-width: 230px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--blue-900);
  font-size: 14px;
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue-800);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.icon-link svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-900);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

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

.button-primary {
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 12px 28px rgba(41, 151, 53, 0.28);
}

.button-ghost {
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  color: var(--white);
  background: var(--blue-800);
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-blue {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.22), transparent 27%),
    linear-gradient(135deg, var(--blue-900), var(--blue-600));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  overflow: hidden;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 80px);
}

.hero::before,
.section-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(90deg, transparent 95%, rgba(255, 255, 255, 0.7) 95%),
    linear-gradient(transparent 95%, rgba(255, 255, 255, 0.7) 95%);
  background-size: 86px 86px;
  pointer-events: none;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-facts span {
  padding: 12px 16px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
}

.hero-facts strong {
  display: block;
  color: var(--green-dark);
}

.store-card {
  padding: 18px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.95);
  border: 10px solid rgba(191, 239, 255, 0.55);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.store-sign {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.store-logo {
  width: 72%;
  max-width: 380px;
  min-width: 210px;
  height: auto;
  object-fit: contain;
}

.machine-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  background: var(--green);
  border-radius: 8px;
}

@supports not (min-height: 100svh) {
  .hero {
    min-height: calc(100vh - 76px);
  }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header {
    background: var(--white);
  }
}

.machine-wall figure {
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(1, 91, 143, 0.12);
}

.machine-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.store-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.store-footer span {
  padding: 7px 10px;
  color: var(--blue-800);
  font-size: 12px;
  font-weight: 900;
  background: #e9f8ff;
  border-radius: 999px;
}

.bubble {
  position: absolute;
  z-index: 0;
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.04) 52%, rgba(255, 255, 255, 0.2));
}

.bubble-a {
  width: 92px;
  height: 92px;
  top: 18%;
  right: 6%;
}

.bubble-b {
  width: 48px;
  height: 48px;
  left: 6%;
  bottom: 18%;
}

.bubble-c {
  width: 34px;
  height: 34px;
  right: 42%;
  top: 12%;
}

.quick-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quick-strip span {
  padding: 10px 14px;
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 900;
  background: #e9f8ff;
  border-radius: 999px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.tip-card h2,
.loyalty h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
}

.section-heading p,
.split-copy p,
.tip-card li,
.loyalty p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.steps article,
.tip-card,
.mascot-card,
.location-card,
.loyalty-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(9, 72, 122, 0.08);
}

.service-card {
  padding: 28px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  font-weight: 900;
  background: var(--blue-800);
  border-radius: 8px;
}

.service-card h3,
.steps h3,
.location-card h3 {
  margin: 22px 0 8px;
  color: var(--blue-900);
  font-size: 21px;
}

.service-card p,
.steps p,
.location-card p,
.mascot-card p {
  color: var(--muted);
  line-height: 1.6;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  background: var(--white);
}

.availability-section {
  align-items: stretch;
}

.photo-panel {
  display: grid;
  position: relative;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  background: var(--blue-300);
  border-radius: 8px;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 52% 42%;
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 43, 99, 0.02), rgba(6, 43, 99, 0.18));
  pointer-events: none;
}

.split-copy {
  max-width: 620px;
}

.availability-frame {
  width: 100%;
  min-height: 520px;
  margin: 26px 0 18px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(9, 72, 122, 0.08);
}

.availability-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 28px;
  color: var(--blue-900);
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #e9f8ff);
}

.availability-placeholder strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.availability-placeholder span {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.5;
}

.availability-frame.is-loaded .availability-placeholder {
  display: none;
}

.availability-frame iframe {
  width: 100%;
  height: 620px;
  border: 0;
  background: var(--white);
}

.promotions {
  background: #f5fbff;
}

.promotion-group + .promotion-group {
  margin-top: 42px;
}

.promotion-group-title {
  margin: 0 0 18px;
  color: var(--blue-900);
  font-size: clamp(26px, 3vw, 38px);
  text-align: center;
}

.promotion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.promotion-grid-two {
  max-width: 960px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promotion-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(9, 72, 122, 0.08);
}

.promotion-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: #e7f8ff;
}

.promotion-card-body {
  display: grid;
  place-items: center;
  padding: 16px 18px 18px;
}

.promotion-card-body h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 22px;
}

.section-pattern {
  position: relative;
  overflow: hidden;
  background: #e7f8ff;
}

.section-pattern::before {
  opacity: 0.5;
  background-image:
    linear-gradient(90deg, transparent 96%, rgba(12, 147, 210, 0.16) 96%),
    linear-gradient(transparent 96%, rgba(12, 147, 210, 0.16) 96%);
}

.section-pattern > * {
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps article {
  padding: 26px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  background: var(--green-dark);
  border-radius: 50%;
}

.tips-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 22px;
}

.tip-card,
.mascot-card {
  padding: clamp(24px, 4vw, 42px);
}

.tip-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.mascot-card {
  display: grid;
  place-items: center;
  text-align: center;
}

.mascot-image {
  width: min(100%, 230px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(9, 72, 122, 0.18));
}

.loyalty {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
}

.loyalty h2,
.loyalty p {
  color: var(--white);
}

.loyalty-box {
  padding: 30px;
  color: var(--blue-900);
}

.loyalty-box strong {
  display: block;
  color: var(--green-dark);
  font-size: 38px;
  font-weight: 900;
}

.loyalty-box span {
  display: block;
  margin: 10px 0 24px;
  color: var(--muted);
  line-height: 1.5;
}

.loyalty-box a {
  color: var(--blue-800);
  font-weight: 900;
}

.location {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.location-card {
  padding: 28px;
}

.map-card {
  display: grid;
  align-content: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--blue-900);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  background: var(--green-dark);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(41, 151, 53, 0.36);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  }

  .hero h1 {
    font-size: clamp(42px, 5.6vw, 68px);
  }

  .store-logo {
    width: 78%;
  }

  .service-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(145px, 38%) auto 1fr;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 75px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-actions {
    justify-self: end;
  }

  .hero,
  .section-split,
  .tips-section,
  .loyalty {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 560px;
    width: 100%;
  }

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

@media (max-width: 760px) {
  .section {
    padding: 58px 18px;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .section-heading h2,
  .split-copy h2,
  .tip-card h2,
  .loyalty h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .section-heading p,
  .split-copy p,
  .tip-card li,
  .loyalty p {
    font-size: 16px;
  }

  .service-grid,
  .steps,
  .location-grid,
  .promotion-grid {
    grid-template-columns: 1fr;
  }

  .loyalty-box {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 10px;
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand-logo {
    max-width: 190px;
  }

  .header-actions .icon-link {
    display: none;
  }

  .button-small {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions,
  .hero-facts {
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-facts span {
    width: 100%;
  }

  .store-sign {
    min-height: 70px;
  }

  .store-logo {
    width: 84%;
    min-width: 180px;
  }

  .photo-panel {
    min-height: 300px;
  }

  .availability-frame {
    min-height: 460px;
  }

  .availability-frame iframe {
    height: 540px;
  }

  .photo-panel img {
    object-position: 50% 40%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 38px 18px 48px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.5vw, 42px);
    line-height: 1.03;
  }

  .hero-text {
    font-size: 16px;
  }

  .quick-strip {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .quick-strip span {
    flex: 0 0 auto;
  }

  .store-card {
    border-width: 6px;
    padding: 12px;
  }

  .machine-wall {
    gap: 8px;
    padding: 10px;
  }

  .service-card,
  .steps article,
  .location-card {
    padding: 22px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 0 14px;
  }
}

@media (max-width: 360px) {
  .site-header {
    grid-template-columns: minmax(118px, 42%) auto 1fr;
  }

  .brand-logo {
    max-width: 150px;
  }

  .button-small {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 34px;
  }
}

@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;
  }
}
