:root{
  --coffee:#6f3f2b;
  --espresso:#2b1710;
  --caramel:#c68b49;
  --cream:#fbf5ec;
  --leaf:#224b32;
  --gold:#d9aa54;
  --white:#ffffff;
  --ink:#17120f;
  --muted:#6f655d;
  --shadow:0 30px 80px rgba(43,23,16,.16);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","Segoe UI",Roboto,Arial,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(214,170,84,.28), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(34,75,50,.13), transparent 26%),
    linear-gradient(180deg,#fff 0%,#fff 42%,#fbf5ec 100%);
  overflow-x:hidden;
}
a{color:inherit}
img{max-width:100%; display:block}
.noise{
  pointer-events:none;
  position:fixed; inset:0;
  opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  z-index:1;
}

.nav{
  width:min(1120px, calc(100% - 28px));
  position:sticky; top:14px; z-index:20;
  margin:14px auto 0;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:10px 12px;
  border:1px solid rgba(111,63,43,.12);
  border-radius:999px;
  background:rgba(255,255,255,.74);
  backdrop-filter:blur(24px);
  box-shadow:0 12px 40px rgba(43,23,16,.08);
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--espresso); font-weight:800}
.brand img{width:38px; height:38px; object-fit:contain; border-radius:50%}
.nav-links{display:flex; gap:22px}
.nav-links a, footer a{
  color:var(--muted);
  text-decoration:none;
  font-weight:650;
  font-size:14px;
}
.nav-links a:hover, footer a:hover{color:var(--espresso)}
.nav-cta{
  text-decoration:none;
  color:white;
  background:var(--espresso);
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  box-shadow:0 14px 26px rgba(43,23,16,.14);
}
.nav-cta:hover{transform:translateY(-1px)}

main{position:relative; z-index:2}
section[id]{scroll-margin-top:110px}

.hero{
  width:min(1120px, calc(100% - 32px));
  margin:34px auto 0;
  min-height:calc(100vh - 110px);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}
.hero-copy,.hero-card,.stats article,.cards article,.steps div,.ai-panel,.final-cta{position:relative}
.eyebrow{
  display:inline-flex;
  color:var(--coffee);
  background:rgba(198,139,73,.14);
  border:1px solid rgba(198,139,73,.2);
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  letter-spacing:.02em;
}
h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(52px,8vw,96px);
  line-height:.9;
  letter-spacing:-.07em;
  margin:18px 0;
}
h2{
  font-size:clamp(34px,5vw,64px);
  line-height:.96;
  letter-spacing:-.055em;
  margin:14px 0;
}
h3{font-size:22px; letter-spacing:-.025em}
.lead,.section p{
  font-size:clamp(18px,2vw,22px);
  color:var(--muted);
  line-height:1.45;
  max-width:640px;
}
.microcopy{
  margin:16px 0 0;
  color:var(--coffee);
  font-size:15px;
  font-weight:700;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:28px 0 0;
}
.compact-actions{margin-top:22px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:850;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}
.btn:hover{transform:translateY(-3px)}
.btn:focus-visible{
  outline:3px solid rgba(198,139,73,.45);
  outline-offset:3px;
}
.primary{
  background:var(--espresso);
  color:#fff;
  box-shadow:0 18px 40px rgba(43,23,16,.22);
}
.secondary{
  background:#fff;
  color:var(--espresso);
  border:1px solid rgba(111,63,43,.14);
}
.trust{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.trust span{
  background:rgba(255,255,255,.76);
  border:1px solid rgba(111,63,43,.12);
  border-radius:999px;
  padding:10px 12px;
  color:var(--coffee);
  font-weight:750;
}

.hero-card{
  min-height:620px;
  position:relative;
  display:grid;
  place-items:center;
}
.hero-visual{
  position:relative;
  z-index:3;
  width:min(460px,88vw);
  height:640px;
  border-radius:42px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-visual:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(23,18,15,.04), rgba(23,18,15,.45));
  z-index:1;
}
.hero-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.glass-card{
  position:absolute;
  z-index:4;
  left:32px;
  right:32px;
  bottom:42px;
  padding:18px;
  border-radius:28px;
  color:white;
  background:rgba(43,23,16,.72);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.18);
  display:flex;
  flex-direction:column;
  gap:5px;
}
.glass-card span{color:#f1d7b5; font-weight:800}
.glass-card strong{font-size:28px; letter-spacing:-.04em}
.glass-card small{color:#fff5e8}
.orb{position:absolute; border-radius:999px; filter:blur(2px); opacity:.72}
.orb-one{width:270px;height:270px;background:rgba(198,139,73,.26);right:0;top:74px}
.orb-two{width:170px;height:170px;background:rgba(34,75,50,.18);left:8px;bottom:100px}

.stats,.section{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  padding:20px 0 42px;
}
.stats article,.cards article,.steps div,.ai-panel{
  border:1px solid rgba(111,63,43,.12);
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(20px);
  box-shadow:0 20px 70px rgba(43,23,16,.08);
  border-radius:34px;
}
.stats article{padding:24px}
.stats strong{
  display:block;
  font-size:44px;
  color:var(--espresso);
  letter-spacing:-.06em;
}
.stats span{color:var(--muted); font-weight:700}

.section{
  padding:76px 0;
}
.center{
  text-align:center;
  display:grid;
  place-items:center;
}
.split{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:32px;
  align-items:center;
}
.journey-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:22px 0 0;
}
.journey-meta span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.8);
  border:1px solid rgba(111,63,43,.12);
  box-shadow:0 12px 30px rgba(43,23,16,.06);
  color:var(--coffee);
  font-weight:800;
  font-size:14px;
}
.steps{display:grid; gap:14px}
.steps div{
  padding:24px;
  display:grid;
  grid-template-columns:64px 1fr;
  gap:16px;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.steps b{
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
  border-radius:50%;
  background:rgba(198,139,73,.14);
  font-size:26px;
  color:var(--espresso);
}
.steps span{font-size:18px; font-weight:700; color:var(--espresso)}
.steps strong{display:block; margin-bottom:4px; font-size:20px; color:var(--espresso)}
.process-steps{
  position:relative;
}
.process-steps:before{
  content:"";
  position:absolute;
  left:26px;
  top:34px;
  bottom:34px;
  width:2px;
  background:linear-gradient(180deg, rgba(198,139,73,.5), rgba(34,75,50,.24));
}
.process-steps div{
  padding-left:18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
}
.process-steps div b{
  position:relative;
  z-index:2;
}
.process-steps div:hover,
.stats article:hover,
.cards article:hover,
.media-card:hover,
.hero-visual:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 70px rgba(43,23,16,.12);
}
.steps div:hover b{
  background:rgba(198,139,73,.22);
}

.ai-panel{
  padding:36px;
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:24px;
  overflow:hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(34,75,50,.18), transparent 28%),
    linear-gradient(135deg,#fff,#fff7ed);
}
.ai-panel--impact{
  grid-template-columns:1.05fr .95fr;
  align-items:stretch;
  overflow:hidden;
  padding:44px;
  border-radius:42px;
  background:
    linear-gradient(180deg, rgba(251,244,232,.72), rgba(248,239,226,.62)),
    url("assets/coffee-village-bg.svg") center/cover no-repeat;
  box-shadow:0 28px 80px rgba(43,23,16,.10);
  border:1px solid rgba(111,63,43,.10);
  position:relative;
}
.ai-panel--impact:before{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:32px;
  border:1px solid rgba(111,63,43,.09);
  background:radial-gradient(circle at 50% 50%, rgba(255,255,255,.06), transparent 55%);
  pointer-events:none;
}
.ai-panel--impact > *{
  position:relative;
  z-index:1;
}
.ai-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.ai-highlights{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:20px;
}
.ai-highlights div{
  padding:16px 14px;
  border-radius:22px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(111,63,43,.12);
  box-shadow:0 14px 35px rgba(43,23,16,.08);
}
.ai-highlights strong{
  display:block;
  color:var(--espresso);
  font-size:16px;
  margin-bottom:4px;
}
.ai-highlights span{
  display:block;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
  line-height:1.35;
}
.ai-visual{
  position:relative;
  min-height:520px;
  border-radius:40px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.9), transparent 20%),
    radial-gradient(circle at 50% 52%, rgba(198,139,73,.08), transparent 34%),
    linear-gradient(180deg, rgba(255,250,242,.82), rgba(244,232,214,.95));
  border:1px solid rgba(111,63,43,.10);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.35), 0 24px 70px rgba(43,23,16,.10);
  overflow:hidden;
}
.ai-visual:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:
    radial-gradient(circle at 20% 22%, rgba(255,255,255,.70), transparent 18%),
    radial-gradient(circle at 80% 74%, rgba(198,139,73,.10), transparent 20%),
    radial-gradient(circle at 50% 82%, rgba(34,75,50,.06), transparent 18%);
  opacity:.85;
}
.ai-core{
  position:absolute;
  inset:50% auto auto 50%;
  width:min(280px,68%);
  transform:translate(-50%,-50%);
  text-align:center;
  padding:32px 28px;
  border-radius:36px;
  background:linear-gradient(180deg, rgba(72,47,38,.98), rgba(65,42,34,.98));
  color:#fff;
  box-shadow:0 28px 60px rgba(43,23,16,.24);
}
.ai-core-kicker{
  display:inline-flex;
  margin-bottom:10px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#f5d6b8;
  font-size:14px;
  font-weight:800;
}
.ai-core strong{
  display:block;
  font-size:30px;
  letter-spacing:-.04em;
  line-height:1;
}
.ai-core p{
  margin:10px 0 0;
  color:#f9f1e8;
  font-size:15px;
  line-height:1.45;
}

.ai-bubbles{
  position:relative;
  min-height:320px;
}
.ai-bubbles span{
  position:absolute;
  padding:16px 22px;
  border-radius:999px;
  font-weight:900;
  background:var(--espresso);
  color:#fff;
  box-shadow:0 20px 50px rgba(43,23,16,.18);
}
.ai-bubbles span:nth-child(1){left:10%;top:10%}
.ai-bubbles span:nth-child(2){right:14%;top:22%;background:var(--leaf)}
.ai-bubbles span:nth-child(3){left:24%;top:48%;background:var(--caramel)}
.ai-bubbles span:nth-child(4){right:4%;bottom:12%}
.ai-bubbles span:nth-child(5){left:4%;bottom:8%;background:var(--leaf)}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:28px;
}
.cards article{padding:28px}
.cards article span{font-size:34px}
.cards p{font-size:16px}

.process-steps{
  grid-template-columns:1fr;
}
.process-steps div{
  grid-template-columns:68px 1fr;
}

.media-card{
  margin-top:28px;
  position:relative;
  border:1px solid rgba(111,63,43,.12);
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 20px 70px rgba(43,23,16,.08);
}
.media-card img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}
.media-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(23,18,15,.02), rgba(23,18,15,.18));
  z-index:1;
}
.media-badge{
  position:absolute;
  left:24px;
  bottom:24px;
  z-index:2;
  padding:12px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.84);
  color:var(--espresso);
  font-weight:900;
  backdrop-filter:blur(18px);
}

.hero-visual,
.media-card,
.stats article,
.cards article{
  transition:transform .35s ease, box-shadow .35s ease;
}
.hero-visual{
  animation:floaty 7s ease-in-out infinite;
}
.media-card{
  animation:floaty 9s ease-in-out infinite reverse;
}
.process-steps div:nth-child(1){transition-delay:.04s}
.process-steps div:nth-child(2){transition-delay:.1s}
.process-steps div:nth-child(3){transition-delay:.16s}
.process-steps div:nth-child(4){transition-delay:.22s}
.process-steps div:nth-child(5){transition-delay:.28s}

@keyframes floaty{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

.final-cta{
  text-align:center;
  display:grid;
  place-items:center;
  padding-bottom:120px;
}
.final-cta img{
  width:140px;
  filter:drop-shadow(0 18px 30px rgba(43,23,16,.14));
  margin-bottom:16px;
}
.center-actions{justify-content:center}

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:30;
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  background:linear-gradient(135deg,#25D366 0%, #1faa55 100%);
  text-decoration:none;
  padding:14px 18px 14px 14px;
  border-radius:999px;
  box-shadow:0 22px 50px rgba(37,211,102,.34), inset 0 1px 0 rgba(255,255,255,.24);
  font-weight:950;
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(14px);
  isolation:isolate;
}
.whatsapp-float::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0));
  z-index:-1;
}
.wa-icon{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border-radius:50%;
  background:white;
  color:#25D366;
  box-shadow:0 10px 22px rgba(0,0,0,.12);
}
.wa-icon svg{
  width:22px;
  height:22px;
  fill:currentColor;
}
.whatsapp-float b{
  font-size:15px;
  letter-spacing:-.01em;
}
.pulse{
  position:absolute;
  inset:-7px;
  border-radius:999px;
  border:1px solid rgba(37,211,102,.55);
  animation:pulse 1.6s infinite;
}
@keyframes pulse{
  to{transform:scale(1.15);opacity:0}
}

footer{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
  padding:34px 0 34px;
  border-top:1px solid rgba(111,63,43,.12);
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  color:var(--muted);
}
.social-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.social-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.8);
  border:1px solid rgba(111,63,43,.12);
  text-decoration:none;
  font-weight:800;
  color:var(--espresso);
  transition:transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.social-link:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(43,23,16,.12);
}
.social-link svg{
  width:18px;
  height:18px;
  fill:currentColor;
  flex:0 0 auto;
}

.mobile-cta{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:29;
  display:none;
  gap:10px;
  padding:10px;
  border-radius:24px;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(111,63,43,.12);
  box-shadow:0 18px 50px rgba(43,23,16,.12);
  backdrop-filter:blur(20px);
}
.mobile-cta .btn{flex:1}

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

@media (max-width: 860px){
  .nav-links{display:none}
  .nav-cta{padding:11px 14px}
  .brand span{font-size:14px}
  .hero{
    grid-template-columns:1fr;
    min-height:auto;
    padding-top:36px;
  }
  .hero-card{min-height:520px; order:-1}
  .hero-visual{height:510px; width:min(100%, 640px)}
  .media-card img{height:360px}
  h1{text-align:left}
  .stats,.cards,.split,.ai-panel{grid-template-columns:1fr}
  .stats{padding-bottom:26px}
  .section{padding:54px 0}
  .ai-panel--impact,
  .ai-panel{grid-template-columns:1fr}
  .ai-highlights{grid-template-columns:1fr}
  .ai-panel--impact{padding:28px}
  .ai-visual{min-height:380px}
  .ai-bubbles{min-height:230px}
  .whatsapp-float{
    padding:13px 16px 13px 12px;
  }
  .whatsapp-float b{display:inline}
  .social-links{justify-content:flex-start}
}

@media (max-width: 520px){
  .hero-actions .btn,
  .mobile-cta .btn{
    width:100%;
  }
  .stats article{padding:20px}
  .stats strong{font-size:36px}
  .steps div{grid-template-columns:1fr; gap:6px}
  .steps b{width:44px;height:44px;font-size:22px}
  .steps strong{font-size:18px}
  .ai-panel{padding:24px}
  .ai-panel--impact{padding:22px}
  .ai-core{width:min(240px,76%)}
  .ai-visual{min-height:340px}
  .whatsapp-float{
    right:12px;
    bottom:90px;
    width:auto;
    max-width:calc(100vw - 24px);
  }
  .whatsapp-float b{
    font-size:14px;
  }
  .media-card img{height:300px}
  footer{padding-bottom:94px}
  .social-link{width:100%; justify-content:flex-start}
  .mobile-cta{display:flex}
}

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