:root {
  --ink: #182018;
  --muted: #5a665b;
  --paper: #fffdf6;
  --green: #197a42;
  --lime: #d6e85f;
  --yellow: #ffcb45;
  --red: #df3e35;
  --blue: #2667b5;
  --border: rgba(24, 32, 24, 0.14);
  --shadow: 0 24px 70px rgba(28, 48, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 246, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.brand img {
  display: block;
  width: clamp(116px, 15vw, 168px);
  height: auto;
}

nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--green);
}

.text-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  min-height: clamp(560px, 72vh, 760px);
  padding: clamp(38px, 5vw, 68px) clamp(18px, 6vw, 84px);
  overflow: hidden;
}

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

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

h2 {
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 0.98;
}

h2 {
  max-width: 840px;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5.3vw, 5rem);
}

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

.hero-statement {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.3rem, 5.2vw, 5.25rem);
  font-weight: 900;
  line-height: 1.02;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-weight: 800;
}

.button.primary {
  background: var(--green);
  color: white;
}

.button.secondary {
  background: white;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 2% 6% 2%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 203, 69, 0.94), rgba(255, 203, 69, 0.2) 42%, transparent 43%),
    conic-gradient(from 8deg, rgba(25, 122, 66, 0.26), transparent 10deg 24deg, rgba(223, 62, 53, 0.2) 26deg 36deg, transparent 38deg 52deg);
}

.hero-product {
  position: absolute;
  width: min(46%, 280px);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.hero-amafil {
  left: 0;
  bottom: 9%;
  width: min(58%, 360px);
  transform: rotate(-5deg);
}

.hero-predilecta {
  right: 2%;
  bottom: 15%;
  width: min(42%, 270px);
  transform: rotate(5deg);
}

.hero-daterra {
  left: 24%;
  top: 5%;
  width: min(48%, 310px);
  transform: rotate(3deg);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 26px clamp(18px, 6vw, 84px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: white;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 150px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: white;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.terrinha-logo {
  background: #d92926;
}

.amafil-logo {
  background: linear-gradient(180deg, #ffdf32, #ffdf32 70%, #159447 70%);
  color: #e32722;
  font-size: 1.35rem;
}

.zaeli-logo {
  background: #f6d942;
  color: #d71925;
  font-size: 1.35rem;
}

.predilecta-logo {
  background: white;
  color: #e21431;
  border-color: rgba(226, 20, 49, 0.2);
  font-size: 1.35rem;
}

.band,
.products-section {
  padding: clamp(54px, 7vw, 94px) clamp(18px, 6vw, 84px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  background: #f0f7e6;
}

.category-grid,
.product-grid {
  display: grid;
  gap: 16px;
}

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

.category-grid article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
}

.category-grid p,
.brand-card p,
.contact p,
footer {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 34px;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 48px rgba(28, 48, 32, 0.08);
}

.product-image {
  display: grid;
  min-height: 250px;
  place-items: center;
  padding: 20px;
  background: #fbfaf2;
}

.product-image img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.brand-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 8px;
  color: white;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-copy h3 {
  font-size: 1.1rem;
  line-height: 1.2;
}

.product-copy p {
  color: var(--muted);
  line-height: 1.55;
}

.amafil-tag {
  background: #198044;
}

.terrinha-tag,
.predilecta-tag {
  background: #d83232;
}

.zaeli-tag {
  background: #d89e00;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: center;
  background: var(--ink);
  color: white;
}

.contact .eyebrow {
  color: var(--lime);
}

.contact p {
  max-width: 700px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-link {
  display: block;
  overflow-wrap: anywhere;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 1.08rem;
  font-weight: 800;
}

.brand-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(42px, 7vw, 90px) clamp(18px, 6vw, 84px);
  border-bottom: 1px solid var(--border);
  background: #fffdf6;
}

.brand-title {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 7.2rem);
  font-weight: 900;
  line-height: 0.94;
}

.brand-hero-card {
  display: grid;
  min-height: 340px;
  place-items: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.brand-hero-card img {
  width: 100%;
  max-height: 310px;
  object-fit: contain;
}

.brand-products {
  padding: clamp(54px, 7vw, 94px) clamp(18px, 6vw, 84px);
}

.brand-products h2 {
  margin-bottom: 28px;
}

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

.famous-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
}

.famous-card img {
  width: 100%;
  height: 150px;
  margin-bottom: 18px;
  object-fit: contain;
  border-radius: 8px;
  background: #fbfaf2;
}

.famous-card h3 {
  font-size: 1.2rem;
}

.famous-card p {
  color: var(--muted);
  line-height: 1.55;
}

.product-note {
  margin-top: auto;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
}

.brand-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font: inherit;
  padding: 12px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  justify-content: center;
  width: 100%;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 6vw, 84px);
  background: #121812;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer-logo {
  width: 116px;
  height: auto;
  border-radius: 8px;
  background: white;
  padding: 8px;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .contact,
  .brand-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

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

@media (max-width: 640px) {
  .site-header,
  nav,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

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

  .hero-product {
    padding: 10px;
    transform: none;
  }

  .category-grid,
  .product-grid,
  .famous-grid {
    grid-template-columns: 1fr;
  }
}
