* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #08783f;
  --green-dark: #04562d;
  --green-soft: #e9f5ec;
  --brown: #32180b;
  --brown-light: #4a2815;
  --cream: #fffaf0;
  --white: #ffffff;
  --text: #243127;
  --muted: #68736b;
  --shadow: 0 18px 50px rgba(27, 48, 34, .12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.header {
  min-height: 760px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(4, 63, 37, .90), rgba(8, 120, 63, .68)),
    url("vitalaia.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.header::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  right: -170px;
  top: 120px;
}

.navbar {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: .92rem;
  font-weight: 600;
}

.nav-links a {
  opacity: .9;
  transition: opacity .2s, transform .2s;
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-whatsapp {
  background: var(--white);
  color: var(--green-dark);
  padding: 11px 19px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}

.hero {
  min-height: 674px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-tag {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: #b9e8c9;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.02;
  margin: 16px 0 24px;
  letter-spacing: -.045em;
}

.hero h1 span {
  color: #d9f3df;
}

.hero-copy > p {
  max-width: 570px;
  font-size: 1.1rem;
  color: rgba(255,255,255,.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 14px 23px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s;
}

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

.btn-primary {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
}

.btn-light {
  border: 1px solid rgba(255,255,255,.55);
  color: var(--white);
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 500px);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 28px;
  border: 8px solid rgba(255,255,255,.88);
  box-shadow: 0 25px 70px rgba(0,0,0,.25);
}

.floating-card {
  position: absolute;
  left: -30px;
  bottom: 28px;
  padding: 17px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  color: var(--brown);
  box-shadow: var(--shadow);
  display: grid;
}

.floating-card strong {
  color: var(--green);
  font-size: 1.05rem;
}

.floating-card span {
  font-size: .78rem;
  font-weight: 600;
}

.section {
  padding: 100px 0;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}

.section-tag {
  color: var(--green);
}

h2 {
  color: var(--brown);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  margin-top: 12px;
}

.intro p {
  color: var(--muted);
  font-size: 1.05rem;
}

.flavors {
  background: var(--green-soft);
}

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

.section-heading p {
  color: var(--muted);
  margin-top: 10px;
}

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

.flavor-card {
  background: var(--white);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(37, 73, 50, .07);
  transition: transform .25s, box-shadow .25s;
}

.flavor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.flavor-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.passion { background: #fff0b9; color: #d68b00; }
.berry { background: #f0ddff; color: #69289c; }
.peach { background: #ffe1c7; color: #d96824; }
.strawberry { background: #ffe0e5; color: #d72e54; }
.pineapple { background: #fff0b2; color: #a87a00; }
.natural { background: #dff3e4; color: var(--green); }

.flavor-card h3 {
  color: var(--brown);
  font-size: 1.15rem;
}

.flavor-card p {
  color: var(--muted);
  font-size: .92rem;
  margin: 7px 0 18px;
}

.flavor-card a {
  color: var(--green);
  font-size: .85rem;
  font-weight: 800;
}

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

.order-box {
  background: var(--brown);
  color: var(--white);
  border-radius: 30px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 50px;
  position: relative;
  overflow: hidden;
}

.order-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  right: -100px;
  top: -130px;
  background: rgba(80, 157, 99, .18);
}

.light-tag {
  color: #b9e8c9;
}

.order-box h2 {
  color: var(--white);
  max-width: 600px;
}

.order-copy p {
  color: rgba(255,255,255,.78);
  margin: 16px 0 28px;
  max-width: 560px;
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
}

.wa-symbol {
  font-size: 1.4rem;
}

.order-info {
  display: grid;
  align-content: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.info-item {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
}

.info-label {
  display: block;
  color: #b9e8c9;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  margin-bottom: 4px;
}

.info-item strong {
  font-size: 1.05rem;
}

.footer {
  background: #241107;
  color: rgba(255,255,255,.72);
  padding: 28px 0 85px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: .82rem;
}

.footer-brand {
  color: var(--white);
}

.footer a:last-child {
  color: #b9e8c9;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(0,0,0,.22);
  font-size: .9rem;
}

.floating-whatsapp span {
  font-size: 1.3rem;
}

@media (max-width: 900px) {
  .header {
    min-height: auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 65px 0 80px;
  }

  .hero-visual {
    justify-self: center;
    max-width: 520px;
  }

  .intro-grid,
  .order-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .order-box {
    padding: 45px 30px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .navbar {
    height: 72px;
  }

  .nav-whatsapp {
    padding: 9px 14px;
    font-size: .82rem;
  }

  .hero {
    padding-top: 45px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .floating-card {
    left: 10px;
    bottom: 15px;
  }

  .section {
    padding: 70px 0;
  }

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

  .order-box {
    border-radius: 22px;
    padding: 36px 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .floating-whatsapp strong {
    display: none;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    justify-content: center;
    padding: 0;
    right: 16px;
    bottom: 16px;
  }
}
