:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --surface-alt: #efe8de;
  --text: #22201c;
  --muted: #6c655d;
  --line: #ddd2c5;
  --primary: #5f4732;
  --primary-strong: #442f1e;
  --accent: #b79668;
  --shadow: 0 18px 40px rgba(38, 28, 19, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 238, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(95, 71, 50, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

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

.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,0.65);
  padding: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.brand h1,
.hero h2,
.section h3,
.site-footer h4 {
  font-family: 'Cinzel', serif;
}

.brand h1 {
  margin: 0;
  font-size: 1.15rem;
}

.brand p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  color: var(--muted);
  font-weight: 600;
}

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

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

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

.btn-primary:hover { background: var(--primary-strong); }
.btn-secondary {
  background: transparent;
  border: 1px solid var(--line);
}
.btn-outline {
  border: 1px solid var(--line);
}
.btn-light {
  background: white;
  color: var(--primary-strong);
}
.full { width: 100%; }

.hero {
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(183, 150, 104, 0.16);
  color: var(--primary-strong);
  font-size: 0.85rem;
  font-weight: 700;
}

.section-tag.light {
  background: rgba(255,255,255,0.14);
  color: #fff8ef;
}

.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.12;
}

.hero-copy p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-badges li {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.92rem;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.hero-panel,
.card,
.step,
.faq-list details {
  background: var(--surface);
  border: 1px solid rgba(95, 71, 50, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  width: 100%;
  max-width: 400px;
  padding: 28px;
}

.panel-title {
  margin: 0 0 18px;
  font-weight: 800;
  color: var(--primary-strong);
}

.hero-logo {
  width: min(100%, 280px);
  margin: 0 auto 18px;
  object-fit: contain;
  border-radius: 18px;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-of-type { margin-bottom: 18px; }
.contact-item span { color: var(--muted); }

.section {
  padding: 74px 0;
}

.alt { background: var(--surface-alt); }

.two-col {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.section h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head p,
.two-col p,
.card p,
.step p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card {
  padding: 24px;
}

.card h4,
.step h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

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

.step {
  padding: 24px;
}

.step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(183, 150, 104, 0.15);
  color: var(--primary-strong);
  font-weight: 800;
  margin-bottom: 14px;
}

.quote p {
  font-style: italic;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.cta {
  padding: 40px 0 80px;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: white;
  box-shadow: var(--shadow);
}

.cta-box p { color: rgba(255,255,255,0.8); }

.site-footer {
  padding: 46px 0 22px;
  background: #1f1812;
  color: #efe8de;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.site-footer p, .site-footer a {
  color: rgba(239, 232, 222, 0.78);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  padding: 14px 18px;
  background: #25d366;
  color: white;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

@media (max-width: 960px) {
  .hero-grid,
  .two-col,
  .footer-grid,
  .steps,
  .cards {
    grid-template-columns: 1fr;
  }

  nav {
    position: absolute;
    top: 82px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
  }

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

@media (max-width: 640px) {
  .hero { padding-top: 44px; }
  .cta-box { padding: 24px; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .brand-logo { width: 56px; height: 56px; }
  .hero-logo { width: min(100%, 220px); }
}


.recommendation-quotes {
  margin-bottom: 24px;
}

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

.recommendation-photo {
  padding: 14px;
  overflow: hidden;
}

.recommendation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.card ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.card li + li {
  margin-top: 4px;
}


.price-showcase {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 20px;
  align-items: start;
}

.price-image-card {
  padding: 14px;
}

.price-image-card img {
  width: 100%;
  border-radius: 14px;
}

.price-list-card {
  position: sticky;
  top: 110px;
}

.price-list {
  list-style: none;
  margin: 16px 0 20px;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.price-list li strong {
  color: var(--primary-strong);
}

@media (max-width: 960px) {
  .price-showcase {
    grid-template-columns: 1fr;
  }

  .price-list-card {
    position: static;
  }
}

.catalog-subhead {
  margin-top: 42px;
}

.catalog-subhead h3 {
  margin-bottom: 8px;
}


.catalog-grid {
  display: grid;
  gap: 24px;
}

.catalog-card {
  padding: 18px;
}

.catalog-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
  margin-top: 16px;
}

.catalog-copy h4 {
  margin-bottom: 10px;
}

.catalog-copy p {
  margin-bottom: 12px;
}

.catalog-cta {
  margin-top: 24px;
  text-align: center;
}

.catalog-cta h4 {
  margin-bottom: 10px;
}

.catalog-cta p {
  margin-bottom: 16px;
}


.catalog-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.catalog-buttons .btn {
  min-width: 220px;
}
