:root {
  --ink: #17140f;
  --forest: #263722;
  --leaf: #587743;
  --leaf-light: #7da35e;
  --vibrant: #7cb342;
  --cream: #f5eedf;
  --paper: #fffaf0;
  --sand: #e8d7b7;
  --gold: #d99c3d;
  --gold-soft: #f0b85c;
  --muted: #706b5d;
  --line: rgba(38, 55, 34, 0.12);
  --glass: rgba(23, 20, 15, 0.82);
  --max: 1180px;
  --radius: 24px;
  --radius-sm: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--leaf);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--forest);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 156, 61, 0.08), transparent 24%),
    linear-gradient(180deg, var(--cream) 0%, #fff8e9 42%, #efe3cf 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 250, 240, 0.08);
  background: rgba(23, 20, 15, 0.85);
  color: var(--paper);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: background 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(23, 20, 15, 0.97);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 850;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(217, 156, 61, 0.3);
  transition: box-shadow 300ms ease;
}

.brand:hover img {
  box-shadow: 0 0 0 2px var(--gold);
}

.main-nav {
  display: flex;
  gap: 32px;
  color: rgba(255, 250, 240, 0.65);
  font-size: 0.88rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 4px 0;
  transition: color 250ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: width 300ms ease;
}

.main-nav a:hover {
  color: var(--paper);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  background: var(--gold);
  color: var(--ink);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.header-cta {
  min-height: 36px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.header-cta:hover,
.primary-btn:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(217, 156, 61, 0.3);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  border: 1.5px solid rgba(255, 250, 240, 0.25);
  color: var(--paper);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.secondary-btn:hover {
  border-color: rgba(255, 250, 240, 0.5);
  background: rgba(255, 250, 240, 0.08);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--paper);
  transition: transform 300ms ease, opacity 300ms ease;
  transform-origin: center;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  z-index: 39;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: rgba(23, 20, 15, 0.98);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  color: var(--paper);
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 36px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 850;
  font-size: 1rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 68px;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(217, 156, 61, 0.12), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(124, 179, 66, 0.08), transparent 50%),
    var(--ink);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  align-items: center;
  gap: 60px;
  min-height: calc(100vh - 68px);
  min-height: calc(100svh - 68px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0;
}

.hero-copy {
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.hero-showcase {
  position: relative;
  display: grid;
  place-items: center;
}

.showcase-carousel {
  position: relative;
  width: 100%;
}

.showcase-card {
  display: none;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.04);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 250, 240, 0.08);
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.showcase-media {
  padding: 20px 20px 0;
}

.showcase-media img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
}

.showcase-body {
  padding: 0 22px 20px;
  display: grid;
  gap: 14px;
  text-align: center;
}

.showcase-body .showcase-title {
  margin-bottom: 2px;
  font-size: 1.25rem;
  line-height: 1.15;
  color: var(--paper);
  font-weight: 700;
}

.showcase-body p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.5);
  font-size: 0.85rem;
}

.showcase-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-btn,
.btn-add-carrinho,
.btn-add-carrinho-home {
  background: var(--gold);
  color: var(--ink);
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.showcase-btn:hover,
.btn-add-carrinho:hover,
.btn-add-carrinho-home:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.product-bottom .btn-add-carrinho-home {
  background: var(--gold);
  color: var(--ink);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.showcase-footer strong {
  color: var(--gold);
  font-size: 1.3rem;
}

.showcase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 200ms ease, transform 180ms ease;
}

.showcase-btn:hover {
  background: var(--gold-soft);
  transform: scale(1.04);
}

.showcase-card.is-active {
  display: block;
  animation: carouselFadeIn 500ms ease forwards;
}

@keyframes carouselFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 250, 240, 0.2);
  cursor: pointer;
  transition: background 300ms ease, transform 200ms ease;
  position: relative;
}

.carousel-dot::after {
  content: '';
  position: absolute;
  inset: -16px;
}

.carousel-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 250, 240, 0.2);
  border-radius: 14px;
}

.hero-scroll-indicator span {
  display: block;
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--gold);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(-6px);
    opacity: 1;
  }

  50% {
    transform: translateY(6px);
    opacity: 0.3;
  }
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

h3 {
  margin-top: 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 44px;
}

.section-desc {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.section-desc strong {
  color: var(--ink);
  font-weight: 700;
}

.category-section {
  padding: 88px max(20px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 86% 16%, rgba(217, 156, 61, 0.16), transparent 26%),
    radial-gradient(circle at 10% 88%, rgba(88, 119, 67, 0.12), transparent 30%),
    linear-gradient(180deg, var(--cream) 0%, #f2e6d1 100%);
}

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

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 200px;
  padding: 22px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  isolation: isolate;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(23, 20, 15, 0.12);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: center / cover no-repeat;
  background-image: var(--cat-bg, none);
  transition: transform 500ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(23, 20, 15, 0.05) 0%, rgba(23, 20, 15, 0.7) 100%);
}

.category-card:hover::before {
  transform: scale(1.08);
}


.category-name {
  font-size: 1.04rem;
  font-weight: 850;
  line-height: 1.2;
  color: var(--paper);
}

.category-card.tea::before {
  background-image: url("https://images.unsplash.com/photo-1765153743332-949b8d623d92?auto=format&fit=crop&w=900&q=82");
}

.category-card.bulk::before {
  background-image: url("https://images.unsplash.com/photo-1737735633629-f9ed8408a176?auto=format&fit=crop&w=900&q=82");
}

.category-card.chocolate::before {
  background-image: url("https://images.unsplash.com/photo-1772986237238-253cb89c64e1?auto=format&fit=crop&w=900&q=82");
}

.category-card.milk::before {
  background-image: url("https://images.unsplash.com/photo-1714409571530-62e0942da4e2?auto=format&fit=crop&w=900&q=82");
}

.category-card.protein::before {
  background-image: url("https://images.unsplash.com/photo-1775199603078-e1d964929e10?auto=format&fit=crop&w=900&q=82");
}

.category-card.spices::before {
  background-image: url("https://images.unsplash.com/photo-1701190884222-a2139c70ab84?auto=format&fit=crop&w=900&q=82");
}

.category-card.peanut::before {
  background-image: url("https://images.unsplash.com/photo-1719956797292-21d15f9a14a4?auto=format&fit=crop&w=900&q=82");
}

.category-card.workout::before {
  background-image: url("https://images.unsplash.com/photo-1693996046744-d7d7434bc777?auto=format&fit=crop&w=900&q=82");
}

.category-card.supplements::before {
  background-image: url("https://images.unsplash.com/photo-1763668177859-0ed5669a795e?auto=format&fit=crop&w=900&q=82");
}

.section-divider {
  display: block;
  width: 100%;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.featured-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 88px max(20px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 86% 8%, rgba(217, 156, 61, 0.12), transparent 26%),
    radial-gradient(circle at 14% 92%, rgba(88, 119, 67, 0.08), transparent 30%),
    var(--paper);
}

.featured-section::before {
  display: none;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fffdf6;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(23, 20, 15, 0.08);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(217, 156, 61, 0.12), transparent 44%),
    linear-gradient(145deg, #f9f1dc, #e6d2a8);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.product-media img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(23, 20, 15, 0.12));
  transition: transform 400ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 18px 18px;
}

.product-info h3 {
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.3;
  font-weight: 700;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-bottom strong {
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 850;
}

.product-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 200ms ease, transform 180ms ease;
}

.product-bottom a:hover {
  background: var(--gold-soft);
  transform: scale(1.04);
}

.featured-footer {
  margin-top: 36px;
  text-align: center;
}

.featured-footer p {
  color: var(--muted);
  font-size: 0.92rem;
}

.featured-footer a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms ease;
}

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

.how-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
  padding: 88px max(20px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 18% 20%, rgba(88, 119, 67, 0.13), transparent 28%),
    linear-gradient(180deg, #f2e6d1 0%, #f8efdf 100%);
}

.how-image {
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(38, 55, 34, 0.82), rgba(23, 20, 15, 0.6)),
    url("https://images.unsplash.com/photo-1737735633629-f9ed8408a176?auto=format&fit=crop&w=1400&q=85") center / cover;
  transition: transform 400ms ease;
}

.how-image:hover {
  transform: scale(1.01);
}

.how-image img {
  width: min(56%, 280px);
  border-radius: 50%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transition: transform 400ms ease;
}

.how-image:hover img {
  transform: scale(1.04);
}

.step-list {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.step-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}

.step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--paper);
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.step-item h3 {
  margin-bottom: 4px;
  font-size: 1.05rem;
  font-weight: 800;
}

.step-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.testimonial-section {
  padding: 88px max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(165deg, rgba(38, 55, 34, 0.9), rgba(54, 74, 44, 0.84)),
    url("https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?auto=format&fit=crop&w=1400&q=85") center / cover fixed;
  color: var(--paper);
}

.testimonial-inner h2 {
  margin-bottom: 36px;
}

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

.testimonial-card {
  position: relative;
  margin: 0;
  padding: 30px;
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 240, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform 350ms ease, background 350ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 250, 240, 0.13);
}

.quote-mark {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.6;
}

.testimonial-card p {
  margin-bottom: 20px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 250, 240, 0.82);
  font-style: italic;
}

.testimonial-card footer strong {
  display: block;
  font-weight: 800;
  font-size: 0.88rem;
}

.testimonial-card footer span {
  color: rgba(255, 250, 240, 0.5);
  font-size: 0.8rem;
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 88px max(20px, calc((100vw - var(--max)) / 2)) 56px;
  background:
    linear-gradient(145deg, rgba(38, 55, 34, 0.96), rgba(23, 20, 15, 0.86)),
    url("https://images.unsplash.com/photo-1737735633629-f9ed8408a176?auto=format&fit=crop&w=1400&q=82") center / cover;
  color: var(--paper);
}

.contact-copy h2 {
  max-width: 700px;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold, #d99c3d);
  margin-bottom: 12px;
}

.contact-info {
  color: rgba(255, 250, 240, 0.6);
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 12px 0 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.contact-address {
  margin: 0;
  font-style: normal;
  color: rgba(255, 250, 240, 0.85);
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 14px;
  background: rgba(255, 250, 240, 0.04);
  border-radius: 12px;
  border-left: 2px solid var(--gold, #d99c3d);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 200ms ease, box-shadow 200ms ease;
  min-height: 180px;
}

.contact-address:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

.contact-address strong {
  color: var(--gold, #d99c3d);
  font-weight: 600;
}

.contact-address .contact-icon {
  display: flex;
}

.contact-hours {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 250, 240, 0.85);
  padding: 14px;
  background: rgba(255, 250, 240, 0.04);
  border-radius: 12px;
  border-left: 2px solid var(--gold, #d99c3d);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 200ms ease, box-shadow 200ms ease;
  min-height: 180px;
}

.contact-hours:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

.contact-hours strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold, #d99c3d);
  font-weight: 600;
}

.contact-info {
  color: rgba(255, 250, 240, 0.6);
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 12px 0 0;
}

.contact-actions {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 12px;
  background: rgba(255, 250, 240, 0.04);
  border-radius: 12px;
  border-left: 2px solid var(--gold, #d99c3d);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 200ms ease, box-shadow 200ms ease;
  min-height: 180px;
}

.contact-actions .contact-icon {
  margin-bottom: 8px;
}

.contact-actions:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

.primary-btn.full {
  width: 100%;
  min-height: 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold, #d99c3d), #c78f35);
}

.primary-btn.full::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.primary-btn.full:hover::before {
  left: 100%;
}

.primary-btn.full:hover {
  transform: translateY(-2px);
}

.line-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 2px;
  color: rgba(255, 250, 240, 0.65);
  font-size: 0.85rem;
  line-height: 1.4;
  border-bottom: none;
  transition: color 200ms ease, transform 200ms ease;
}

.line-link:hover {
  color: var(--paper);
  transform: translateX(3px);
  border-bottom-color: transparent;
}

.line-link svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  opacity: 0.7;
  transition: opacity 200ms ease;
}

.line-link:hover svg {
  opacity: 1;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--gold, #d99c3d);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}



.whatsapp-float {
  position: fixed;
  z-index: 50;
  bottom: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 250ms ease, box-shadow 250ms ease;
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.55);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-loaded .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.contact-copy.reveal.is-visible {
  animation: fadeInUp 0.5s ease forwards;
}

.contact-cards.reveal.is-visible {
  animation: fadeInUp 0.5s ease 0.1s forwards;
}

/* Fallback: sem JS ou IntersectionObserver tudo visível */
.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-loaded .reveal,
  .js-loaded .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .whatsapp-float {
    animation: none;
  }
}

@media (max-width: 1080px) {

  .hero-inner,
  .how-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    background: var(--ink);
  }

  .hero-bg {
    background:
      radial-gradient(ellipse at 50% 40%, rgba(217, 156, 61, 0.06), transparent 60%),
      var(--ink);
  }

  .hero-showcase {
    max-width: 460px;
  }

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

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

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

@media (max-width: 800px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

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


  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 60px;
    padding: 0 16px;
  }

  .mobile-nav {
    top: 60px;
  }

  .brand span {
    display: none;
  }

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

  .header-cta {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.8rem;
  }

  .menu-toggle span {
    width: 20px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding: 52px 0 44px;
    gap: 36px;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 3.5rem);
  }

  .hero-text {
    font-size: 0.92rem;
  }

  .hero-actions {
    display: grid;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .showcase-media img {
    height: 180px;
  }

  .showcase-body .showcase-title {
    font-size: 1.15rem;
  }

  .showcase-footer strong {
    font-size: 1.15rem;
  }

  .category-section,
  .featured-section,
  .how-section,
  .contact-section,
  .testimonial-section {
    padding: 64px 16px;
  }

  .section-desc {
    font-size: 0.92rem;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

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

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

  .category-card {
    min-height: 150px;
    padding: 18px;
  }


  .product-media {
    min-height: 190px;
  }

  .product-media img {
    height: 160px;
  }

  .how-image {
    min-height: 240px;
  }

  .how-image img {
    width: 45%;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }



  .contact-actions {
    padding: 18px;
  }

  .contact-section {
    gap: 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-address,
  .contact-hours {
    padding: 16px;
  }

  .line-link {
    padding: 10px 0;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .section-divider svg {
    height: 32px;
  }

  .contact-address,
  .contact-hours,
  .contact-actions {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-media {
    min-height: 120px;
    padding: 10px;
  }

  .product-media img {
    height: 100px;
  }

  .product-badge {
    top: 6px;
    left: 6px;
    padding: 3px 7px;
    font-size: 0.65rem;
  }

  .product-info {
    padding: 10px 10px 12px;
  }

  .product-info h3 {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .product-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .product-bottom strong {
    font-size: 1rem;
  }

  .product-bottom a {
    min-height: 36px;
    font-size: 0.72rem;
    padding: 0 12px;
    width: 100%;
    justify-content: center;
  }
}

.copyright {
  padding: 20px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  text-align: center;
  border-top: 1px solid rgba(255, 250, 240, 0.06);
}

.copyright p {
  margin-bottom: 0;
  font-size: 0.78rem;
  color: rgba(255, 250, 240, 0.3);
}
