.sora-regular {
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.sora-bold {
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.sora-black {
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}


.plus-jakarta-sans-regular {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.plus-jakarta-sans-bold {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.work-sans-regular {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.work-sans-bold {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

:root {
  --page-max: 1920px;
  --content-max: 1180px;
  --reading-max: 720px;
  --green: #466f48;
  --green-dark: #25422a;
  --green-soft: #edf5ec;
  --red: #d65545;
  --red-dark: #a93d32;
  --red-soft: #fff0ed;
  --ink: #20251f;
  --muted: #687066;
  --line: #e8e2da;
  --cream: #fffaf4;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(62, 44, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(70, 111, 72, 0.12);
  backdrop-filter: blur(16px);
}

.brand img {
  width: auto;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 34px);
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.section-pad {
  position: relative;
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: clamp(68px, 10vw, 124px) clamp(18px, 4vw, 64px);
  overflow: hidden;
}

.section-pad::before,
.section-pad::after {
  position: absolute;
  z-index: 0;
  display: none;
  content: "";
  pointer-events: none;
}

.section-pad > * {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  min-height: calc(100vh - 74px);
  padding-top: clamp(34px, 6vw, 74px);
  background:
    radial-gradient(46rem 38rem at 0% 0%, rgba(214, 85, 69, 0.2), rgba(214, 85, 69, 0.08) 38%, transparent 72%),
    radial-gradient(50rem 44rem at 100% 100%, rgba(70, 111, 72, 0.2), rgba(70, 111, 72, 0.08) 40%, transparent 76%),
    linear-gradient(115deg, #ffffff 0%, #ffffff 48%, rgba(237, 245, 236, 0.98) 48%, #ffffff 92%);
}

.hero-copy {
  max-width: var(--reading-max);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--red-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  display: inline-block;
  width: 18px;
  height: 3px;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

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

h1,
h2 {
  margin: 0;
  color: var(--green-dark);
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  line-height: 1.05;
}

h1 {
  max-width: 13ch;
  font-size: 5.5rem;
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.5rem);
}

h3 {
  margin: 10px 0 12px;
  color: var(--green-dark);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 900;
  line-height: 1.15;
}

.hero-text {
  max-width: 61ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn::before {
  display: inline-block;
  width: 0.58em;
  height: 0.58em;
  margin-right: 9px;
  content: "";
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.24);
}

.btn-secondary::before {
  box-shadow: 0 0 0 4px rgba(70, 111, 72, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(214, 85, 69, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
}

.btn-secondary {
  border-color: rgba(70, 111, 72, 0.28);
  background: var(--white);
  color: var(--green-dark);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  box-shadow: 0 14px 28px rgba(70, 111, 72, 0.12);
}

.btn-secondary.light {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
}

.btn-social {
  gap: 10px;
  min-height: 64px;
  padding: 18px 32px;
  font-size: 1.18rem;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.btn-social::before {
  display: none;
}

.btn-social svg {
  width: 1.35em;
  height: 1.35em;
  flex: 0 0 auto;
  fill: currentColor;
}

.btn-whatsapp {
  background: #25d366;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #1ebe5d;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.28);
}

.btn-instagram {
  background: linear-gradient(135deg, #5267cf 0%, #7b4aa6 30%, #ad3d80 58%, #ce3f70 78%, #d94a4a 100%);
}

.btn-instagram:hover,
.btn-instagram:focus-visible {
  box-shadow: 0 18px 38px rgba(173, 61, 128, 0.24);
  filter: saturate(1.03);
}

.quality-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.quality-strip span,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.quality-strip span::before,
.tag::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: currentColor;
}

.tag-green {
  background: var(--green-soft);
  color: var(--green-dark);
}

.tag-red {
  background: var(--red);
  color: var(--white);
}

.hero-media {
  position: relative;
  min-height: clamp(460px, 70vh, 760px);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  display: grid;
  gap: 2px;
  max-width: 250px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.floating-note strong {
  color: var(--green-dark);
  font-size: 1.02rem;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-heading {
  max-width: 880px;
  margin: 0 auto clamp(36px, 6vw, 72px);
  text-align: center;
}

.section-heading::after {
  display: block;
  width: min(180px, 42vw);
  height: 10px;
  margin: 24px auto 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 12%, var(--green) 12% 42%, transparent 42% 58%, var(--red) 58% 88%, transparent 88% 100%);
  border-radius: 999px;
  opacity: 0.8;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  max-width: 68ch;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.makers-section {
  background:
    radial-gradient(42rem 36rem at 0% 0%, rgba(214, 85, 69, 0.14), rgba(214, 85, 69, 0.06) 42%, transparent 76%),
    radial-gradient(44rem 38rem at 100% 100%, rgba(70, 111, 72, 0.16), rgba(70, 111, 72, 0.06) 42%, transparent 78%),
    linear-gradient(180deg, #ffffff 0%, #fff9f1 52%, #ffffff 100%);
}

.duo-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  max-width: var(--content-max);
  margin: 0 auto clamp(34px, 5vw, 60px);
}

.duo-feature img {
  width: 100%;
  aspect-ratio: 4 / 3.7;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 40%;
  box-shadow: var(--shadow);
}

.duo-feature div {
  position: relative;
  padding: clamp(22px, 4vw, 42px);
  border-top: 3px solid var(--green);
  border-bottom: 3px solid var(--red);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 244, 0.96)),
    var(--white);
}

.duo-feature p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.maker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  max-width: var(--content-max);
  margin: 0 auto;
}

.maker-card {
  position: relative;
  display: grid;
  grid-template-columns: 164px 1fr;
  gap: 22px;
  align-items: center;
  padding: clamp(18px, 3vw, 26px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 245, 236, 0.34)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(70, 111, 72, 0.08);
}

.maker-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--red));
  border-radius: 999px;
}

.maker-card img {
  width: 164px;
  height: 164px;
  border: 5px solid var(--green-soft);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 24%;
}

.maker-card p,
.split-copy p,
.sauce-card p,
.contact-card p,
.site-footer p {
  color: var(--muted);
}

.product-section {
  background:
    radial-gradient(42rem 36rem at 100% 0%, rgba(214, 85, 69, 0.13), rgba(214, 85, 69, 0.05) 42%, transparent 76%),
    radial-gradient(48rem 40rem at 0% 100%, rgba(70, 111, 72, 0.14), rgba(70, 111, 72, 0.05) 44%, transparent 78%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 40%, rgba(255, 240, 237, 0.42) 70%, #ffffff 100%);
}

.split-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(24px, 5vw, 76px);
  max-width: var(--content-max);
  margin: 0 auto clamp(54px, 8vw, 92px);
}

.split-row:last-child {
  margin-bottom: 0;
}

.split-row.reverse .split-image {
  order: 2;
}

.split-image img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-image {
  position: relative;
}

.split-image::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(237, 245, 236, 0.95), rgba(255, 250, 244, 0.92));
  border-radius: 8px;
}

.split-row.reverse .split-image::before {
  inset: 18px 18px -18px -18px;
  background:
    linear-gradient(135deg, rgba(255, 240, 237, 0.98), rgba(237, 245, 236, 0.62));
}

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

.split-copy p {
  font-size: 1.08rem;
}

.sauce-section {
  background:
    radial-gradient(44rem 36rem at 0% 0%, rgba(70, 111, 72, 0.2), rgba(70, 111, 72, 0.08) 42%, transparent 78%),
    radial-gradient(46rem 40rem at 100% 100%, rgba(214, 85, 69, 0.17), rgba(214, 85, 69, 0.07) 42%, transparent 78%),
    linear-gradient(180deg, var(--green-soft), #ffffff 78%),
    var(--green-soft);
}

.sauce-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  max-width: var(--content-max);
  margin: 0 auto;
}

.sauce-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(255, 250, 244, 0.82) 100%),
    var(--white);
  border: 1px solid rgba(70, 111, 72, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(70, 111, 72, 0.1);
}

.sauce-card::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--red));
}

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

.sauce-card div {
  padding: 22px;
}

.contact-section {
  background:
    radial-gradient(40rem 32rem at 0% 0%, rgba(214, 85, 69, 0.14), rgba(214, 85, 69, 0.05) 42%, transparent 76%),
    radial-gradient(48rem 38rem at 100% 100%, rgba(70, 111, 72, 0.16), rgba(70, 111, 72, 0.06) 44%, transparent 78%),
    linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(37, 66, 42, 0.95), rgba(70, 111, 72, 0.94)),
    url("assets/images/molhos-trio.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card .eyebrow,
.contact-card h2,
.contact-card p {
  color: var(--white);
}

.contact-card p {
  max-width: 62ch;
}

.contact-actions {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: max-content;
  min-width: 0;
  max-width: 100%;
}

.contact-actions .btn-social {
  width: 100%;
}

.contact-note {
  width: 100%;
  max-width: 260px;
  margin: 6px 0 0;
  font-size: 0.92rem;
  opacity: 0.82;
}

.site-footer {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 32px 18px 42px;
  text-align: center;
  border-top: 1px solid var(--line);
}

@media (min-width: 1921px) {
  .site-header {
    padding-left: 84px;
    padding-right: 84px;
  }

  .hero {
    min-height: min(1120px, calc(100vh - 74px));
    padding-top: 74px;
    padding-bottom: 96px;
  }

  h1 {
    font-size: 6rem;
  }

  .section-pad::before,
  .section-pad::after {
    display: block;
  }
}

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

.site-footer p {
  margin: 0;
  font-size: 0.96rem;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 18px;
  }

  .hero,
  .duo-feature,
  .split-row,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      radial-gradient(28rem 24rem at 0% 0%, rgba(214, 85, 69, 0.17), rgba(214, 85, 69, 0.07) 42%, transparent 78%),
      radial-gradient(30rem 26rem at 100% 100%, rgba(70, 111, 72, 0.19), rgba(70, 111, 72, 0.08) 42%, transparent 78%),
      linear-gradient(180deg, #ffffff 0%, var(--green-soft) 100%);
  }

  h1 {
    max-width: 14ch;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .split-row.reverse .split-image {
    order: 0;
  }

  .maker-grid,
  .sauce-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    font-size: 0.86rem;
  }

  .nav-links a {
    text-align: center;
  }

  .section-pad {
    padding: 58px 18px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 380px;
  }

  .floating-note {
    left: 12px;
    right: 12px;
    max-width: none;
  }

  .duo-feature img {
    aspect-ratio: 3 / 4;
  }

  .maker-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .maker-card img {
    width: 188px;
    height: 188px;
  }

  .split-image img,
  .sauce-card img {
    aspect-ratio: 4 / 5;
  }

  .contact-card {
    padding: 28px 20px;
  }
}
