:root {
  --brown-950: #2f1609;
  --brown-900: #4f230d;
  --brown-800: #6f2e0c;
  --orange-700: #a8470b;
  --orange-600: #c45c0f;
  --gold-500: #d98b24;
  --gold-300: #eebd72;
  --ivory: #fffaf0;
  --beige-100: #f7eddc;
  --beige-200: #eddcc2;
  --white: #ffffff;
  --ink: #2a211b;
  --muted: #6f6258;
  --line: rgba(79, 35, 13, 0.14);
  --shadow: 0 24px 60px rgba(73, 35, 12, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  background: var(--brown-950);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 110px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 240, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(79, 35, 13, 0.08);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 250px; }
.brand img { width: 54px; height: 54px; object-fit: cover; border-radius: 13px; box-shadow: 0 10px 25px rgba(79, 35, 13, 0.14); }
.brand span { display: grid; line-height: 1.15; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.16rem; color: var(--brown-950); }
.brand small { margin-top: 5px; color: var(--orange-700); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: .94rem; font-weight: 650; }
.main-nav > a:not(.nav-cta) { position: relative; padding: 9px 0; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--orange-600); transition: .25s ease; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 18px; border-radius: 999px; color: var(--white); background: var(--brown-900); box-shadow: 0 10px 25px rgba(79, 35, 13, 0.16); }
.nav-cta:hover { background: var(--orange-700); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px; background: var(--brown-950); transition: .25s ease; }

.hero { position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden; background:
  radial-gradient(circle at 78% 20%, rgba(217, 139, 36, .16), transparent 28%),
  linear-gradient(135deg, #fffdf7 0%, #fff8ea 50%, #f4e4cc 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .23; pointer-events: none; background-image: linear-gradient(rgba(79,35,13,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(79,35,13,.08) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, transparent, #000 30%, transparent); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; align-items: center; }
.hero-copy h1, .section-heading h2, .strengths-intro h2, .contact-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--brown-950);
  letter-spacing: -.035em;
  line-height: 1.04;
  margin: 16px 0 24px;
}
.hero-copy h1 { font-size: clamp(3rem, 5.3vw, 5.4rem); max-width: 790px; }
.hero-copy p { max-width: 680px; font-size: 1.11rem; color: var(--muted); margin: 0 0 30px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--orange-700); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.eyebrow::before { content: ""; width: 33px; height: 2px; background: linear-gradient(90deg, var(--orange-600), var(--gold-500)); }
.eyebrow.light { color: #ffe2b5; }
.eyebrow.light::before { background: #ffe2b5; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { min-height: 52px; padding: 13px 23px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--brown-800), var(--orange-600)); box-shadow: 0 16px 32px rgba(139, 61, 14, .24); }
.btn-primary:hover { box-shadow: 0 20px 38px rgba(139, 61, 14, .30); }
.btn-secondary { color: var(--brown-900); background: rgba(255,255,255,.72); border: 1px solid var(--line); }
.btn-secondary:hover { background: var(--white); }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; color: var(--brown-900); font-size: .91rem; font-weight: 750; }
.hero-points span { display: inline-flex; align-items: center; gap: 9px; }
.hero-points span::before { content: "✓"; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--gold-500); font-size: .75rem; }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.image-card { width: min(460px, 86%); padding: 18px; border-radius: 38px; background: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow); transform: rotate(2deg); }
.image-card img { aspect-ratio: 1; object-fit: cover; border-radius: 26px; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 12px; width: 236px; padding: 14px 15px; border-radius: 18px; background: rgba(255,255,255,.92); border: 1px solid rgba(79,35,13,.08); box-shadow: 0 18px 35px rgba(73,35,12,.14); backdrop-filter: blur(12px); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { color: var(--brown-950); font-size: .92rem; }
.floating-card small { color: var(--muted); margin-top: 2px; font-size: .77rem; }
.mini-icon { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--white); background: linear-gradient(135deg, var(--orange-700), var(--gold-500)); font-weight: 850; }
.card-one { left: -12px; top: 105px; }
.card-two { right: -22px; bottom: 72px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; }
.hero-glow-one { width: 220px; height: 220px; background: rgba(201, 91, 15, .13); left: -70px; bottom: 40px; }
.hero-glow-two { width: 310px; height: 310px; background: rgba(223, 166, 82, .14); right: -110px; top: 20px; }

.trust-strip { padding: 24px 0; background: var(--brown-950); color: #ffe4bf; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; gap: 20px; text-align: center; }
.trust-grid span { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; opacity: .9; }

.about { background: var(--white); }
.split-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; align-items: start; }
.section-heading h2, .strengths-intro h2, .contact-card h2 { font-size: clamp(2.35rem, 4vw, 4rem); }
.section-heading p { max-width: 690px; margin: 0; color: var(--muted); }
.section-heading.centered { max-width: 800px; margin: 0 auto 48px; text-align: center; }
.section-heading.centered .eyebrow::before { display: none; }
.about-copy { font-size: 1.07rem; color: var(--muted); }
.about-copy p:first-child { margin-top: 6px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; color: var(--orange-700); font-weight: 850; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.products { background: var(--beige-100); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { min-height: 430px; display: flex; flex-direction: column; padding: 34px; border-radius: var(--radius-lg); background: rgba(255,255,255,.82); border: 1px solid rgba(79,35,13,.08); box-shadow: 0 14px 40px rgba(73,35,12,.08); transition: transform .3s ease, box-shadow .3s ease; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(73,35,12,.13); }
.product-card.featured { color: #fff8ec; background: linear-gradient(145deg, var(--brown-900), var(--orange-700)); }
.product-card.featured h3, .product-card.featured a { color: var(--white); }
.product-card.featured p, .product-card.featured .card-label { color: #f6dbc0; }
.product-card.featured .product-icon { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); }
.product-card.featured .product-icon svg { stroke: #ffd79f; }
.product-icon { width: 68px; height: 68px; display: grid; place-items: center; border-radius: 20px; background: var(--ivory); border: 1px solid var(--beige-200); margin-bottom: 28px; }
.product-icon svg { width: 34px; height: 34px; fill: none; stroke: var(--orange-700); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.card-label { color: var(--orange-700); font-size: .75rem; text-transform: uppercase; font-weight: 850; letter-spacing: .12em; }
.product-card h3 { margin: 10px 0 14px; color: var(--brown-950); font-family: Georgia, "Times New Roman", serif; font-size: 1.8rem; }
.product-card p { color: var(--muted); margin: 0 0 26px; }
.product-card a { margin-top: auto; color: var(--orange-700); font-weight: 850; }
.product-card a span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.product-card a:hover span { transform: translateX(5px); }

.strengths { background: var(--brown-950); color: #f7e8d4; }
.strengths-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.strengths-intro h2 { color: var(--white); }
.strengths-intro p { max-width: 520px; color: #d8c1aa; font-size: 1.05rem; }
.strength-list { display: grid; gap: 15px; }
.strength-item { display: grid; grid-template-columns: 60px 1fr; gap: 18px; padding: 24px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.055); }
.strength-item > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(135deg, var(--orange-700), var(--gold-500)); font-weight: 900; }
.strength-item h3 { margin: 1px 0 7px; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.strength-item p { margin: 0; color: #d8c1aa; }

.process { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: process; }
.process-card { position: relative; min-height: 250px; padding: 34px; border-radius: var(--radius-md); background: var(--ivory); border: 1px solid var(--line); overflow: hidden; }
.process-card::after { content: ""; position: absolute; right: -30px; bottom: -45px; width: 130px; height: 130px; border-radius: 50%; background: rgba(217,139,36,.11); }
.process-card > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--brown-900); font-weight: 900; }
.process-card h3 { margin: 22px 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; color: var(--brown-950); }
.process-card p { color: var(--muted); margin: 0; }

.contact-section { padding-top: 30px; background: var(--white); }
.contact-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; padding: 64px; border-radius: 36px; color: var(--white); background: linear-gradient(135deg, var(--brown-900), var(--orange-700)); box-shadow: var(--shadow); }
.contact-card::after { content: ""; position: absolute; width: 390px; height: 390px; border-radius: 50%; right: -130px; top: -170px; border: 80px solid rgba(255,255,255,.05); }
.contact-card h2 { color: var(--white); margin-bottom: 18px; }
.contact-card p { max-width: 680px; color: #f3d9bd; margin: 0; }
.contact-actions { position: relative; z-index: 2; display: grid; gap: 14px; justify-items: stretch; }
.btn-light { color: var(--brown-900); background: var(--white); }
.contact-number { text-align: center; color: #ffe8c8; font-weight: 850; letter-spacing: .04em; }

.site-footer { padding: 58px 0 30px; background: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 32px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 64px; height: 64px; border-radius: 16px; object-fit: cover; }
.footer-brand strong { display: block; font-family: Georgia, "Times New Roman", serif; color: var(--brown-950); font-size: 1.3rem; }
.footer-brand p { margin: 4px 0 0; color: var(--muted); }
.footer-links { display: flex; justify-content: flex-end; gap: 20px; font-weight: 750; color: var(--brown-900); }
.copyright { grid-column: 1 / -1; padding-top: 26px; margin: 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .87rem; }

.whatsapp-float { position: fixed; z-index: 950; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25d366; box-shadow: 0 16px 35px rgba(25, 109, 58, .30); transition: transform .25s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 31px; height: 31px; fill: white; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .section-pad { padding: 86px 0; }
  .hero { min-height: auto; padding-top: 80px; }
  .hero-grid, .split-grid, .strengths-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; }
  .hero-copy { text-align: center; }
  .hero-copy p { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { min-height: 500px; }
  .card-one { left: 4%; }
  .card-two { right: 2%; }
  .product-grid, .process-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 360px; }
  .split-grid, .strengths-grid { gap: 45px; }
  .contact-card { gap: 34px; padding: 46px; }

  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,250,240,.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-14px) scale(.98);
    pointer-events: none;
    transition: .25s ease;
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .main-nav a { padding: 11px 12px !important; border-radius: 12px; }
  .main-nav a:hover { background: var(--beige-100); }
  .main-nav a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 70px 0; }
  .brand { min-width: auto; }
  .brand small { display: none; }
  .brand strong { font-size: 1rem; }
  .brand img { width: 48px; height: 48px; }
  .hero { padding-top: 48px; }
  .hero-copy h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-copy p { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-points { gap: 10px 16px; font-size: .84rem; }
  .hero-visual { min-height: 410px; }
  .image-card { width: 90%; padding: 12px; border-radius: 28px; }
  .image-card img { border-radius: 20px; }
  .floating-card { width: 205px; padding: 11px; }
  .floating-card small { font-size: .68rem; }
  .card-one { top: 26px; left: 0; }
  .card-two { right: 0; bottom: 22px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-grid span:last-child { grid-column: 1 / -1; }
  .section-heading h2, .strengths-intro h2, .contact-card h2 { font-size: 2.45rem; }
  .product-card, .process-card { padding: 26px; }
  .strength-item { grid-template-columns: 48px 1fr; padding: 20px; }
  .strength-item > span { width: 44px; height: 44px; border-radius: 13px; }
  .contact-card { padding: 34px 25px; border-radius: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
