:root {
  --bg: #ffffff;
  --surface: #fffaf2;
  --surface-2: #ffffff;
  --text: #23150a;
  --muted: #735334;
  --primary: #6d3a12;
  --primary-2: #b86f22;
  --accent: #f2c061;
  --line: rgba(109, 58, 18, 0.14);
  --shadow: 0 18px 50px rgba(58, 34, 11, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 192, 97, 0.15), transparent 30%),
    radial-gradient(circle at top right, rgba(109, 58, 18, 0.08), transparent 28%),
    linear-gradient(180deg, #fffefc 0%, #ffffff 35%, #fffdf8 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: linear-gradient(90deg, #3f220d, #734216);
  color: #fff7ea;
  font-size: 0.94rem;
}
.topbar-inner {
  display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 10px 0;
}
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(109, 58, 18, 0.08);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0;
}
.brand img { width: 180px; }
.nav { display: flex; align-items: center; gap: 24px; font-weight: 600; }
.nav a { position: relative; }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--primary-2); transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }
.menu-toggle {
  display: none; border: 0; background: transparent; padding: 8px; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 28px; height: 3px; border-radius: 999px; background: var(--primary); margin: 5px 0;
}
.hero { padding: 48px 0 32px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: rgba(242, 192, 97, 0.18); color: var(--primary); font-weight: 700; font-size: 0.86rem; letter-spacing: .04em; text-transform: uppercase;
}
.hero h1, .section-heading h2, .info-block h2, .cta-box h2, .intro-card h2 {
  font-family: 'Cinzel', serif; line-height: 1.05;
}
.hero h1 { font-size: clamp(2.3rem, 4vw, 4.6rem); margin: 18px 0 18px; max-width: 11ch; }
.hero-text { font-size: 1.08rem; line-height: 1.8; color: var(--muted); max-width: 60ch; }
.price-badge {
  display: inline-flex; margin: 26px 0 18px; align-items: center; justify-content: center;
  padding: 16px 26px; border-radius: 18px; background: linear-gradient(135deg, #5b300f, #d08a31);
  color: white; font-size: 1.6rem; font-weight: 800; box-shadow: var(--shadow);
}
.hero-actions, .stack-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 24px; border-radius: 16px; font-weight: 800; transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white; background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 14px 32px rgba(109, 58, 18, 0.22);
}
.btn-secondary {
  color: var(--primary); background: white; border: 1px solid var(--line);
}
.btn-full { width: 100%; }
.hero-data {
  list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; color: var(--muted);
}
.hero-data li {
  padding: 14px 16px; background: rgba(255,255,255,0.72); border: 1px solid rgba(109, 58, 18, 0.08); border-radius: 16px;
}
.hero-visual {
  display: grid; gap: 18px; grid-template-columns: 0.9fr 1.1fr; align-items: end;
}
.hero-card {
  background: white; border-radius: 28px; padding: 18px; box-shadow: var(--shadow); border: 1px solid rgba(109, 58, 18, 0.08);
}
.hero-logo-card { align-self: start; }
.hero-logo-card img { width: 100%; object-fit: contain; aspect-ratio: 1 / 1; }
.hero-product-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: contain; }
.highlight-band { padding: 18px 0 0; }
.highlight-band .container {
  background: linear-gradient(90deg, #49260d, #9b5a1b, #d1902f); color: white; text-align: center;
  padding: 20px; border-radius: 24px; box-shadow: var(--shadow);
}
.highlight-band p { margin: 0; font-size: clamp(1.2rem, 2.5vw, 2rem); font-weight: 800; }
.highlight-band span { color: #ffe39f; }
.section { padding: 88px 0; }
.intro-grid, .info-grid, .footer-grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 24px;
}
.intro-card, .contact-card, .info-block, .cta-box {
  background: rgba(255,255,255,0.84); border: 1px solid rgba(109, 58, 18, 0.08); border-radius: var(--radius); box-shadow: var(--shadow);
}
.intro-card, .contact-card, .info-block { padding: 30px; }
.intro-card p, .section-heading p, .info-block p, .cta-box p { color: var(--muted); line-height: 1.8; }
.contact-card { display: flex; flex-direction: column; justify-content: center; }
.contact-link { font-size: 1.7rem; font-weight: 800; margin: 10px 0 18px; color: var(--primary); }
.section-dark { background: linear-gradient(180deg, #fffaf3, #ffffff); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.section-heading h2 { font-size: clamp(2rem, 3vw, 3rem); margin: 16px 0 10px; }
.catalog-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
}
.product-card {
  background: white; border: 1px solid rgba(109, 58, 18, 0.08); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); transition: transform .22s ease, box-shadow .22s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(58, 34, 11, 0.15); }
.product-image {
  background: linear-gradient(180deg, #f6f0e8, #ffffff); padding: 14px;
}
.product-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: contain; }
.product-info { padding: 22px; }
.product-info h3 { margin: 0 0 8px; font-size: 1.2rem; }
.product-info p { margin: 0 0 14px; color: var(--primary); font-weight: 800; }
.product-info a { color: var(--primary-2); font-weight: 700; }
.carousel-section { padding-top: 24px; }
.carousel {
  position: relative; background: white; border-radius: 28px; padding: 28px 70px; border: 1px solid rgba(109, 58, 18, 0.08); box-shadow: var(--shadow);
}
.carousel-track { position: relative; min-height: 540px; }
.carousel-slide {
  display: none; text-align: center;
}
.carousel-slide.active { display: block; animation: fade .45s ease; }
.carousel-slide img { width: 100%; max-height: 520px; object-fit: contain; }
.carousel-slide span {
  display: inline-flex; margin-top: 18px; padding: 12px 18px; border-radius: 999px; background: rgba(242, 192, 97, 0.18); color: var(--primary); font-weight: 800;
}
@keyframes fade { from { opacity: .35; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); border: 0; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: white; font-size: 1.35rem; box-shadow: var(--shadow);
}
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.info-grid { grid-template-columns: 1fr 1fr; }
.location-block { background: linear-gradient(135deg, rgba(242, 192, 97, 0.18), rgba(109, 58, 18, 0.06)); }
.cta-section { padding: 0 0 88px; }
.cta-box {
  padding: 36px; display: flex; justify-content: space-between; align-items: center; gap: 24px; background: linear-gradient(135deg, #fff8eb, #ffffff);
}
.footer {
  background: #2e1708; color: #f6e8d2; padding: 46px 0;
}
.footer-grid { grid-template-columns: 1fr 1fr 1fr; align-items: center; }
.footer h3 { margin-top: 0; }
.footer-logo { width: 180px; }
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 60; min-width: 136px; min-height: 54px; padding: 0 18px;
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; color: white; font-weight: 800;
  background: linear-gradient(135deg, #25d366, #128c7e); box-shadow: 0 18px 36px rgba(18, 140, 126, 0.25);
}
@media (max-width: 980px) {
  .hero-grid, .intro-grid, .info-grid, .footer-grid, .catalog-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .carousel-track { min-height: 420px; }
}
@media (max-width: 760px) {
  .topbar-inner { flex-direction: column; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute; top: calc(100% + 10px); left: 16px; right: 16px; display: none; flex-direction: column; background: white; padding: 20px; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid rgba(109, 58, 18, 0.08);
  }
  .nav.show { display: flex; }
  .hero-grid, .intro-grid, .info-grid, .footer-grid, .catalog-grid, .hero-visual { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .carousel { padding: 20px 16px 70px; }
  .carousel-btn { top: auto; bottom: 16px; transform: none; }
  .carousel-btn.prev { left: calc(50% - 56px); }
  .carousel-btn.next { right: calc(50% - 56px); }
  .carousel-track { min-height: 340px; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}
