/* ============================================================
   MODELO 1 — RÚSTICO PREMIUM
   Verde floresta + Dourado + Tipografia Serif
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Lato:wght@300;400;600&display=swap');

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

:root {
  --verde:    #1B3A2D;
  --verde2:   #2C5F45;
  --dourado:  #C8963E;
  --dourado2: #E8B45A;
  --creme:    #F5F0E8;
  --marrom:   #3D2B1F;
  --cinza:    #F0EDE8;
  --texto:    #2A2118;
  --branco:   #FFFFFF;
}

body { font-family: 'Lato', sans-serif; color: var(--texto); background: var(--branco); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* TOPBAR */
.topbar { background: var(--marrom); color: rgba(255,255,255,.75); font-size: .78rem; padding: .45rem 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: .4rem; }
.topbar-item svg { width: 13px; height: 13px; opacity: .7; }
.topbar-esq, .topbar-dir { display: flex; gap: 1.2rem; align-items: center; }
.topbar-dir a { color: var(--dourado); }

/* HEADER */
header { background: var(--verde); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; gap: 1rem; }
.logo { display: flex; align-items: center; gap: .85rem; }
.logo-icone { width: 44px; height: 44px; background: var(--dourado); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icone svg { width: 24px; height: 24px; stroke: white; fill: none; }
.logo-texto strong { display: block; color: white; font-family: 'Playfair Display', serif; font-size: 1.1rem; line-height: 1.2; }
.logo-texto span { color: rgba(255,255,255,.55); font-size: .72rem; letter-spacing: .08em; }
.nav-principal { display: flex; align-items: center; gap: .25rem; }
.nav-principal a { color: rgba(255,255,255,.8); padding: .5rem .9rem; border-radius: 6px; font-size: .88rem; font-weight: 600; letter-spacing: .03em; transition: all .2s; }
.nav-principal a:hover, .nav-principal a.loja { color: white; }
.nav-principal a.loja { background: var(--dourado); color: var(--marrom); }
.header-dir { display: flex; align-items: center; gap: .75rem; }
.btn-carrinho { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: white; padding: .5rem 1rem; border-radius: 8px; cursor: pointer; display: flex; align-items: center; gap: .5rem; font-size: .85rem; font-family: 'Lato', sans-serif; transition: all .2s; position: relative; }
.btn-carrinho svg { width: 18px; height: 18px; stroke: white; fill: none; }
.btn-carrinho:hover { background: rgba(255,255,255,.2); }
.carrinho-badge { background: var(--dourado); color: var(--marrom); font-size: .7rem; font-weight: 900; border-radius: 50%; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-toggle svg { width: 24px; height: 24px; stroke: white; }

/* HERO */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(27,58,45,.95) 45%, rgba(27,58,45,.4) 100%); }
.hero-content { position: relative; z-index: 2; padding: 5rem 1.5rem; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(200,150,62,.2); border: 1px solid rgba(200,150,62,.4); color: var(--dourado2); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1.5rem; }
.hero-badge svg { width: 14px; height: 14px; stroke: var(--dourado2); fill: none; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); color: white; line-height: 1.15; margin-bottom: 1.2rem; }
.hero-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2.2rem; max-width: 520px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.8rem; border-radius: 8px; font-weight: 700; font-size: .9rem; cursor: pointer; border: none; transition: all .2s; letter-spacing: .03em; }
.btn-dourado { background: var(--dourado); color: var(--marrom); }
.btn-dourado:hover { background: var(--dourado2); transform: translateY(-1px); }
.btn-outline-branco { background: transparent; color: white; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-branco:hover { border-color: white; background: rgba(255,255,255,.1); }
.btn-verde { background: var(--verde); color: white; }
.btn-verde:hover { background: var(--verde2); transform: translateY(-1px); }
.btn-sm { padding: .55rem 1.2rem; font-size: .82rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15); }
.hero-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--dourado2); }
.hero-stat span { color: rgba(255,255,255,.6); font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; }

/* SEÇÕES */
.secao { padding: 5rem 0; }
.secao-cinza { background: var(--cinza); }
.sec-titulo { margin-bottom: 3rem; }
.sec-titulo .pre { color: var(--dourado); font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; display: block; margin-bottom: .5rem; }
.sec-titulo h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--verde); line-height: 1.25; }
.sec-titulo p { color: #666; margin-top: .75rem; line-height: 1.7; font-size: .95rem; }
.sec-titulo-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* SEGMENTOS */
.segmentos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.seg-card { background: white; border: 1px solid #E5E0D8; border-radius: 12px; padding: 1.8rem; transition: all .25s; }
.seg-card:hover { border-color: var(--dourado); box-shadow: 0 8px 30px rgba(200,150,62,.12); transform: translateY(-3px); }
.seg-icon { width: 48px; height: 48px; background: var(--verde); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.seg-icon svg { width: 24px; height: 24px; stroke: var(--dourado); fill: none; }
.seg-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--verde); margin-bottom: .5rem; }
.seg-card p { color: #666; font-size: .88rem; line-height: 1.65; }

/* SOBRE */
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.sobre-img { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.15); aspect-ratio: 4/3; }
.sobre-img img { width: 100%; height: 100%; object-fit: cover; }
.sobre-img-badge { position: absolute; bottom: -1rem; right: -1rem; background: var(--dourado); border-radius: 12px; padding: 1rem 1.4rem; text-align: center; box-shadow: 0 8px 24px rgba(200,150,62,.3); }
.sobre-img-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--marrom); }
.sobre-img-badge span { color: var(--marrom); font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.sobre-texto h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.5vw, 2.4rem); color: var(--verde); line-height: 1.25; margin-bottom: 1.2rem; }
.sobre-texto p { color: #555; line-height: 1.75; margin-bottom: 1rem; font-size: .95rem; }
.diferenciais-lista { margin: 1.8rem 0; display: flex; flex-direction: column; gap: 1rem; }
.dif-item { display: flex; gap: .85rem; }
.dif-item svg { width: 20px; height: 20px; stroke: var(--dourado); fill: none; flex-shrink: 0; margin-top: .15rem; }
.dif-item strong { display: block; font-size: .9rem; color: var(--verde); }
.dif-item span { color: #777; font-size: .82rem; line-height: 1.5; }

/* FAIXA DIVISÓRIA */
.faixa-divisoria { background: linear-gradient(135deg, var(--verde) 0%, var(--verde2) 100%); padding: 4rem 0; }
.faixa-divisoria-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.faixa-tag { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.15); color: white; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 999px; margin-bottom: .75rem; }
.faixa-divisoria h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: white; line-height: 1.3; }
.faixa-divisoria h2 span { color: var(--dourado2); }

/* CATEGORIAS LOJA */
.cats-loja { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.cat-loja { border-radius: 10px; overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; }
.cat-loja .bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--verde); transition: transform .3s; }
.cat-loja:hover .bg { transform: scale(1.05); }
.cat-loja::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,58,45,.9) 0%, rgba(27,58,45,.1) 60%); }
.cat-loja-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: .85rem 1rem; }
.cat-loja-info h3 { color: white; font-size: .9rem; font-weight: 700; }
.cat-loja-info .ver { color: var(--dourado2); font-size: .75rem; font-weight: 700; }

/* PRODUTOS */
.produtos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.prod-card { background: white; border: 1px solid #E5E0D8; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: all .25s; }
.prod-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-4px); border-color: var(--dourado); }
.prod-img { display: block; position: relative; aspect-ratio: 4/3; overflow: hidden; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.prod-card:hover .prod-img img { transform: scale(1.04); }
.prod-badge { position: absolute; top: .6rem; left: .6rem; background: var(--dourado); color: var(--marrom); font-size: .7rem; font-weight: 800; padding: .25rem .65rem; border-radius: 6px; }
.prod-badge-novo { background: var(--verde); color: white; }
.prod-entrega { position: absolute; bottom: .5rem; right: .5rem; background: rgba(27,58,45,.85); color: white; font-size: .65rem; padding: .2rem .5rem; border-radius: 4px; backdrop-filter: blur(4px); }
.prod-body { padding: 1rem 1rem .4rem; flex: 1; display: flex; flex-direction: column; gap: .2rem; }
.prod-cat { color: var(--dourado); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.prod-nome { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--verde); font-weight: 700; line-height: 1.3; }
.prod-especie { color: #888; font-size: .78rem; font-style: italic; }
.prod-preco { color: var(--verde); font-size: 1.15rem; font-weight: 800; margin-top: .5rem; }
.prod-preco small { font-weight: 400; font-size: .75rem; color: #888; }
.prod-preco-orig { color: #aaa; font-size: .82rem; text-decoration: line-through; }
.prod-consulta { color: var(--dourado); font-weight: 700; font-size: .9rem; margin-top: .5rem; }
.prod-footer { padding: .75rem 1rem; display: flex; gap: .5rem; border-top: 1px solid #F0EDE8; }
.btn-add-carrinho { flex: 1; background: var(--verde); color: white; border: none; border-radius: 7px; padding: .6rem; font-size: .8rem; font-weight: 700; cursor: pointer; font-family: 'Lato', sans-serif; transition: background .2s; }
.btn-add-carrinho:hover { background: var(--verde2); }
.btn-wpp-prod { width: 36px; height: 36px; background: #25D366; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-wpp-prod svg { width: 18px; height: 18px; fill: white; }

/* FAIXA WPP */
.faixa-wpp { background: var(--marrom); padding: 4rem 0; text-align: center; }
.faixa-wpp h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: white; margin-bottom: .75rem; }
.faixa-wpp h2 em { color: var(--dourado2); font-style: normal; }
.faixa-wpp p { color: rgba(255,255,255,.65); margin-bottom: 2rem; font-size: .95rem; }
.faixa-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-wpp { background: #25D366; color: white; padding: .85rem 1.8rem; border-radius: 8px; font-weight: 700; display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; transition: all .2s; }
.btn-wpp svg { width: 20px; height: 20px; fill: white; }
.btn-wpp:hover { background: #1db956; transform: translateY(-1px); }

/* FOOTER */
footer { background: var(--verde); color: rgba(255,255,255,.7); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-marca .logo-icone { margin-bottom: .75rem; }
.footer-marca p { font-size: .85rem; line-height: 1.65; color: rgba(255,255,255,.55); margin-top: .5rem; max-width: 260px; }
footer h4 { color: var(--dourado2); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
footer ul li a { color: rgba(255,255,255,.6); font-size: .85rem; transition: color .2s; }
footer ul li a:hover { color: var(--dourado2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .78rem; flex-wrap: wrap; gap: .5rem; }

/* WPP FLOAT */
.wpp-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s; }
.wpp-float:hover { transform: scale(1.1); }
.wpp-float svg { width: 30px; height: 30px; fill: white; }

/* CARRINHO PANEL */
.carrinho-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s; }
.carrinho-overlay.aberto { opacity: 1; pointer-events: all; }
.carrinho-panel { position: fixed; right: 0; top: 0; bottom: 0; width: 380px; max-width: 95vw; background: white; z-index: 201; transform: translateX(100%); transition: transform .3s; display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,.15); }
.carrinho-panel.aberto { transform: translateX(0); }
.carrinho-header { padding: 1.2rem 1.5rem; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: space-between; }
.carrinho-header h3 { font-family: 'Playfair Display', serif; color: var(--verde); font-size: 1.1rem; }
.carrinho-fechar { background: none; border: none; cursor: pointer; font-size: 1.4rem; color: #aaa; }
.carrinho-itens { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.carrinho-vazio { text-align: center; padding: 3rem 1rem; color: #aaa; }
.carrinho-vazio svg { width: 48px; height: 48px; stroke: #ddd; fill: none; margin: 0 auto 1rem; }
.item-carrinho { display: flex; gap: .75rem; padding: .75rem; background: #F8F5F0; border-radius: 10px; }
.item-carrinho img { width: 60px; height: 60px; object-fit: cover; border-radius: 7px; flex-shrink: 0; }
.item-info { flex: 1; min-width: 0; }
.item-info strong { display: block; font-size: .87rem; color: var(--verde); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.item-info span { color: #888; font-size: .78rem; }
.item-preco { font-weight: 800; color: var(--verde); font-size: .9rem; }
.item-remover { background: none; border: none; cursor: pointer; color: #ccc; font-size: 1.1rem; }
.item-remover:hover { color: #e44; }
.carrinho-footer { padding: 1.2rem 1.5rem; border-top: 1px solid #eee; }
.carrinho-total { display: flex; justify-content: space-between; margin-bottom: 1rem; }
.carrinho-total span { font-weight: 800; color: var(--verde); }
.carrinho-total strong { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--verde); }
.btn-finalizar { width: 100%; background: #25D366; color: white; border: none; border-radius: 8px; padding: .9rem; font-size: .9rem; font-weight: 700; cursor: pointer; font-family: 'Lato', sans-serif; display: flex; align-items: center; justify-content: center; gap: .5rem; }

/* RESPONSIVO */
@media (max-width: 768px) {
  .nav-principal { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--verde); flex-direction: column; padding: 1rem; gap: .25rem; }
  .nav-principal.aberta { display: flex; }
  .nav-toggle { display: block; }
  .sobre-grid, .faixa-divisoria-inner, .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .segmentos-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .segmentos-grid, .cats-loja { grid-template-columns: 1fr; }
  .produtos-grid { grid-template-columns: 1fr 1fr; }
}

/* Footer extra */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; margin-top: 2rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; flex-wrap: wrap; gap: .5rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; margin-top: 2rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; flex-wrap: wrap; gap: .5rem; }
