/* ==========================================================================
   Organic Life Ayurveda Brasil — Design System
   Paleta extraída da identidade visual: verde oliva escuro + dourado + creme
   Tipografia: Fraunces (display, serifada, calorosa) + Jost (corpo, geométrica)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Jost:wght@300;400;500;600&display=swap');

:root{
  /* cores da marca */
  --olive-950:#242c1c;
  --olive-900:#3E4A32;
  --olive-800:#4c5a3d;
  --gold-500:#C9A24B;
  --gold-400:#dcb968;
  --gold-100:#f1e2bb;
  --cream:#F7F1E3;
  --cream-2:#F0E8D4;
  --brown-800:#5C4430;
  --brown-600:#7a5f45;
  --white:#FFFFFF;
  --wine-700:#7a2f36;

  --font-display:'Fraunces', ui-serif, Georgia, serif;
  --font-body:'Jost', ui-sans-serif, system-ui, sans-serif;

  --radius-s:6px;
  --radius-m:14px;
  --radius-l:28px;
  --shadow-soft:0 20px 40px -20px rgba(36,44,28,.35);
  --shadow-card:0 10px 30px -12px rgba(92,68,48,.28);
  --max-w:1200px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--cream);
  color:var(--brown-800);
  font-family:var(--font-body);
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
button{font-family:inherit;cursor:pointer;}

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

:focus-visible{outline:3px solid var(--gold-500); outline-offset:3px;}

.wrap{max-width:var(--max-w); margin:0 auto; padding:0 24px;}

h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--olive-900);
  margin:0 0 .5em;
  font-weight:500;
  letter-spacing:.005em;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-body);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.72rem;
  color:var(--gold-500);
  font-weight:600;
  margin-bottom:14px;
}
.eyebrow::before{content:'';width:22px;height:1px;background:var(--gold-500);}

.lede{font-size:1.08rem; color:var(--brown-600); max-width:60ch;}

/* ---------- lotus divider (assinatura visual da marca) ---------- */
.lotus-divider{display:flex; align-items:center; justify-content:center; gap:14px; margin:0 0 28px;}
.lotus-divider::before,.lotus-divider::after{content:'';height:1px; width:64px; background:linear-gradient(90deg, transparent, var(--gold-500));}
.lotus-divider::after{background:linear-gradient(90deg, var(--gold-500), transparent);}
.lotus-mark{width:26px;height:26px;color:var(--gold-500);}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 30px;
  border-radius:999px;
  font-size:.92rem; font-weight:500;
  border:1px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn-gold{background:var(--gold-500); color:var(--olive-950); box-shadow:0 12px 24px -10px rgba(201,162,75,.6);}
.btn-gold:hover{background:var(--gold-400);}
.btn-outline{border-color:var(--cream); color:var(--cream); background:transparent;}
.btn-outline:hover{background:rgba(247,241,227,.1);}
.btn-outline-dark{border-color:var(--olive-900); color:var(--olive-900); background:transparent;}
.btn-outline-dark:hover{background:var(--olive-900); color:var(--cream);}
.btn-sm{padding:10px 20px; font-size:.82rem;}
.btn-block{width:100%;}
.btn-whats{background:#3E4A32; color:var(--cream);}
.btn-whats:hover{background:var(--olive-950);}
.btn svg{width:18px;height:18px;flex-shrink:0;}

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(247,241,227,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(92,68,48,.12);
}
.site-header .wrap{display:flex; align-items:center; justify-content:space-between; padding-top:14px; padding-bottom:14px; gap:20px;}
.brand{display:flex; align-items:center; gap:12px;}
.brand img{height:46px; width:auto; border-radius:8px;}
.brand-text{font-family:var(--font-display); font-size:1.05rem; color:var(--olive-900); line-height:1.1;}
.brand-text small{display:block; font-family:var(--font-body); font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-500); margin-top:3px;}

.nav-main{display:flex; align-items:center; gap:34px;}
.nav-main a{
  font-size:.86rem; color:var(--brown-800); position:relative; padding:4px 0;
}
.nav-main a::after{content:'';position:absolute; left:0; bottom:-2px; width:0; height:1px; background:var(--gold-500); transition:width .25s ease;}
.nav-main a:hover::after, .nav-main a.active::after{width:100%;}
.nav-main a.active{color:var(--olive-900); font-weight:500;}

.header-actions{display:flex; align-items:center; gap:14px;}
.header-cta-mobile{display:none;}
.nav-toggle{display:none; background:none; border:none; padding:6px;}
.nav-toggle span{display:block; width:24px; height:2px; background:var(--olive-900); margin:5px 0; transition:.3s;}

@media (max-width:900px){
  .nav-main{
    position:fixed; inset:0 0 0 auto; height:100vh; width:min(320px,80vw);
    background:var(--cream); flex-direction:column; align-items:flex-start;
    padding:100px 32px 32px; gap:26px;
    transform:translateX(100%); transition:transform .35s ease;
    box-shadow:var(--shadow-soft);
  }
  .nav-main.open{transform:translateX(0);}
  .nav-toggle{display:block;}
  .header-actions .btn-sm.header-cta-desktop{display:none;}
  .header-cta-mobile{
    display:inline-flex; margin-top:10px; padding:12px 22px; border-radius:999px;
    background:var(--gold-500); color:var(--olive-950); font-weight:500;
  }
}

/* ---------- hero ---------- */
.hero{position:relative; overflow:hidden; background:var(--cream);}
.hero .wrap{
  display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;
  padding-top:72px; padding-bottom:72px;
}
.hero h1{font-size:clamp(2.3rem,4.2vw,3.6rem); line-height:1.08; margin-bottom:22px;}
.hero h1 em{font-style:italic; color:var(--gold-500);}
.hero-actions{display:flex; gap:16px; flex-wrap:wrap; margin-top:30px;}
.hero-figure-wrap{position:relative;}
.hero-figure{position:relative; border-radius:var(--radius-l); overflow:hidden; box-shadow:var(--shadow-soft); aspect-ratio:3/2;}
.hero-figure img{width:100%; height:100%; object-fit:cover;}
.hero-badge{
  background:var(--olive-900); color:var(--cream);
  padding:16px 22px; border-radius:var(--radius-m);
  font-family:var(--font-display); font-size:.95rem;
  margin-top:14px;
}
@media (min-width:901px){
  .hero-badge{
    position:absolute; left:-18px; bottom:26px; box-shadow:var(--shadow-card);
    max-width:230px; margin-top:0;
  }
}
.hero-badge b{color:var(--gold-400); display:block; font-size:1.5rem; margin-bottom:2px;}
@media (max-width:900px){
  .hero .wrap{grid-template-columns:1fr; padding-top:44px;}
  .hero-figure-wrap{order:-1;}
}

/* ---------- sections ---------- */
section{padding:90px 0;}
.section-head{max-width:640px; margin:0 auto 56px; text-align:center;}
.section-head.left{margin-left:0; text-align:left;}
.section-dark{background:var(--olive-900); color:var(--cream-2);}
.section-dark h2, .section-dark h3{color:var(--cream);}
.section-dark .eyebrow{color:var(--gold-400);}
.section-cream2{background:var(--cream-2);}

/* ---------- category grid ---------- */
.cat-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.cat-card{
  position:relative; border-radius:var(--radius-l); overflow:hidden; aspect-ratio:1/1;
  box-shadow:var(--shadow-card); isolation:isolate;
}
.cat-card img{width:100%; height:100%; object-fit:cover; transition:transform .6s ease;}
.cat-card::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(36,44,28,0) 30%, rgba(36,44,28,.88) 100%);
}
.cat-card:hover img{transform:scale(1.06);}
.cat-card-body{position:absolute; left:0; right:0; bottom:0; padding:26px; z-index:2; color:var(--cream);}
.cat-card-body h3{color:var(--cream); font-size:1.5rem; margin-bottom:6px;}
.cat-card-body span{font-size:.82rem; color:var(--gold-400); display:inline-flex; align-items:center; gap:6px;}
@media (max-width:960px){.cat-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:600px){.cat-grid{grid-template-columns:1fr;}}

/* ---------- product cards ---------- */
.product-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
.product-card{
  background:var(--white); border-radius:var(--radius-m); overflow:hidden;
  box-shadow:var(--shadow-card); display:flex; flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease;
}
.product-card:hover{transform:translateY(-6px);}
.product-media{aspect-ratio:4/5; overflow:hidden; background:var(--cream-2);}
.product-media img{width:100%; height:100%; object-fit:cover;}
.product-body{padding:20px 20px 22px; display:flex; flex-direction:column; gap:8px; flex:1;}
.product-body h3{font-size:1.1rem; margin:0;}
.product-size{font-size:.74rem; letter-spacing:.06em; text-transform:uppercase; color:var(--gold-500); font-weight:600;}
.product-desc{font-size:.87rem; color:var(--brown-600); flex:1;}
.product-ing{font-size:.76rem; color:var(--brown-600); opacity:.85;}
.product-foot{display:flex; align-items:center; justify-content:space-between; margin-top:8px; gap:10px;}
.product-price{font-family:var(--font-display); font-size:1.2rem; color:var(--olive-900);}
@media (max-width:1080px){.product-grid{grid-template-columns:repeat(3,1fr);}}
@media (max-width:760px){.product-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:480px){.product-grid{grid-template-columns:1fr;}}

/* ---------- category filter tabs (produtos.html) ---------- */
.cat-tabs{display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-bottom:54px;}
.cat-tab{
  padding:11px 22px; border-radius:999px; border:1px solid rgba(92,68,48,.28);
  background:transparent; font-size:.85rem; color:var(--brown-800); transition:.25s;
}
.cat-tab.active,.cat-tab:hover{background:var(--olive-900); color:var(--cream); border-color:var(--olive-900);}
.product-section-title{display:flex; align-items:baseline; gap:16px; margin:0 0 30px;}
.product-section-title h2{margin:0;}
.product-section-title p{margin:0; color:var(--brown-600); font-size:.92rem;}
.category-block{margin-bottom:78px;}
.category-block:last-child{margin-bottom:0;}
.category-intro{display:grid; grid-template-columns:.9fr 1.5fr; gap:36px; align-items:center; margin-bottom:38px; background:var(--white); border-radius:var(--radius-l); overflow:hidden; box-shadow:var(--shadow-card);}
.category-intro img{width:100%; height:100%; object-fit:cover; min-height:220px;}
.category-intro-body{padding:36px 40px 36px 4px;}
@media (max-width:760px){.category-intro{grid-template-columns:1fr;} .category-intro-body{padding:6px 26px 32px;}}

/* ---------- manifesto ---------- */
.manifesto{position:relative;}
.manifesto-mark{position:absolute; top:-40px; right:-60px; width:340px; opacity:.14; pointer-events:none;}
.manifesto-mark svg{width:100%; height:auto;}
.manifesto-text{max-width:760px; margin:0 auto; text-align:center; font-family:var(--font-display); font-size:clamp(1.1rem,2vw,1.55rem); line-height:1.7; color:var(--cream);}
.manifesto-text p{margin:0 0 .85em;}
.manifesto-text .signature{margin-top:26px; font-style:italic; color:var(--gold-400); font-size:1rem; font-family:var(--font-body);}

/* ---------- pillars mvp ---------- */
.pillars{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.pillar{background:var(--white); border-radius:var(--radius-m); padding:34px 30px; box-shadow:var(--shadow-card);}
.pillar .num{font-family:var(--font-display); font-size:.85rem; color:var(--gold-500); letter-spacing:.1em; text-transform:uppercase; margin-bottom:10px; display:block;}
.pillar h3{margin-bottom:10px;}
.pillar p{font-size:.92rem; color:var(--brown-600); margin:0;}
@media (max-width:820px){.pillars{grid-template-columns:1fr;}}

/* ---------- founder / about split ---------- */
.split{display:grid; grid-template-columns:.85fr 1.15fr; gap:56px; align-items:center;}
.split.reverse{grid-template-columns:1.15fr .85fr;}
.split.reverse .split-figure{order:2;}
.split-figure img{border-radius:var(--radius-l); box-shadow:var(--shadow-card); object-fit:cover; width:100%; aspect-ratio:3/2;}
.split-figure.is-portrait img{aspect-ratio:9/16;}
.split-figure.is-landscape img{aspect-ratio:3/2;}
.split-body p{color:var(--brown-600); margin:0 0 16px;}
@media (max-width:900px){.split, .split.reverse{grid-template-columns:1fr;} .split.reverse .split-figure{order:0;}}

/* ---------- services ---------- */
.service-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:30px;}
.service-card{background:var(--white); border-radius:var(--radius-l); overflow:hidden; box-shadow:var(--shadow-card); display:flex; flex-direction:column;}
.service-media{aspect-ratio:9/16; overflow:hidden;}
.service-media img{width:100%; height:100%; object-fit:cover;}
.service-body{padding:30px 32px 34px; display:flex; flex-direction:column; gap:12px; flex:1;}
.service-tags{display:flex; gap:10px; flex-wrap:wrap;}
.tag{font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; padding:6px 12px; border-radius:999px; background:var(--cream-2); color:var(--brown-800); font-weight:500;}
.service-price{font-family:var(--font-display); font-size:1.6rem; color:var(--olive-900); margin:6px 0 2px;}
.service-price span{font-size:.85rem; font-family:var(--font-body); color:var(--brown-600); font-weight:400;}
@media (max-width:760px){.service-grid{grid-template-columns:1fr;}}

/* ---------- faq ---------- */
.faq-groups{max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:44px;}
.faq-group h3{font-size:1.05rem; letter-spacing:.02em; color:var(--gold-500); text-transform:uppercase; font-family:var(--font-body); font-weight:600; font-size:.8rem; margin-bottom:16px;}
.faq-item{border-bottom:1px solid rgba(92,68,48,.18);}
.faq-q{
  width:100%; text-align:left; background:none; border:none; padding:20px 0;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  font-family:var(--font-display); font-size:1.05rem; color:var(--olive-900);
}
.faq-q .plus{flex-shrink:0; width:22px; height:22px; position:relative;}
.faq-q .plus::before,.faq-q .plus::after{content:''; position:absolute; background:var(--gold-500); transition:.3s;}
.faq-q .plus::before{top:50%; left:0; width:100%; height:2px; transform:translateY(-50%);}
.faq-q .plus::after{left:50%; top:0; width:2px; height:100%; transform:translateX(-50%);}
.faq-item.open .plus::after{transform:translateX(-50%) rotate(90deg); opacity:0;}
.faq-a{max-height:0; overflow:hidden; transition:max-height .35s ease;}
.faq-a p{margin:0 0 22px; color:var(--brown-600); font-size:.94rem; max-width:64ch;}

/* ---------- newsletter / final cta ---------- */
.cta-band{
  background:var(--olive-900); border-radius:var(--radius-l); padding:56px 50px;
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  color:var(--cream);
}
.cta-band h2{color:var(--cream); margin-bottom:8px;}
.cta-band p{margin:0; color:var(--cream-2); max-width:44ch;}

/* ---------- footer ---------- */
.site-footer{background:var(--olive-950); color:var(--cream-2); padding:70px 0 26px;}
.footer-top{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(247,241,227,.12);}
.footer-brand img{height:44px; margin-bottom:14px; border-radius:8px;}
.footer-brand p{font-size:.85rem; color:rgba(247,241,227,.7); max-width:32ch;}
.footer-col h4{color:var(--gold-400); font-family:var(--font-body); font-size:.76rem; text-transform:uppercase; letter-spacing:.1em; font-weight:600; margin-bottom:16px;}
.footer-col li{margin-bottom:10px;}
.footer-col a{font-size:.87rem; color:rgba(247,241,227,.82); transition:color .2s;}
.footer-col a:hover{color:var(--gold-400);}
.footer-bottom{display:flex; align-items:center; justify-content:space-between; gap:16px; padding-top:24px; font-size:.78rem; color:rgba(247,241,227,.55); flex-wrap:wrap;}
.footer-socials{display:flex; gap:14px;}
.footer-socials a{width:36px;height:36px;border-radius:50%; border:1px solid rgba(247,241,227,.25); display:flex; align-items:center; justify-content:center;}
.footer-socials a:hover{border-color:var(--gold-400); color:var(--gold-400);}
@media (max-width:860px){.footer-top{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.footer-top{grid-template-columns:1fr;}}

/* ---------- floating whatsapp ---------- */
.whats-float{
  position:fixed; right:22px; bottom:22px; z-index:70;
  width:60px; height:60px; border-radius:50%; background:#3E4A32; color:var(--cream);
  display:flex; align-items:center; justify-content:center; box-shadow:0 14px 30px -8px rgba(36,44,28,.55);
  transition:transform .25s ease;
}
.whats-float:hover{transform:scale(1.08);}
.whats-float svg{width:28px;height:28px;}

/* ---------- breadcrumb / page header (páginas internas) ---------- */
.page-hero{background:var(--cream-2); padding:64px 0 56px; text-align:center;}
.page-hero h1{font-size:clamp(2rem,4vw,2.8rem); margin-bottom:12px;}
.page-hero p{max-width:56ch; margin:0 auto; color:var(--brown-600);}

/* ---------- fade-in on scroll ---------- */
.reveal{opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1; transform:translateY(0);}

/* ---------- misc ---------- */
.text-center{text-align:center;}
.mt-0{margin-top:0;}
.small-note{font-size:.8rem; color:var(--brown-600); opacity:.85;}
