:root{
  --bg: #f7efe3;
  --bg2:#f1e5d6;

  --text:#1a1a1a;
  --muted: rgba(0,0,0,.60);
  --line: rgba(0,0,0,.10);

  --brand:#8B5E3C;
  --brand2:#C8A07A;

  --radius:18px;
  --shadow: 0 18px 60px rgba(0,0,0,.18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 650px at 20% -10%, rgba(255, 255, 255, 0.50), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(255, 235, 200, 0.70), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92vw); margin:0 auto}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(247, 239, 227, 0.75);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.header__row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__logo{
  width:40px;height:40px;border-radius:14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  display:grid; place-items:center;
  font-weight:800;
  box-shadow: var(--shadow);
  color:#fff;
}
.brand__name{font-weight:800}
.brand__tag{font-size:12px; color:var(--muted)}
.nav{display:flex; gap:18px}
.nav a{color:var(--muted); font-weight:700}
.nav a:hover{color:var(--text)}

.burger{
  display:none;
  width:44px;height:44px;border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.45);
  cursor:pointer;
}
.burger span{
  display:block; width:18px; height:2px; margin:4px auto;
  background: rgba(0,0,0,.70);
  border-radius:2px;
}

.mobile-menu{
  border-top:1px solid var(--line);
  padding:10px 0 16px;
  width:100%;
}
.mobile-menu a{
  display:block;
  width:min(1120px, 92vw);
  margin: 8px auto;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background: rgba(255,255,255,.55);
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  font-weight:900;
  border:1px solid var(--line);
  background: rgba(255,255,255,.45);
}
.btn--primary{
  border:none;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
}
.btn--ghost:hover{background: rgba(255,255,255,.70)}
.btn--wide{width:min(420px, 100%)}

/* Hero */
.hero{padding:64px 0 22px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.hero h1{font-size: clamp(30px, 3.3vw, 52px); margin:0 0 14px}
.lead{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin: 16px 0 18px}

.badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
.badge{
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
  border-radius: var(--radius);
  padding:12px;
  display:flex; gap:10px; align-items:flex-start;
}
.badge__icon{font-size:18px; margin-top:2px}
.badge__title{font-weight:900; font-size:13px}
.badge__desc{font-size:12px; color:var(--muted); line-height:1.45}

/* Hero image */
.hero__visual{
  min-height: 380px;
  border-radius: 26px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.45);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero__img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:26px;
  display:block;
}
.glass{
  position:absolute;
  left:18px; right:18px; bottom:18px;
  border-radius: 22px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
  padding:16px;
}
.glass__title{font-weight:1000; font-size:18px}
.glass__subtitle{color:var(--muted); margin-top:4px; font-size:13px}

/* Sections */
.section{padding:56px 0}
.section--soft{
  background: linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{max-width: 720px}
.section__head h2{margin:0 0 10px; font-size: clamp(22px, 2.2vw, 34px)}
.section__head p{margin:0; color:var(--muted); line-height:1.65}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.card__icon{font-size:20px}
.card h3{margin:10px 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.6}

/* Catalog */
.catalog-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:18px;
}
.catalog-card{
  border:1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.65);
  padding:14px;
}
.catalog-img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
  display:block;
  margin-bottom:10px;
  border:1px solid var(--line);
}
.catalog-card__title{ font-weight:1000; margin-bottom:6px; }
.catalog-card__meta{ color:var(--muted); font-size:13px; margin-bottom:10px; }
.catalog-list{ margin:0; padding-left:18px; color:var(--muted); line-height:1.55; }

.catalog-note{
  margin-top:14px;
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.7);
}
.catalog-actions{margin-top:14px}

/* Reviews */
.reviews{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}
.review{
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
  border-radius: var(--radius);
  padding:16px;
}
.review__top{display:flex; gap:10px; align-items:center; margin-bottom:10px}
.avatar{
  width:42px;height:42px;border-radius:16px;
  display:grid; place-items:center;
  font-weight:900;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
}
.review__name{font-weight:900}
.stars{color: rgba(0,0,0,.70); font-size:12px; letter-spacing:1px}
.review p{margin:0; color:var(--muted); line-height:1.65}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}
.step{
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
  border-radius: var(--radius);
  padding:16px;
}
.step__icon{font-size:20px}
.step h3{margin:10px 0 6px; font-size:15px}
.step p{margin:0; color:var(--muted); line-height:1.6}

.order-cta{margin-top:22px}
.fine{margin-top:10px; color:var(--muted); font-size:12px}

/* Footer */
.footer{
  padding:28px 0 18px;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.25);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:18px;
}
.footer__brand{font-weight:1000; font-size:18px}
.footer__title{font-weight:900; margin-bottom:10px}
.footer__note{color:var(--muted); line-height:1.6; font-size:13px}
.footer__link{display:block; color:var(--muted); padding:6px 0}
.footer__link:hover{color:var(--text)}
.footer__bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
  color:var(--muted);
  font-size:13px;
}

/* Floating WhatsApp */
.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  font-size:22px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  box-shadow: var(--shadow);
  border:none;
}

/* Responsive */
@media (max-width: 920px){
  .hero__grid{grid-template-columns: 1fr;}
  .hero__visual{min-height: 320px}
  .badges{grid-template-columns: 1fr;}
  .cards{grid-template-columns: 1fr;}
  .catalog-grid{grid-template-columns: 1fr;}
  .reviews{grid-template-columns: 1fr;}
  .steps{grid-template-columns: 1fr 1fr;}
  .footer__grid{grid-template-columns: 1fr;}
  .nav{display:none}
  .burger{display:block}
}

@media (max-width: 520px){
  .steps{grid-template-columns: 1fr;}
}
