:root {
  --brand: #d76542;
  --brand-dark: #7a4a3a;
  --brand-soft: #f4b184;
  --cream: #fff4df;
  --cream-strong: #f8e2bd;
  --ink: #2d2420;
  --muted: #715f57;
  --line: rgba(122, 74, 58, 0.18);
  --white: #fffdf8;
  --shadow: 0 22px 55px rgba(84, 50, 36, 0.16);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a,
.header-cta,
.button {
  text-decoration: none;
}

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

.header-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--brand);
  border-radius: var(--radius);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: var(--max);
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(44px, 8vw, 86px) 20px 34px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.8vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy,
.section-heading p,
.business-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 28px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.header-cta:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 16px 30px rgba(215, 101, 66, 0.28);
}

.button.secondary {
  color: var(--brand-dark);
  background: transparent;
  border-color: var(--line);
}

.button.small {
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--brand-dark);
  font-size: 0.92rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span,
.tag-list span {
  padding: 8px 12px;
  color: var(--brand-dark);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 253, 248, 0.92), rgba(255, 244, 223, 0.72) 34%, transparent 56%),
    linear-gradient(135deg, rgba(255, 244, 223, 0.95), rgba(244, 177, 132, 0.38)),
    radial-gradient(circle at 20% 20%, rgba(215, 101, 66, 0.2), transparent 28%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.logo-card {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  height: 252px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(255, 244, 223, 0.62)),
    rgba(255, 253, 248, 0.46);
  border: 1px solid rgba(255, 253, 248, 0.88);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 20px 46px rgba(122, 74, 58, 0.08);
  backdrop-filter: blur(4px);
  overflow: hidden;
}

.logo-card img {
  width: min(78%, 370px);
  height: auto;
  max-height: 82%;
  object-fit: contain;
  transform: translateY(-7px);
  filter: drop-shadow(0 12px 18px rgba(122, 74, 58, 0.14));
}

.product-scene {
  position: absolute;
  inset: auto 28px 24px;
  height: 232px;
}

.scene-photo {
  position: absolute;
  border: 8px solid rgba(255, 253, 248, 0.86);
  border-radius: 8px;
  box-shadow: 0 24px 38px rgba(67, 42, 34, 0.22);
  object-fit: cover;
}

.scene-termo {
  right: 10px;
  bottom: 0;
  width: 132px;
  height: 224px;
  object-position: center;
}

.scene-tabla {
  left: 0;
  bottom: 0;
  width: 252px;
  height: 166px;
  transform: rotate(-4deg);
  object-position: center;
}

.scene-taza {
  left: 198px;
  bottom: 32px;
  width: 140px;
  height: 122px;
  object-position: center;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 92px) 20px;
}

.intro-strip {
  max-width: none;
  padding: 26px 20px;
  color: var(--brand-dark);
  background: var(--cream);
  border-block: 1px solid var(--line);
  text-align: center;
  font-size: 1.15rem;
  font-weight: 800;
}

.intro-strip p {
  max-width: 980px;
  margin: 0 auto;
}

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

.product-grid,
.benefit-grid {
  display: grid;
  gap: 18px;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

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

.product-card,
.benefit-grid article,
.steps article,
.business-panel,
.contact-form,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(84, 50, 36, 0.08);
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.product-image {
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin: 0;
  background-color: var(--cream);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image img.product-contain {
  padding: 14px;
  background: #fff;
  object-fit: contain;
}

.product-image.corporativo {
  min-height: 190px;
  background-image: linear-gradient(135deg, transparent 23%, #7a4a3a 24% 50%, transparent 51%), linear-gradient(45deg, transparent 30%, #d76542 31% 65%, transparent 66%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 74% 74%;
}

.product-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  padding: 18px;
}

.product-body p,
.benefit-grid p,
.steps p,
.business-panel li,
details p {
  margin: 0;
  color: var(--muted);
}

.product-body strong {
  color: var(--brand);
}

.how {
  max-width: none;
  background: #faf0e0;
}

.how .section-heading,
.how .steps {
  max-width: var(--max);
  margin-inline: auto;
}

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

.steps article {
  padding: 22px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--brand);
  border-radius: 50%;
  font-weight: 900;
}

.business,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: center;
}

.business {
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-dark), #3b2a25);
}

.business .eyebrow,
.business-copy p {
  color: #ffe5ce;
}

.business h2 {
  color: var(--white);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.business-panel {
  padding: 28px;
  color: var(--ink);
  background: var(--cream);
}

.business-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 220px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(45, 36, 32, 0.12), rgba(215, 101, 66, 0.2)),
    var(--cream);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item img.gallery-contain {
  padding: 18px 18px 62px;
  background: #fff;
  object-fit: contain;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(122, 74, 58, 0.35);
  border-radius: 8px;
}

.gallery-item:has(img)::before {
  display: none;
}

.gallery-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(45, 36, 32, 0.78);
  border-radius: 8px;
  font-weight: 900;
}

.benefit-grid article {
  padding: 22px;
}

.benefit-grid h3 {
  margin-bottom: 8px;
  color: var(--brand-dark);
}

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

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--brand-dark);
  font-weight: 900;
}

details p {
  margin-top: 12px;
}

.contact {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.contact-list p {
  margin: 0;
}

.contact-list a {
  color: var(--brand);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--brand-dark);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 54px);
  color: var(--muted);
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  color: var(--white);
  background: #1f9d55;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(31, 157, 85, 0.28);
  font-weight: 900;
  text-decoration: none;
}

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

  .hero,
  .business,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

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

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

@media (max-width: 620px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
  }

  h1 {
    font-size: clamp(2rem, 11.6vw, 3.15rem);
    line-height: 1.04;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
  }

  .logo-card {
    inset: 20px 20px auto;
    height: 190px;
    padding: 14px;
  }

  .logo-card img {
    width: min(82%, 285px);
    max-height: 82%;
    transform: translateY(-6px);
  }

  .product-scene {
    left: 18px;
    right: 18px;
    bottom: 24px;
    height: 214px;
  }

  .scene-termo {
    width: 105px;
    height: 202px;
  }

  .scene-tabla {
    width: 205px;
    height: 135px;
  }

  .scene-taza {
    left: 148px;
    bottom: 28px;
    width: 118px;
    height: 106px;
  }

  .product-grid,
  .benefit-grid,
  .steps,
  .gallery-grid {
    grid-template-columns: 1fr;
  }


  .site-footer {
    flex-direction: column;
  }
}
