:root {
  --red: #8f1d16;
  --red-dark: #64120e;
  --cream: #fff8ea;
  --cream-2: #f3e0bd;
  --brown: #4a2d18;
  --brown-light: #7a4a22;
  --green: #244d2b;
  --green-soft: #dce6d3;
  --dark: #1f1713;
  --text: #33241c;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(43, 24, 12, 0.16);
  --radius: 28px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(143, 29, 22, 0.12), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(36, 77, 43, 0.13), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #fff8ea 50%, #f4e3c6 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

.section-pad {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 234, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(100, 18, 14, 0.14);
}

.navbar {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 190px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--brown);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--red);
  color: var(--cream);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(100, 18, 14, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--red-dark);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.decor {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  opacity: 0.35;
}

.decor-left {
  left: -180px;
  bottom: -160px;
  background: var(--green-soft);
}

.decor-right {
  right: -180px;
  top: 40px;
  background: var(--cream-2);
}

.hero::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(0deg, rgba(36, 77, 43, 0.18), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.align-left .eyebrow::before {
  display: none;
}

.hero h1,
.section-heading h2,
.identity-card h2,
.contact-card h2 {
  color: var(--red-dark);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.75);
}

.hero-subtitle {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--dark);
  margin: 8px 0 18px;
}

.hero-text {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--brown);
  max-width: 560px;
  line-height: 1.65;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(74, 45, 24, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--cream);
  border-color: rgba(255, 248, 234, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.75);
  color: var(--red-dark);
  border-color: rgba(143, 29, 22, 0.25);
}

.hero-logo-card {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 234, 0.74));
  border: 1px solid rgba(143, 29, 22, 0.18);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 48px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-logo-card::before,
.identity-card::before,
.contact-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(143, 29, 22, 0.22);
  border-radius: calc(var(--radius) - 10px);
  pointer-events: none;
}

.hero-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.product-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(243, 224, 189, 0.34));
}

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

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

.section-heading h2,
.identity-card h2,
.contact-card h2 {
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  margin-bottom: 16px;
}

.section-heading p,
.identity-card p,
.contact-card p {
  line-height: 1.7;
  color: var(--brown);
  font-size: 1.1rem;
}

.product-card {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: stretch;
  background: var(--white);
  border: 1px solid rgba(143, 29, 22, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: auto -100px -140px auto;
  width: 320px;
  height: 320px;
  background: rgba(36, 77, 43, 0.11);
  border-radius: 50%;
}

.product-mark {
  min-height: 180px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(143, 29, 22, 0.94), rgba(100, 18, 14, 0.98)),
    var(--red);
  color: var(--cream);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
}

.product-info {
  position: relative;
  z-index: 1;
  padding: 8px 0;
}

.product-info h3 {
  color: var(--dark);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.details-list {
  display: grid;
  gap: 12px;
}

.details-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(74, 45, 24, 0.22);
}

.details-list dt {
  color: var(--red-dark);
  font-weight: 900;
}

.details-list dd {
  color: var(--brown);
  font-weight: 700;
}

.identity-section {
  position: relative;
}

.identity-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  background: linear-gradient(145deg, var(--red-dark), var(--red));
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.identity-card h2,
.identity-card p,
.identity-card .eyebrow {
  color: var(--cream);
}

.identity-card .eyebrow::before,
.identity-card .eyebrow::after {
  background: var(--cream);
}

.identity-logo {
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  padding: 22px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.location-card {
  min-height: 320px;
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(160deg, rgba(36, 77, 43, 0.78), rgba(74, 45, 24, 0.92)),
    repeating-linear-gradient(45deg, rgba(255, 248, 234, 0.12) 0 8px, rgba(255, 248, 234, 0.05) 8px 16px);
  color: var(--cream);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 248, 234, 0.28);
}

.location-card span {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.86;
  font-weight: 900;
}

.location-card strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
  margin-top: 12px;
}

.contact-section {
  padding-top: 40px;
}

.contact-card {
  position: relative;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(34px, 6vw, 68px) 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(143, 29, 22, 0.18);
}

.contact-card .eyebrow {
  justify-content: center;
}

.phone {
  display: inline-block;
  margin-top: 20px;
  color: var(--red-dark);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid strong {
  font-size: 1.35rem;
}

.footer-grid p {
  opacity: 0.9;
  margin-top: 4px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--cream);
  background: linear-gradient(135deg, #236d34, var(--green));
  font-weight: 900;
  box-shadow: 0 15px 32px rgba(36, 77, 43, 0.34);
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 920px) {
  .navbar {
    min-height: 76px;
  }

  .brand-logo {
    width: 150px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 248, 234, 0.98);
    border: 1px solid rgba(143, 29, 22, 0.18);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .hero-grid,
  .identity-card,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-heading.align-left {
    text-align: center;
  }

  .align-left .eyebrow::before {
    display: block;
  }

  .hero-actions {
    justify-content: center;
  }

  .section-pad {
    padding: 64px 0;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-mark {
    min-height: 130px;
  }

  .details-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .brand-logo {
    width: 132px;
  }

  .hero-logo-card,
  .product-card,
  .identity-card,
  .location-card,
  .contact-card {
    border-radius: 22px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 16vw, 4rem);
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .btn,
  .hero-actions a,
  .contact-actions a {
    width: 100%;
  }

  .identity-logo {
    padding: 14px;
  }

  .location-card {
    min-height: 250px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    padding: 0 18px;
  }
}
