:root {
  --bg: #080907;
  --bg-soft: #10130d;
  --bg-card: rgba(21, 24, 17, 0.78);
  --text: #fff8e8;
  --muted: #c7bfae;
  --lime: #baff2f;
  --mint: #45d88b;
  --amber: #d79637;
  --gold: #f4c86a;
  --line: rgba(255, 248, 232, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(186, 255, 47, 0.18), transparent 24rem),
    radial-gradient(circle at 90% 18%, rgba(215, 150, 55, 0.14), transparent 24rem),
    linear-gradient(135deg, #080907 0%, #12140e 48%, #070806 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  min-width: 320px;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.section {
  position: relative;
  padding: 108px 0;
  scroll-margin-top: var(--header-height);
}

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

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

h1,
h2 {
  max-width: 850px;
  line-height: 0.95;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(4.5rem, 12vw, 10.5rem);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 6vw, 5.7rem);
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.btn {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.btn--primary {
  color: #121006;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  box-shadow: 0 14px 32px rgba(186, 255, 47, 0.16);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 18px 42px rgba(186, 255, 47, 0.25);
}

.btn--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  border-color: rgba(186, 255, 47, 0.45);
  background: rgba(186, 255, 47, 0.08);
}

.btn--ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    linear-gradient(rgba(8, 9, 7, 0.86), rgba(8, 9, 7, 0.94)),
    url("Assets/Images/Produto/pecatoLatanamesa.jpeg") center / cover;
}

body:not(.is-locked) .age-gate {
  display: none;
}

.age-gate__panel {
  width: min(520px, 100%);
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 7, 0.88);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(18px);
}

.age-gate__logo {
  width: 132px;
  height: 92px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.age-gate h1 {
  margin: 0 auto 16px;
  font-size: clamp(2rem, 7vw, 3.4rem);
  text-transform: none;
}

.age-gate__copy {
  margin-bottom: 26px;
}

.age-gate__actions {
  display: grid;
  gap: 12px;
}

.age-gate__message {
  min-height: 26px;
  margin: 18px 0 0;
  color: var(--gold);
  font-weight: 700;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 14px max(20px, calc((100vw - 1160px) / 2));
  background: rgba(8, 9, 7, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: auto;
  max-width: 160px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.site-nav a {
  color: rgba(255, 248, 232, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--lime);
}

.header-cta {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  color: #151105;
  background: var(--lime);
  font-size: 0.84rem;
  font-weight: 850;
  cursor: pointer;
}

[data-whatsapp] {
  position: relative;
  z-index: 5;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 58px);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  content: "";
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}

.hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 9, 7, 0.93), rgba(8, 9, 7, 0.5) 48%, rgba(8, 9, 7, 0.92)),
    url("Assets/Images/Produto/pecatoLatanamesa.jpeg") center / cover;
  opacity: 0.42;
  transform: scale(1.02);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 48px;
}

.hero__lead {
  max-width: 730px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(1.28rem, 2.4vw, 2.15rem);
  line-height: 1.28;
}

.hero__text {
  max-width: 620px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(186, 255, 47, 0.24);
  border-radius: 999px;
  color: var(--text);
  background: rgba(8, 9, 7, 0.52);
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.hero__visual img {
  position: relative;
  z-index: 1;
  width: min(360px, 82vw);
  max-height: 68svh;
  object-fit: contain;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.55));
  animation: floatCan 5.5s ease-in-out infinite;
}

.hero__glow {
  position: absolute;
  pointer-events: none;
  width: min(390px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(244, 200, 106, 0.26), transparent 58%),
    radial-gradient(circle, rgba(186, 255, 47, 0.2), transparent 70%);
  filter: blur(8px);
}

.split,
.product__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 56px;
}

.split__media img,
.product__photo,
.gallery figure,
.contact__box,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
}

.split__content p,
.product__content p {
  max-width: 660px;
}

.statement {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
  border-left: 3px solid var(--lime);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.statement strong {
  color: var(--text);
  font-size: 1.05rem;
}

.statement span {
  color: var(--muted);
}

.product {
  background:
    linear-gradient(180deg, rgba(8, 9, 7, 0.2), rgba(8, 9, 7, 0.92)),
    radial-gradient(circle at 72% 50%, rgba(215, 150, 55, 0.2), transparent 28rem);
}

.product__grid {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.92fr);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.info-grid article,
.partner-grid article {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.info-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.info-grid strong {
  color: var(--text);
  line-height: 1.35;
}

.product__showcase {
  position: relative;
  min-height: 620px;
}

.product__can {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 0;
  width: min(270px, 44vw);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.55));
}

.product__photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(430px, 78%);
  aspect-ratio: 0.92;
  object-fit: cover;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  margin: 0;
  background: var(--bg-soft);
}

.gallery figure:nth-child(1),
.gallery figure:nth-child(2) {
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition:
    transform 500ms ease,
    filter 500ms ease;
}

.gallery figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.reps {
  background:
    linear-gradient(180deg, rgba(8, 9, 7, 0.98), rgba(16, 19, 13, 0.96)),
    radial-gradient(circle at 8% 40%, rgba(69, 216, 139, 0.17), transparent 24rem);
}

/* ===== Seção Representantes / Expansão Comercial ===== */

.representantes-section,
.expansao-section {
  overflow: hidden;
}

.representantes-section .container,
.expansao-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.representantes-grid,
.representantes-content,
.expansao-grid {
  display: grid;
  grid-template-columns: minmax(320px, 560px) minmax(420px, 520px);
  justify-content: space-between;
  align-items: start;
  column-gap: 88px;
  row-gap: 32px;
}

.representantes-texto,
.expansao-texto {
  width: 100%;
  max-width: 560px;
  min-width: 0;
}

.representantes-form,
.expansao-form {
  width: 100%;
  max-width: 520px;
  min-width: 0;
  justify-self: end;
}

.representantes-texto h2,
.expansao-texto h2 {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 0 24px 0;
  font-size: clamp(3.5rem, 5vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.representantes-texto p,
.expansao-texto p {
  max-width: 520px;
}

.representantes-cards,
.expansao-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 520px;
  margin: 32px 0;
}

.representantes-cards .full,
.expansao-cards .full {
  grid-column: 1 / -1;
}

.representantes-form form,
.expansao-form form,
.representantes-form .form-card,
.expansao-form .form-card {
  width: 100%;
  max-width: 520px;
}

.partner-grid article {
  display: flex;
  align-items: center;
  min-height: 72px;
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .representantes-grid,
  .representantes-content,
  .expansao-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .representantes-texto,
  .expansao-texto,
  .representantes-form,
  .expansao-form {
    max-width: 100%;
  }

  .representantes-form,
  .expansao-form {
    justify-self: stretch;
  }

  .representantes-texto h2,
  .expansao-texto h2 {
    max-width: 100%;
    font-size: clamp(2.8rem, 10vw, 5rem);
  }

  .representantes-cards,
  .expansao-cards {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .representantes-cards,
  .expansao-cards {
    grid-template-columns: 1fr;
  }

  .representantes-texto h2,
  .expansao-texto h2 {
    font-size: clamp(2.4rem, 13vw, 4rem);
    line-height: 1;
  }
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row--half {
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 14px;
}

label {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 248, 232, 0.2);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(8, 9, 7, 0.72);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

input,
select {
  height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  min-height: 128px;
  padding: 14px;
}

select option {
  color: #151105;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(186, 255, 47, 0.16);
}

.contact {
  padding-bottom: 92px;
}

.contact__box {
  padding: clamp(28px, 6vw, 58px);
  background:
    linear-gradient(135deg, rgba(186, 255, 47, 0.11), rgba(215, 150, 55, 0.1)),
    rgba(255, 255, 255, 0.05);
}

.contact__box h2 {
  margin-bottom: 18px;
}

.contact__box p {
  max-width: 680px;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.contact__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
}

.contact__channels a {
  color: var(--lime);
}

.site-footer {
  padding: 54px 0 26px;
  background: #050604;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr) minmax(160px, 0.5fr);
  gap: 36px;
}

.footer__logo {
  width: auto;
  max-width: 160px;
  height: auto;
  max-height: 56px;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer__grid p {
  max-width: 430px;
  font-size: 0.94rem;
}

.footer__grid nav,
.footer__contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer__grid a {
  color: rgba(255, 248, 232, 0.78);
  font-weight: 750;
}

.footer__grid a:hover,
.footer__grid a:focus-visible {
  color: var(--lime);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer__bottom p {
  margin: 0;
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCan {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: 82px 0;
  }

  .site-header {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
  }

  .brand {
    grid-column: 1;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .header-cta {
    justify-self: end;
    min-height: 40px;
    padding: 0 12px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 9, 7, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: var(--radius);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(186, 255, 47, 0.08);
  }

  .hero {
    min-height: auto;
    padding-bottom: 72px;
  }

  .hero__grid,
  .split,
  .product__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 26px;
  }

  .hero__content {
    order: 2;
  }

  .hero__visual {
    order: 1;
    min-height: 430px;
  }

  .hero__visual img {
    width: min(310px, 76vw);
    max-height: 440px;
  }

  .split__media {
    order: 2;
  }

  .product__showcase {
    min-height: 540px;
  }

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

  .gallery figure:nth-child(1),
  .gallery figure:nth-child(2) {
    grid-row: auto;
  }

  .gallery figure {
    min-height: 260px;
  }

  .footer__grid,
  .footer__bottom {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    display: grid;
  }
}

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

  h1 {
    font-size: clamp(3.5rem, 19vw, 5.8rem);
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.8rem);
  }

  .site-header {
    min-height: var(--header-height);
    padding: 10px 14px;
  }

  .brand img {
    max-width: 118px;
    max-height: 46px;
  }

  .header-cta {
    max-width: 126px;
    text-align: center;
    font-size: 0.74rem;
    line-height: 1.12;
  }

  .hero {
    padding-top: calc(var(--header-height) + 24px);
  }

  .hero__actions,
  .contact__actions,
  .age-gate__actions {
    display: grid;
  }

  .hero__badges span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero__visual img {
    width: min(280px, 80vw);
    max-height: 360px;
  }

  .info-grid,
  .partner-grid,
  .gallery,
  .form-row--half {
    grid-template-columns: 1fr;
  }

  .product__showcase {
    display: grid;
    justify-items: center;
    min-height: auto;
    gap: 18px;
  }

  .product__can,
  .product__photo {
    position: static;
  }

  .product__can {
    width: min(250px, 72vw);
  }

  .product__photo {
    width: 100%;
  }

  .gallery figure {
    min-height: 280px;
  }

  .contact-form,
  .age-gate__panel {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }
}
