* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #f2eef9;
  --bg-soft: #faf7ff;
  --bg-deep: #ebe3fb;

  --text: #16161c;
  --text-soft: #5f6674;

  --white: #ffffff;

  --green: #1fc263;
  --green-dark: #119247;
  --green-soft: rgba(31, 194, 99, 0.14);
  --green-glow: rgba(31, 194, 99, 0.28);

  --purple: #6e35d6;
  --purple-dark: #4f1fb0;
  --purple-soft: rgba(110, 53, 214, 0.14);
  --purple-glow: rgba(110, 53, 214, 0.26);

  --border: rgba(88, 52, 156, 0.12);
  --border-strong: rgba(88, 52, 156, 0.22);

  --shadow-sm: 0 12px 30px rgba(28, 18, 55, 0.08);
  --shadow-md: 0 20px 50px rgba(28, 18, 55, 0.12);
  --shadow-lg: 0 32px 80px rgba(28, 18, 55, 0.2);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.45),
    0 28px 70px rgba(44, 20, 92, 0.16);

  --radius-sm: 18px;
  --radius-md: 26px;
  --radius-lg: 36px;

  --transition: 0.35s ease;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 12%, rgba(110, 53, 214, 0.16), transparent 22%),
    radial-gradient(circle at 92% 88%, rgba(31, 194, 99, 0.12), transparent 20%),
    linear-gradient(180deg, #f7f3ff 0%, #f2eef9 46%, #eef8f1 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(92%, 1200px);
  margin: 0 auto;
}

/* BOTÕES BASE NOVOS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 14px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #28d36b 0%, #17aa52 100%);
  box-shadow: 0 16px 34px rgba(31, 194, 99, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 22px 42px rgba(31, 194, 99, 0.3);
}

.btn-soft {
  color: #f1fff2;
  border: 1px solid rgba(116, 228, 112, 0.38);
  background: rgba(66, 161, 53, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-soft:hover {
  background: rgba(66, 161, 53, 0.3);
}

.btn-outline {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-acompanhar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-dark);
  padding: 13px 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid rgba(24, 161, 77, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(31, 194, 99, 0.08);
}

.btn-acompanhar:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(31, 194, 99, 0.24);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.8);
  color: var(--green-dark);
  border: 1px solid rgba(24, 161, 77, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px rgba(24, 161, 77, 0.08);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* HEADER NOVO */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(41, 21, 67, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.scrolled {
  background: rgba(32, 16, 52, 0.92);
  box-shadow: 0 12px 28px rgba(10, 4, 20, 0.24);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 72px;
  height: 72px;
  max-width: 72px;
  min-width: 72px;
  object-fit: cover;
  border-radius: 18px;
  padding: 6px;
  display: block;
  background: linear-gradient(
    135deg,
    rgba(110, 53, 214, 0.22),
    rgba(31, 194, 99, 0.22)
  );
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
  transition: 0.3s;
}

.brand img:hover {
  transform: scale(1.05);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 10px;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.header-nav a:hover {
  color: #ffffff;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), #6affb0);
  transition: var(--transition);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #d8ffe0;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(30, 16, 60, 0.08);
}

.status-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.status-badge.status-open {
  color: #b8ffcb;
  border-color: rgba(116, 228, 112, 0.28);
  background: rgba(66, 161, 53, 0.16);
}

.status-badge.status-closed {
  color: #ffd5d5;
  border-color: rgba(242, 131, 131, 0.26);
  background: rgba(174, 49, 49, 0.18);
}

.mobile-action {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #ffffff;
  margin: 6px auto;
  border-radius: 10px;
  transition: var(--transition);
}

/* HERO */
.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("../../img/hero-bg.jpeg") center/cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(95deg, rgba(23, 10, 38, 0.9) 0%, rgba(23, 10, 38, 0.72) 45%, rgba(23, 10, 38, 0.35) 74%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.16));
  z-index: 1;
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 36px;
  padding: 110px 0 70px;
}

.hero-copy {
  max-width: 560px;
  color: #fff;
  text-shadow: 0 10px 24px rgba(15, 7, 24, 0.32);
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.12vw, 1.14rem);
  margin-bottom: 24px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-list li {
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
}

.hero-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  font-size: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-promo {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin-left: auto;
}

.hero-promo-window {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(10, 4, 16, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-promo-track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}

.hero-promo-slide {
  min-width: 100%;
  position: relative;
  background: #120a1f;
}

.hero-promo-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 8, 24, 0.04) 0%, rgba(15, 8, 24, 0.72) 100%);
}

.hero-promo-slide img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.hero-promo-content {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff;
}

.hero-promo-content span {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(63, 177, 46, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-promo-content h3 {
  font-size: 1.1rem;
  line-height: 1.18;
  margin-bottom: 6px;
}

.hero-promo-content p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
}

.hero-promo-content .btn {
  font-size: 0.82rem;
  padding: 8px 12px;
  border-radius: 10px;
}

.hero-arrow {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(25, 13, 40, 0.58);
  color: #fff;
  cursor: pointer;
  z-index: 3;
  transition: var(--transition);
}

.hero-arrow:hover {
  background: rgba(31, 194, 99, 0.84);
  border-color: rgba(31, 194, 99, 0.84);
}

.hero-arrow.prev {
  left: -14px;
}

.hero-arrow.next {
  right: -14px;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-top: 12px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dots button.active {
  width: 16px;
  border-radius: 999px;
  background: rgba(94, 225, 78, 1);
}

/* TAGS GERAIS */
.section-tag,
.about-card-badge,
.influencer-label,
.contact-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.section-tag,
.influencer-label {
  background: rgba(31, 194, 99, 0.13);
  color: var(--green-dark);
  border: 1px solid rgba(17, 146, 71, 0.16);
  box-shadow: 0 8px 18px rgba(31, 194, 99, 0.1);
}

.about-card-badge {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-tag {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* BASE */
.section {
  padding: 110px 0;
}

.section-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 54px;
}

.section-heading.small {
  margin-bottom: 38px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 3.8vw, 3.5rem);
  line-height: 1;
  letter-spacing: -1.8px;
  color: var(--text);
  margin: 16px 0 18px;
}

.section-heading p {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 780px;
  margin: 0 auto;
}

.section-heading.light h2,
.section-heading.light p {
  color: #fff;
}

.center {
  text-align: center;
  margin-top: 40px;
}

/* BRAND PURPOSE */
.brand-purpose-section {
  position: relative;
  overflow: hidden;
  padding: 32px 0 0;
}

.brand-purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.brand-purpose-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(30, 15, 60, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.brand-purpose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(30, 15, 60, 0.18);
}

.brand-purpose-image {
  position: relative;
  overflow: hidden;
}

.brand-purpose-image img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 8%;
  transition: transform 0.45s ease;
}

.brand-purpose-card:nth-child(3) .brand-purpose-image img {
  object-position: center 6%;
}

.brand-purpose-card:hover .brand-purpose-image img {
  transform: scale(1.04);
}

.brand-purpose-content {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.brand-purpose-content h3 {
  font-size: 1.45rem;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.6px;
}

.brand-purpose-content p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.98rem;
}

/* ABOUT */
.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(110, 53, 214, 0.16), transparent 18%),
    radial-gradient(circle at 90% 84%, rgba(31, 194, 99, 0.14), transparent 18%),
    linear-gradient(180deg, #fcfbff 0%, #f4edff 44%, #edf8f0 100%);
}

.about-section::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -180px;
  left: -160px;
  background: radial-gradient(circle, rgba(110, 53, 214, 0.24), transparent 60%);
  filter: blur(70px);
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -160px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(31, 194, 99, 0.2), transparent 58%);
  filter: blur(70px);
  pointer-events: none;
}

.about-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.about-hero-text,
.about-info-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-hero-text {
  border-radius: var(--radius-lg);
  padding: 38px;
}

.about-hero-text .section-tag {
  margin-bottom: 16px;
}

.about-hero-text h3 {
  font-size: 2.35rem;
  line-height: 1.02;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
  color: var(--text);
}

.about-hero-text p {
  color: var(--text-soft);
  margin-bottom: 14px;
  font-size: 1.02rem;
}

.about-hero-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #4c1dae 0%, #6e35d6 52%, #18b457 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: 0 30px 64px rgba(54, 24, 108, 0.26);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.about-hero-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 64%);
  filter: blur(12px);
}

.about-hero-card::after {
  content: "";
  position: absolute;
  top: -40px;
  left: -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 66%);
  filter: blur(12px);
}

.about-hero-card h3 {
  font-size: 1.95rem;
  line-height: 1.08;
  margin: 14px 0 14px;
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}

.about-hero-card p,
.about-card-badge {
  position: relative;
  z-index: 1;
}

.about-hero-card p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  line-height: 1.75;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.about-info-card {
  border-radius: 28px;
  padding: 34px;
  transition: 0.4s;
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(30, 15, 60, 0.12);
  min-height: 100%;
}

.about-info-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 70px rgba(30, 15, 60, 0.18);
}

.about-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f2e8ff 0%, #ebfff2 100%);
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.about-info-card h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
  color: var(--text);
}

.about-info-card p {
  color: var(--text-soft);
  line-height: 1.75;
}

.chef-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 60px;
  margin-top: 40px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(30, 15, 60, 0.18);
}

.chef-content h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 12px 0 18px;
}

.chef-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 520px;
}

.chef-highlight {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #6e35d6, #18b457);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 14px 30px rgba(80, 40, 160, 0.25);
}

.chef-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.chef-list li {
  position: relative;
  padding-left: 28px;
  color: #444;
  font-weight: 600;
}

.chef-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-dark);
  font-weight: bold;
}

.chef-photo-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chef-photo {
  width: 100%;
  max-width: 320px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow:
    0 35px 80px rgba(30, 15, 60, 0.25),
    0 0 0 6px rgba(255, 255, 255, 0.7);
  transform: scale(1.02);
}

.chef-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* INFLUENCERS / PARCERIAS */
.influencers-block {
  margin-top: 90px;
  padding: 70px 60px;
  position: relative;
  z-index: 1;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 24px 60px rgba(30, 15, 60, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.influencers-block .section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.influencers-block .section-heading h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 16px;
  color: var(--text);
}

.influencers-block .section-heading p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto;
}

.influencers-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.influencer-card {
  border-radius: 28px;
  overflow: hidden;
  transition: 0.35s ease;
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(88, 52, 156, 0.08);
  box-shadow: 0 18px 45px rgba(28, 18, 55, 0.08);
}

.influencer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(28, 18, 55, 0.14);
}

.influencer-image {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  overflow: hidden;
  background: #ececec;
}

.influencer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.influencer-card:hover .influencer-image img {
  transform: scale(1.04);
}

.influencer-info {
  padding: 24px 22px 26px;
}

.influencer-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 194, 99, 0.12);
  color: var(--green-dark);
  border: 1px solid rgba(17, 146, 71, 0.14);
  box-shadow: 0 8px 18px rgba(31, 194, 99, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
}

.influencer-info h4 {
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  color: var(--text);
}

.influencer-info p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.about-cta {
  margin-top: 42px;
}

.about-cta .btn-primary {
  min-width: 230px;
  padding: 15px 28px;
  font-size: 1rem;
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(31, 194, 99, 0.22);
}

.about-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(31, 194, 99, 0.28);
}

  .contact-section {
  position: relative;
  overflow: hidden;
  margin-top: 160px;
  padding: 120px 0;
  isolation: isolate;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  right: calc((100vw - 100%) / -2);
  z-index: -2;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.1), transparent 22%),
    radial-gradient(circle at 88% 80%, rgba(31, 194, 99, 0.14), transparent 24%),
    linear-gradient(135deg, #43158f 0%, #672fce 46%, #248653 100%);
}

.contact-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  right: calc((100vw - 100%) / -2);
  z-index: -1;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.14), transparent 22%),
    radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.08), transparent 18%);
  pointer-events: none;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-box {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 28px 64px rgba(18, 10, 40, 0.3);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.contact-info h3 {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 1.08rem;
}

.contact-info p {
  color: #4d4d4d;
}

.contact-info a:not(.btn-primary) {
  color: var(--purple);
  font-weight: 700;
}

.contact-info .btn-primary {
  width: fit-content;
  margin-top: 8px;
}

.contact-map {
  min-height: 360px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(20, 12, 45, 0.14);
}

/* FOOTER */
.footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);

  background:
    radial-gradient(circle at top left, rgba(110, 53, 214, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(31, 194, 99, 0.1), transparent 22%),
    linear-gradient(135deg, #17131f 0%, #152019 100%);

  color: #fff;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.footer-social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* TABLET */
@media (max-width: 1100px) {
  .brand-purpose-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

@media (max-width: 992px) {
  .hero-layout,
  .about-hero,
  .chef-section,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
    padding: 120px 0 70px;
    gap: 28px;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero-buttons,
  .hero-list {
    justify-content: center;
  }

  .hero-list {
    justify-items: center;
  }

  .hero-promo {
    margin: 0 auto;
    max-width: 460px;
  }

  .about-columns {
    grid-template-columns: 1fr 1fr;
  }

  .chef-photo {
    max-width: 430px;
    margin: 0 auto;
  }

  .influencers-block {
    padding: 50px 30px;
  }

  .influencers-gallery {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .contact-info .btn-primary {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .chef-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }

  .chef-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand img {
    width: 56px;
    height: 56px;
    min-width: 56px;
    max-width: 56px;
  }

  .status-badge {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .mobile-action {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  .mobile-primary {
    background: linear-gradient(135deg, #28d36b 0%, #17aa52 100%);
    color: #fff !important;
    border-radius: 12px;
    box-shadow: 0 16px 34px rgba(31, 194, 99, 0.2);
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: rgba(29, 15, 47, 0.96);
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    margin-left: 0;
  }

  .header-nav.active,
  .header-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-nav a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 12px 10px;
    border-radius: 12px;
  }

  .header-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .header-nav a::after {
    display: none;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding: 110px 0 56px;
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-list {
    justify-items: flex-start;
    max-width: 240px;
    margin: 0 auto;
  }

  .hero-promo {
    max-width: 100%;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .hero-arrow.prev {
    left: 8px;
  }

  .hero-arrow.next {
    right: 8px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 2.15rem;
  }

  .brand-purpose-section {
    padding-top: 20px;
  }

  .brand-purpose-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-purpose-card,
  .brand-purpose-card.featured {
    grid-column: auto;
    border-radius: 26px;
  }

  .brand-purpose-content {
    padding: 20px 20px 24px;
  }

  .brand-purpose-content h3 {
    font-size: 1.28rem;
  }

  .brand-purpose-image img {
    aspect-ratio: 1 / 1;
  }

  .about-hero-text,
  .about-hero-card,
  .chef-section,
  .contact-box {
    padding: 24px;
  }

  .about-hero-text h3 {
    font-size: 1.9rem;
  }

  .about-hero-card h3,
  .chef-content h3 {
    font-size: 1.8rem;
  }

  .about-columns,
  .influencers-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .chef-photo {
    max-width: 100%;
  }

  .influencers-block {
    margin-top: 70px;
    padding: 34px 20px;
    border-radius: 24px;
  }

  .influencers-block .section-heading {
    margin-bottom: 28px;
  }

  .influencers-block .section-heading h2 {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .influencer-image {
    aspect-ratio: 4 / 4.4;
  }

  .influencer-info {
    padding: 20px 18px 22px;
  }

  .influencer-info h4 {
    font-size: 1.25rem;
  }

  .about-cta {
    margin-top: 30px;
  }

  .about-cta .btn-primary {
    width: 100%;
    min-width: auto;
  }

  .contact-box {
    gap: 22px;
    border-radius: 26px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 250px;
  }
}

/* HOME PROMO MODAL */
.home-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2.8vw, 16px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.home-promo-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(8, 18, 14, 0.62);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.home-promo-card {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 20px));
  max-height: min(88vh, 780px);
  display: grid;
  grid-template-columns: 0.95fr 0.75fr;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(215, 232, 222, 0.9);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transform: translateY(10px) scale(0.985);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.home-promo-modal.is-visible {
  opacity: 1;
}

.home-promo-modal.is-visible .home-promo-backdrop {
  opacity: 1;
}

.home-promo-modal.is-visible .home-promo-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.home-promo-modal.is-closing {
  opacity: 0;
}

.home-promo-modal.is-closing .home-promo-backdrop {
  opacity: 0;
}

.home-promo-modal.is-closing .home-promo-card {
  transform: translateY(8px) scale(0.985);
  opacity: 0;
}

.home-promo-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(8, 18, 14, 0.7);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.home-promo-card.image-only {
  grid-template-columns: 1fr;
  width: min(520px, calc(100vw - 20px));
}

.home-promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  display: block;
}

.home-promo-content {
  background: linear-gradient(145deg, rgba(6, 16, 12, 0.96), rgba(18, 44, 32, 0.94));
  color: #fff;
  padding: 28px 24px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.home-promo-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(238, 255, 246, 0.96);
  background: rgba(111, 243, 168, 0.16);
  border: 1px solid rgba(111, 243, 168, 0.4);
  border-radius: 999px;
  padding: 5px 10px;
}

.home-promo-content h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.home-promo-content p {
  margin: 0;
  color: rgba(242, 249, 245, 0.9);
  font-size: clamp(0.98rem, 1.45vw, 1.1rem);
  line-height: 1.58;
  white-space: pre-line;
  max-width: 28ch;
}

.home-promo-coupon {
  color: #d5ffd6 !important;
  border: 1px solid rgba(119, 247, 167, 0.42);
  background: rgba(119, 247, 167, 0.14);
  border-radius: 10px;
  padding: 8px 10px;
  font-weight: 700;
}

.home-promo-cta {
  width: fit-content;
  border: none;
  border-radius: 12px;
  padding: 11px 16px;
  font-weight: 800;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  color: #0f5d36;
  background: linear-gradient(135deg, #77f7a7, #53e690);
  box-shadow: 0 10px 20px rgba(83, 230, 144, 0.28);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.18s ease;
}

.home-promo-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(83, 230, 144, 0.34);
}

@media (max-width: 900px) {
  .home-promo-card {
    grid-template-columns: 1fr;
    width: min(520px, calc(100vw - 20px));
    max-height: 90vh;
  }

  .home-promo-card img {
    max-height: 42vh;
    height: auto;
  }

  .home-promo-content {
    padding: 20px 16px;
    overflow: auto;
  }

  .home-promo-content p {
    max-width: none;
  }
}
