:root {
  --rose: #d99aaa;
  --rose-strong: #bd6f83;
  --rose-soft: #fff3f6;
  --rose-mist: #f8dce4;
  --ink: #241d20;
  --muted: #75666b;
  --line: #ead2d8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(189, 111, 131, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff8fa 0%, #ffffff 44%, #fff7f9 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.56), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 246, 249, 0.22) 52%, rgba(255, 255, 255, 0.16)),
    rgba(255, 255, 255, 0.18);
  box-shadow:
    0 18px 46px rgba(189, 111, 131, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  transform: translateX(-50%);
  transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.62), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 246, 249, 0.28) 52%, rgba(255, 255, 255, 0.2)),
    rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 18px 48px rgba(36, 29, 32, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 232px;
  height: 52px;
}

.brand img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 650;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: var(--rose-soft);
}

.menu-toggle {
  position: relative;
  z-index: 1;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 243, 246, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 18px rgba(189, 111, 131, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 76px);
  padding: 122px clamp(20px, 5vw, 72px) 54px;
}

.hero-media {
  min-height: 620px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--rose-mist);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  align-self: center;
  max-width: 640px;
  padding-right: clamp(0px, 2vw, 28px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--rose-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5vw, 5.85rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.hero-content > p:not(.eyebrow),
.section-heading,
.split-copy > p,
.corporate p,
.contact-panel p,
.map-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 38px rgba(36, 29, 32, 0.2);
}

.button-whatsapp {
  background: #25d366;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.25);
}

.button-whatsapp:hover {
  background: #1fbd5b;
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button-mail {
  gap: 9px;
  color: var(--white);
  border-color: rgba(0, 122, 255, 0.18);
  background: linear-gradient(180deg, #4aa3ff 0%, #007aff 100%);
  box-shadow: 0 18px 38px rgba(0, 122, 255, 0.18);
}

.button-mail::before {
  content: "✉";
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1;
}

.button-mail:hover {
  background: linear-gradient(180deg, #5fb0ff 0%, #0a84ff 100%);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2 {
  color: var(--ink);
}

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

.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(189, 111, 131, 0.09);
  padding: 28px;
}

.feature-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--rose-strong);
  font-size: 0.9rem;
  font-weight: 850;
}

.feature-grid p,
.steps,
.site-footer,
.contact-link span,
.advantages span {
  color: var(--muted);
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 18px 0 18px 24px;
  border-left: 2px solid var(--rose);
}

.steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.split-image {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.corporate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 42px;
  align-items: center;
  padding: 76px clamp(24px, 4vw, 54px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 29, 32, 0.92), rgba(64, 49, 55, 0.92)),
    url("assets/images/flovelia-vending-evening.jpg") center / cover;
  color: var(--white);
}

.corporate .eyebrow,
.corporate p {
  color: #ffd9e3;
}

.corporate h2 {
  color: var(--white);
}

.advantages {
  display: grid;
  gap: 14px;
}

.advantages div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.advantages strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.08rem;
}

.advantages span {
  display: block;
  color: #ffe7ed;
}

.location-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-band p {
  margin: 0;
  color: var(--rose-strong);
  font-weight: 850;
}

.location-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.location-band span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact {
  padding-bottom: 72px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-link {
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8fa;
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-link:hover {
  border-color: var(--rose);
  transform: translateY(-2px);
}

.contact-link strong {
  overflow-wrap: anywhere;
  font-size: 1.04rem;
}

.map-section {
  padding-top: 0;
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 243, 246, 0.48)),
    rgba(255, 255, 255, 0.34);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(1.16);
  -webkit-backdrop-filter: blur(22px) saturate(1.16);
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(12px, 3vw, 30px);
}

.map-link {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.map-link:hover {
  border-color: var(--rose);
  background: var(--white);
  transform: translateY(-2px);
}

.map-embed {
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--rose-soft);
}

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

.site-footer {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 36px 20px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer img {
  width: 150px;
}

.site-footer p,
.site-footer span {
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .corporate,
  .contact-panel,
  .map-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-media {
    min-height: 520px;
  }

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

  .location-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-band div {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 26px;
  }

  .brand {
    width: 214px;
    height: 50px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 243, 246, 0.46)),
      rgba(255, 255, 255, 0.26);
    box-shadow:
      0 18px 38px rgba(36, 29, 32, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
  }

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

  .site-nav a {
    padding: 14px 16px;
  }

  .hero {
    min-height: auto;
    padding: 100px 16px 40px;
  }

  .hero-media {
    min-height: 440px;
  }

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

  .section {
    width: min(100% - 32px, 1120px);
    padding: 66px 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .corporate {
    width: calc(100% - 32px);
    padding: 42px 22px;
  }
}

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

  h2 {
    font-size: 2.12rem;
  }

  .brand {
    width: 190px;
    height: 46px;
  }

  .hero-media {
    min-height: 360px;
  }

  .contact-link {
    padding: 17px;
  }
}
