/* ============================================================
   Raíz · Cocina Fresca — styles.css
   ============================================================ */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-primary);
  background: var(--color-sage); padding: 7px 15px; border-radius: var(--radius-pill);
}
.eyebrow svg { width: 15px; height: 15px; }
.section-head { max-width: 620px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head h2 { margin: 16px 0 14px; }
.section-head p { color: var(--color-muted); font-size: 1.08rem; }
.text-accent { color: var(--color-primary); }
em { font-style: normal; color: var(--color-primary); position: relative; }

/* ---- Icons ---- */
.ico { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.9; fill: none;
  stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: var(--radius-pill); border: 2px solid transparent;
  background: var(--color-primary); color: #fff; transition: all .28s var(--ease);
  box-shadow: var(--shadow-green); white-space: nowrap;
}
.btn:hover { background: var(--color-primary-dark); transform: translateY(-3px); box-shadow: 0 22px 46px rgba(46,125,79,.34); }
.btn .ico { width: 19px; height: 19px; transition: transform .28s var(--ease); }
.btn:hover .ico { transform: translateX(4px); }
.btn--outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); box-shadow: none; }
.btn--outline:hover { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-green); }
.btn--coral { background: var(--color-coral); box-shadow: 0 16px 40px rgba(239,106,69,.28); }
.btn--coral:hover { background: #db5535; box-shadow: 0 22px 46px rgba(239,106,69,.34); }
.btn--ink { background: var(--color-ink); box-shadow: none; }
.btn--ink:hover { background: #000; box-shadow: none; }
.btn--white { background: #fff; color: var(--color-primary); box-shadow: var(--shadow-md); }
.btn--white:hover { background: var(--color-bg); color: var(--color-primary-dark); }
.btn--sm { padding: 11px 20px; font-size: .92rem; }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; border-radius: 6px; }

/* ---- Announce bar ---- */
.announce {
  background: var(--color-ink); color: #fff; text-align: center;
  font-size: .86rem; font-weight: 500; padding: 9px 16px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.announce svg { width: 16px; height: 16px; stroke: var(--color-accent); stroke-width: 2; fill: none; }
.announce strong { color: var(--color-accent); font-weight: 700; }

/* ---- Header ---- */
.header {
  position: sticky; top: 0; z-index: 100; background: rgba(246,245,236,.82);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.scrolled { border-bottom-color: var(--color-line); box-shadow: var(--shadow-sm); background: rgba(246,245,236,.94); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--color-ink); letter-spacing: -0.02em; }
.logo-mark { width: 42px; height: 42px; border-radius: 50%; background: var(--color-primary);
  display: grid; place-items: center; flex-shrink: 0; box-shadow: 0 6px 16px rgba(46,125,79,.3); }
.logo-mark svg { width: 26px; height: 26px; }
.logo small { display: block; font-family: var(--font-body); font-size: .58rem; font-weight: 600; letter-spacing: .22em; color: var(--color-primary); margin-top: 1px; }
.logo .logo-txt { line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 600; font-size: .98rem; color: var(--color-ink); position: relative; padding: 4px 0; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--color-primary); transition: width .28s var(--ease); border-radius: 2px; }
.nav-links a:hover, .nav-links a.active { color: var(--color-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.burger { display: none; background: none; border: none; cursor: pointer; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; color: var(--color-ink); }
.burger svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px); background: var(--color-card); z-index: 200; transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg); padding: 26px; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .mm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mobile-menu a { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; padding: 12px 0; border-bottom: 1px solid var(--color-line); color: var(--color-ink); }
.mobile-menu a:last-of-type { border: none; }
.mobile-menu .btn { margin-top: 18px; justify-content: center; }
.mm-close { background: none; border: none; cursor: pointer; color: var(--color-ink); width: 42px; height: 42px; }
.mm-close svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }
.overlay { position: fixed; inset: 0; background: rgba(22,36,28,.5); z-index: 150; opacity: 0; visibility: hidden; transition: .3s; backdrop-filter: blur(2px); }
.overlay.open { opacity: 1; visibility: visible; }

/* ---- Hero ---- */
.hero { position: relative; padding: clamp(40px, 6vw, 76px) 0 clamp(56px, 7vw, 96px); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -10%; right: -8%; width: 46vw; height: 46vw; max-width: 560px; max-height: 560px; background: radial-gradient(circle, rgba(240,169,59,.22), transparent 70%); border-radius: 50%; z-index: 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; position: relative; z-index: 1; }
.hero h1 { margin: 18px 0 22px; }
.hero-copy > p { font-size: 1.16rem; color: var(--color-muted); max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span { width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid var(--color-bg); margin-left: -12px; background-size: cover; background-position: center; }
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust .stars { color: var(--color-accent); font-size: .95rem; display: flex; gap: 1px; }
.hero-trust small { color: var(--color-muted); font-size: .88rem; display: block; }
.hero-trust b { font-size: .92rem; }

.hero-visual { position: relative; }
.hero-visual .hero-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 11/13; object-fit: cover; }
.hero-blob { position: absolute; inset: -6% -6% -6% -6%; background: var(--color-sage); border-radius: 42% 58% 55% 45% / 55% 45% 55% 45%; z-index: -1; }
.hero-badge { position: absolute; background: var(--color-card); border-radius: var(--radius); padding: 13px 17px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 11px; }
.hero-badge .b-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.hero-badge .b-ico svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.hero-badge .big { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; line-height: 1.1; display: block; }
.hero-badge small { color: var(--color-muted); font-size: .78rem; display: block; }
.hero-badge--tl { top: 22px; left: -22px; }
.hero-badge--br { bottom: 26px; right: -18px; }
@media (max-width: 520px){ .hero-badge--tl{ left: 6px; } .hero-badge--br{ right: 6px; } }

/* ---- Trust strip ---- */
.strip { background: var(--color-ink); color: #fff; }
.strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; flex-wrap: wrap; }
.strip-inner span { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .96rem; }
.strip-inner .ico { color: var(--color-accent); width: 20px; height: 20px; }

/* ---- Category cards ---- */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: block;
}
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.cat::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,36,28,.82) 8%, rgba(22,36,28,.1) 55%, transparent); }
.cat:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.cat:hover img { transform: scale(1.09); }
.cat-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; z-index: 2; color: #fff; }
.cat-body h3 { color: #fff; margin-bottom: 3px; }
.cat-body span { font-size: .88rem; opacity: .85; display: inline-flex; align-items: center; gap: 6px; }
.cat-body span .ico { width: 15px; height: 15px; color: var(--color-accent); }

/* ---- Menu / product cards ---- */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--color-card); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .38s var(--ease), box-shadow .38s var(--ease);
  display: flex; flex-direction: column; border: 1px solid var(--color-line);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card-media img { transform: scale(1.07); }
.card-badge { position: absolute; top: 14px; left: 14px; background: var(--color-accent); color: var(--color-ink); font-size: .74rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); z-index: 2; }
.card-badge--green { background: var(--color-primary); color: #fff; }
.card-badge--coral { background: var(--color-coral); color: #fff; }
.card-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.tag { font-size: .72rem; font-weight: 700; color: var(--color-primary); background: var(--color-sage); padding: 4px 10px; border-radius: var(--radius-pill); display: inline-flex; align-items: center; gap: 5px; }
.tag .ico { width: 13px; height: 13px; }
.card-body h3 { margin-top: 2px; }
.card-body .desc { color: var(--color-muted); font-size: .95rem; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; }
.price { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--color-ink); }
.price s { color: var(--color-muted); font-weight: 500; font-size: .9rem; margin-right: 6px; }
.macro { display: flex; gap: 14px; margin-top: 6px; }
.macro div { text-align: center; }
.macro b { font-family: var(--font-display); font-size: 1rem; display: block; }
.macro small { color: var(--color-muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; }

/* ---- How it works / steps ---- */
.how { background: var(--color-sage); border-radius: var(--radius-lg); padding: clamp(36px,5vw,64px); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 12px; }
.step { background: var(--color-card); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; }
.step-ico { width: 58px; height: 58px; border-radius: 16px; background: var(--color-primary); color: #fff; display: grid; place-items: center; margin-bottom: 18px; }
.step-ico svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.step-num { position: absolute; top: 22px; right: 24px; font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--color-sage-deep); line-height: 1; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--color-muted); font-size: .96rem; }

/* ---- Split feature ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 11/9; object-fit: cover; }
.split-media.rev { order: -1; }
.split h2 { margin: 14px 0 16px; }
.split > div > p { color: var(--color-muted); font-size: 1.08rem; margin-bottom: 22px; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; font-weight: 500; }
.check-list .ci { width: 28px; height: 28px; border-radius: 50%; background: var(--color-sage); color: var(--color-primary); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.check-list .ci svg { width: 16px; height: 16px; stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ---- Stats ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stat b { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--color-primary); display: block; line-height: 1; }
.stat span { color: var(--color-muted); font-weight: 600; font-size: .95rem; margin-top: 8px; display: block; }

/* ---- Testimonials ---- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard { background: var(--color-card); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--color-line); display: flex; flex-direction: column; }
.tcard .stars { color: var(--color-accent); display: flex; gap: 2px; margin-bottom: 14px; }
.tcard .stars .ico { width: 18px; height: 18px; fill: var(--color-accent); stroke: none; }
.tcard p { font-size: 1.04rem; margin-bottom: 20px; }
.who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.who .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--color-sage-deep) center/cover; }
.who b { display: block; font-size: .96rem; }
.who small { color: var(--color-muted); font-size: .84rem; }

/* ---- CTA band ---- */
.ctaband { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(48px,7vw,88px) var(--gutter); text-align: center; color: #fff; }
.ctaband img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ctaband::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(30,92,57,.92), rgba(22,36,28,.78)); z-index: 1; }
.ctaband > * { position: relative; z-index: 2; }
.ctaband h2 { color: #fff; margin-bottom: 14px; }
.ctaband p { max-width: 560px; margin: 0 auto 30px; font-size: 1.12rem; opacity: .94; }
.ctaband .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Page hero (interior) ---- */
.page-hero { background: var(--color-sage); padding: clamp(44px,6vw,80px) 0 clamp(40px,5vw,64px); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; bottom:-40%; left:-6%; width:38vw; height:38vw; max-width:400px; max-height:400px; background:radial-gradient(circle,rgba(240,169,59,.18),transparent 70%); border-radius:50%; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; color: var(--color-muted); font-size: .88rem; margin-bottom: 16px; position: relative; }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb .ico { width: 15px; height: 15px; }
.page-hero h1 { position: relative; }
.page-hero p { color: var(--color-muted); max-width: 600px; margin: 16px auto 0; font-size: 1.1rem; position: relative; }

/* ---- Menu filter pills ---- */
.filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.filter { border: 2px solid var(--color-line); background: var(--color-card); color: var(--color-ink); font-weight: 700; font-size: .92rem; padding: 10px 20px; border-radius: var(--radius-pill); cursor: pointer; transition: all .25s var(--ease); display: inline-flex; align-items: center; gap: 8px; }
.filter .ico { width: 17px; height: 17px; }
.filter:hover { border-color: var(--color-primary); color: var(--color-primary); }
.filter.active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

/* ---- About values ---- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value { background: var(--color-card); border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease); }
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value .v-ico { width: 56px; height: 56px; border-radius: 15px; background: var(--color-sage); color: var(--color-primary); display: grid; place-items: center; margin-bottom: 18px; }
.value .v-ico svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.value h3 { margin-bottom: 8px; }
.value p { color: var(--color-muted); font-size: .96rem; }

/* ---- Team ---- */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.member { text-align: center; }
.member img { border-radius: var(--radius-lg); aspect-ratio: 3/4; object-fit: cover; box-shadow: var(--shadow-sm); margin-bottom: 14px; }
.member h3 { font-size: 1.12rem; }
.member span { color: var(--color-primary); font-weight: 600; font-size: .9rem; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(30px,5vw,56px); align-items: start; }
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: var(--color-card); border: 1px solid var(--color-line); border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.info-card .i-ico { width: 48px; height: 48px; border-radius: 13px; background: var(--color-sage); color: var(--color-primary); display: grid; place-items: center; flex-shrink: 0; }
.info-card .i-ico svg { width: 23px; height: 23px; stroke: currentColor; stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.info-card h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 3px; }
.info-card p, .info-card a { color: var(--color-muted); font-size: .96rem; }
.info-card a:hover { color: var(--color-primary); }
.form { background: var(--color-card); border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: clamp(26px,4vw,40px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 2px solid var(--color-line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; background: var(--color-bg); color: var(--color-ink); transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); }
.field textarea { resize: vertical; min-height: 120px; }

/* ---- FAQ / accordion ---- */
.faq { max-width: 760px; margin: 0 auto; }
.acc { background: var(--color-card); border: 1px solid var(--color-line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.acc-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--color-ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc-q .ico { width: 22px; height: 22px; color: var(--color-primary); transition: transform .3s var(--ease); }
.acc.open .acc-q .ico { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-a p { padding: 0 24px 22px; color: var(--color-muted); }

/* ---- Blog ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post { background: var(--color-card); border: 1px solid var(--color-line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); display: flex; flex-direction: column; }
.post:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.post-media { aspect-ratio: 16/10; overflow: hidden; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post:hover .post-media img { transform: scale(1.06); }
.post-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-cat { color: var(--color-primary); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; }
.post-body h3 { font-size: 1.24rem; }
.post-body p { color: var(--color-muted); font-size: .96rem; }
.post-meta { display: flex; align-items: center; gap: 8px; color: var(--color-muted); font-size: .85rem; margin-top: auto; padding-top: 8px; }
.post-meta .ico { width: 15px; height: 15px; }

/* ---- Legal / prose ---- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 38px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.prose p, .prose li { color: var(--color-muted); margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--color-primary); text-decoration: underline; }
.prose .updated { color: var(--color-muted); font-size: .9rem; margin-bottom: 30px; }

/* ---- Newsletter ---- */
.newsletter { background: var(--color-sage); border-radius: var(--radius-lg); padding: clamp(36px,5vw,60px); text-align: center; }
.news-form { display: flex; gap: 12px; max-width: 460px; margin: 24px auto 0; }
.news-form input { flex: 1; padding: 14px 18px; border: 2px solid var(--color-line); border-radius: var(--radius-pill); font-family: var(--font-body); font-size: 1rem; background: var(--color-card); }
.news-form input:focus { outline: none; border-color: var(--color-primary); }

/* ---- Footer ---- */
.footer { background: var(--color-ink); color: #cfd8ce; padding: clamp(48px,6vw,72px) 0 30px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 36px; }
.footer .logo { color: #fff; margin-bottom: 14px; }
.footer .logo .logo-txt, .footer .logo small { color: #fff; }
.footer .foot-about { font-size: .95rem; color: #a9b5a8; max-width: 300px; margin-bottom: 18px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s; }
.foot-social a:hover { background: var(--color-primary); transform: translateY(-3px); }
.foot-social svg { width: 19px; height: 19px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.foot-col h4 { color: #fff; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 16px; }
.foot-col a { display: block; color: #a9b5a8; font-size: .95rem; padding: 6px 0; transition: color .2s, padding-left .2s; }
.foot-col a:hover { color: #fff; padding-left: 4px; }
.foot-news p { font-size: .93rem; color: #a9b5a8; margin-bottom: 14px; }
.foot-news .news-form { max-width: none; margin: 0; flex-direction: column; gap: 10px; }
.foot-news input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: #fff; }
.foot-news input::placeholder { color: #8a978a; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; color: #8a978a; }
.foot-bottom a:hover { color: #fff; }
.foot-bottom .fb-links { display: flex; gap: 20px; }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* Back to top */
.totop { position: fixed; bottom: 24px; right: 24px; width: 50px; height: 50px; border-radius: 50%; background: var(--color-primary); color: #fff; border: none; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-green); opacity: 0; visibility: hidden; transform: translateY(14px); transition: all .3s var(--ease); z-index: 90; }
.totop.show { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--color-primary-dark); transform: translateY(-3px); }
.totop svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Scroll progress */
.progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); width: 0; z-index: 300; transition: width .1s linear; }

/* Floating WhatsApp */
.wa-float { position: fixed; bottom: 24px; left: 24px; z-index: 95; display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 13px 20px 13px 16px; border-radius: var(--radius-pill); box-shadow: 0 12px 30px rgba(37,211,102,.42); font-weight: 700; font-size: .95rem; transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(37,211,102,.5); color: #fff; }
.wa-float svg { width: 26px; height: 26px; fill: currentColor; flex-shrink: 0; }
.wa-float .wa-txt { white-space: nowrap; }
.wa-float::before { content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.4s var(--ease) infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (max-width: 560px) { .wa-float { padding: 14px; bottom: 18px; left: 18px; } .wa-float .wa-txt { display: none; } .totop { bottom: 18px; right: 18px; } }
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .cats { grid-template-columns: repeat(2, 1fr); }
  .grid-cards, .tgrid, .blog-grid, .values { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; order: -1; }
  .split { grid-template-columns: 1fr; }
  .split-media.rev { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 22px; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .foot-news { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cats, .grid-cards, .tgrid, .blog-grid, .values, .team { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .ctaband .btns .btn { flex: 1; justify-content: center; }
  .foot-bottom { flex-direction: column; }
  .strip-inner { justify-content: center; }
}

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