:root {
  --cream: #f6f0e6;
  --cream-2: #fffaf1;
  --beige: #eadcc8;
  --caramel: #bd7e42;
  --gold: #d6a84f;
  --brown: #6d5544;
  --dark: #2b211a;
  --soft-brown: #8b7563;
  --white: #ffffff;
  --line: rgba(109, 85, 68, 0.18);
  --shadow: 0 22px 56px rgba(43, 33, 26, 0.16);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown);
  font-family: "Trebuchet MS", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(214, 168, 79, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--cream-2), var(--cream));
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(43, 33, 26, 0.12);
}

.brand strong,
.footer-brand strong {
  display: block;
  color: var(--dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.brand small {
  color: var(--caramel);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
}

.nav-menu a {
  padding: 8px 0;
}

.nav-menu a:hover {
  color: var(--caramel);
}

.nav-cta,
.btn {
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta {
  padding: 12px 18px !important;
  background: var(--dark);
  color: var(--cream-2) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream-2);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: calc(100vh - 87px);
  overflow: hidden;
  background: var(--dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 33, 26, 0.84), rgba(43, 33, 26, 0.5) 46%, rgba(43, 33, 26, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 6vw, 88px);
  color: var(--cream-2);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--caramel);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.hero h1 {
  color: var(--cream-2);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  max-width: 850px;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--caramel);
  color: var(--white);
}

.btn-light {
  border-color: rgba(255, 250, 241, 0.5);
  background: rgba(255, 250, 241, 0.12);
  color: var(--white);
}

.btn-outline {
  border-color: var(--caramel);
  color: var(--dark);
}

.btn-cream {
  background: var(--cream-2);
  color: var(--dark);
}

.btn-big {
  min-height: 58px;
  padding-inline: 30px;
  font-size: 17px;
}

.award-seal {
  width: min(330px, 100%);
  margin-top: 44px;
  padding: 18px 20px;
  border: 1px solid rgba(214, 168, 79, 0.56);
  border-radius: var(--radius);
  background: rgba(43, 33, 26, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.award-seal span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.award-seal strong {
  display: block;
  margin-top: 6px;
  color: var(--cream-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.1;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.intro-strip div {
  padding: 30px clamp(18px, 4vw, 58px);
  background: var(--cream-2);
}

.intro-strip strong {
  display: block;
  color: var(--dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.intro-strip span {
  display: block;
  margin-top: 8px;
  line-height: 1.6;
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.section-grid.reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
}

.section-grid.reverse .image-frame {
  order: 2;
}

.image-frame {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: var(--beige);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.text-block {
  max-width: 680px;
}

.text-block h2,
.section-title h2,
.sales-cta h2,
.location-card h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.text-block p,
.section-title p,
.location-card p {
  color: var(--soft-brown);
  font-size: 17px;
  line-height: 1.75;
}

.callout {
  display: block;
  margin-top: 26px;
  padding: 20px 22px;
  border-left: 5px solid var(--caramel);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 250, 241, 0.75);
  color: var(--dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.2;
}

.story {
  background:
    linear-gradient(rgba(246, 240, 230, 0.92), rgba(246, 240, 230, 0.92)),
    url("assets/Queijaria.jpg") center/cover;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-title.align-left {
  margin-inline: 0;
  text-align: left;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--cream-2);
  box-shadow: 0 18px 46px rgba(43, 33, 26, 0.08);
}

.product-card.featured {
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.product-content {
  padding: 26px;
}

.tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--caramel);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-content h3 {
  font-size: 31px;
  line-height: 1.05;
}

.product-content p {
  color: var(--soft-brown);
  line-height: 1.65;
}

.weight {
  color: var(--dark) !important;
  font-weight: 900;
}

.price {
  margin: 20px 0;
  color: var(--dark);
  font-size: 30px;
  font-weight: 900;
}

.product-buy {
  width: 100%;
}

.cheese-info {
  background: var(--dark) url("assets/Paulo.jpg") center/cover;
  color: var(--cream-2);
}

.cheese-overlay {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 76px);
  background: linear-gradient(90deg, rgba(43, 33, 26, 0.88), rgba(43, 33, 26, 0.62));
}

.cheese-info h2,
.sales-cta h2 {
  color: var(--cream-2);
}

.cheese-info p {
  color: rgba(255, 250, 241, 0.82);
}

.info-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1060px;
  margin: 34px 0 0;
}

.info-list div {
  padding: 22px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.1);
}

.info-list dt {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-list dd {
  margin: 8px 0 0;
  color: var(--cream-2);
  line-height: 1.45;
}

.awards {
  background: var(--cream-2);
}

.awards-photo img {
  object-position: 32% center;
}

.award-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--soft-brown);
  line-height: 1.5;
}

.award-list li::marker {
  color: var(--caramel);
}

.gallery {
  background: var(--beige);
}

.gallery-carousel {
  position: relative;
  margin-inline: calc(clamp(18px, 5vw, 76px) * -1);
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px clamp(18px, 5vw, 76px) 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--caramel) rgba(109, 85, 68, 0.12);
  -webkit-overflow-scrolling: touch;
}

.gallery-track::-webkit-scrollbar {
  height: 8px;
}

.gallery-track::-webkit-scrollbar-track {
  background: rgba(109, 85, 68, 0.12);
  border-radius: 999px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: var(--caramel);
  border-radius: 999px;
}

.gallery-item {
  flex: 0 0 min(720px, 74vw);
  overflow: hidden;
  min-height: 430px;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: var(--cream-2);
  box-shadow: 0 16px 42px rgba(43, 33, 26, 0.14);
  cursor: pointer;
  scroll-snap-align: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.sales-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(60px, 8vw, 96px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(43, 33, 26, 0.86), rgba(43, 33, 26, 0.62)),
    url("assets/Queijo.jpg") center/cover;
  color: var(--cream-2);
}

.sales-cta p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 250, 241, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

.location {
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
}

.location-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--cream-2);
  box-shadow: var(--shadow);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 76px);
  background: var(--dark);
  color: rgba(255, 250, 241, 0.78);
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 82px;
  height: 82px;
  border-radius: 18px;
  object-fit: cover;
}

.footer-brand strong {
  color: var(--cream-2);
}

.footer p {
  margin: 6px 0;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer a:hover {
  color: var(--gold);
}

.footer-contact strong {
  display: block;
  margin-top: 12px;
  color: var(--cream-2);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #1f8f4d;
  color: var(--white);
  box-shadow: 0 16px 36px rgba(31, 143, 77, 0.32);
  font-weight: 900;
}

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

.access-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 87px);
  padding: clamp(34px, 7vw, 74px) clamp(16px, 5vw, 76px);
  background: var(--dark);
}

.access-bg {
  position: absolute;
  inset: 0;
}

.access-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.access-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(43, 33, 26, 0.62), rgba(43, 33, 26, 0.78)),
    radial-gradient(circle at top, rgba(214, 168, 79, 0.18), transparent 34rem);
}

.access-panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 32px;
  background: rgba(246, 240, 230, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-logo {
  width: clamp(108px, 24vw, 156px);
  height: clamp(108px, 24vw, 156px);
  margin-bottom: 18px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(43, 33, 26, 0.18);
}

.access-panel h1 {
  font-size: clamp(44px, 9vw, 76px);
  line-height: 0.96;
}

.hero-subtitle {
  margin: 14px 0 0;
  color: var(--caramel);
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 900;
  line-height: 1.35;
}

.hero-intro {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--brown);
  font-size: 17px;
  line-height: 1.7;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin-top: 28px;
}

.quick-button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  min-height: 76px;
  align-items: center;
  align-content: center;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream-2);
  color: var(--dark);
  box-shadow: 0 12px 28px rgba(43, 33, 26, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quick-button:hover {
  transform: translateY(-2px);
  border-color: rgba(189, 126, 66, 0.5);
  box-shadow: var(--shadow);
}

.quick-button span {
  font-size: 18px;
  font-weight: 900;
}

.quick-button small {
  grid-column: 2;
  color: var(--soft-brown);
  font-size: 13px;
  line-height: 1.3;
}

.quick-icon {
  display: grid;
  grid-row: span 2;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(43, 33, 26, 0.1);
  color: var(--dark);
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.quick-button.whatsapp {
  background: #1f8f4d;
  color: var(--white);
}

.quick-button.whatsapp .quick-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.quick-button.whatsapp small {
  color: rgba(255, 255, 255, 0.82);
}

.quick-button.instagram,
.quick-button.tiktok,
.quick-button.maps {
  background: linear-gradient(180deg, var(--cream-2), #f4e6d3);
}

.channel-mark {
  color: var(--caramel);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-card h3 {
  font-size: 27px;
  line-height: 1.08;
}

.final-card p {
  margin: 0;
  color: var(--soft-brown);
  line-height: 1.6;
}

.story-text p {
  margin: 18px 0 0;
  font-size: 18px;
}

.story-text mark {
  padding: 0 4px;
  border-radius: 7px;
  background: rgba(214, 168, 79, 0.22);
  color: var(--dark);
  font-weight: 900;
}

.availability {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(214, 168, 79, 0.16);
  color: var(--dark) !important;
  font-weight: 900;
}

.award-intro {
  padding: 20px 22px;
  border-left: 5px solid var(--caramel);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(246, 240, 230, 0.82);
  color: var(--dark) !important;
  font-size: 18px !important;
}

.award-timeline {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.award-year {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 250, 241, 0.75);
}

.award-year h3 {
  color: var(--caramel);
  font-size: 28px;
}

.award-year ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--soft-brown);
  line-height: 1.5;
}

.award-year li::marker {
  color: var(--caramel);
}

.highlight-year {
  border-color: rgba(189, 126, 66, 0.42);
  background: rgba(214, 168, 79, 0.14);
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(43, 33, 26, 0.88), rgba(43, 33, 26, 0.7)),
    url("assets/Queijo.jpg") center/cover;
  color: var(--cream-2);
}

.final-cta .section-title h2 {
  color: var(--cream-2);
}

.final-cta .section-title p {
  color: rgba(255, 250, 241, 0.78);
}

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

.final-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 26px;
  background: rgba(255, 250, 241, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.final-card h3 {
  color: var(--cream-2);
}

.final-card p {
  color: rgba(255, 250, 241, 0.78);
}

.final-actions {
  display: grid;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(43, 33, 26, 0.86);
}

.modal.open {
  display: flex;
}

.modal img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 22px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 241, 0.45);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.1);
  color: var(--cream-2);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

@media (max-width: 1080px) {
  .nav-menu {
    gap: 11px;
    font-size: 12px;
  }

  .product-grid,
  .info-list {
    grid-template-columns: 1fr 1fr;
  }

  .product-card.featured {
    transform: none;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 87px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--cream-2);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 6px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .intro-strip,
  .section-grid,
  .section-grid.reverse,
  .product-grid,
  .info-list,
  .final-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .section-grid.reverse .image-frame {
    order: initial;
  }

  .image-frame img {
    min-height: 300px;
  }

  .sales-cta,
  .location-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

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

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 9px;
  }

  .nav-menu {
    inset: 75px 0 auto 0;
  }

  .hero h1 {
    font-size: 39px;
  }

  .access-hero {
    min-height: auto;
    padding: 18px 14px 28px;
  }

  .access-panel {
    border-radius: 26px;
    padding: 22px 16px;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

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

  .btn {
    width: 100%;
  }

  .section,
  .cheese-overlay,
  .sales-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gallery-item {
    flex-basis: 84%;
    min-height: 330px;
  }

  .gallery-item img {
    min-height: 330px;
  }

  .award-year {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .final-card {
    min-height: auto;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 14px;
  }
}
