/* =========================================================
   BATISTELLO MÓVEIS - Folha de Estilos
   Cores: Verde (#1E5C1A) e Amarelo (#F5D800) - identidade da loja
   ========================================================= */

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

:root {
  --green:    #1E5C1A;
  --green-dk: #153F11;
  --green-lt: #2D8026;
  --yellow:   #F5D800;
  --yellow-dk:#C9A800;
  --white:    #FFFFFF;
  --offwhite: #F8F6EE;
  --dark:     #0E2B0B;
  --mid:      #3A5A36;
  --text:     #1A2E18;
  --gray:     #5A6A57;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', Arial, sans-serif;
  background: var(--offwhite);
  color: var(--text);
  overflow-x: hidden;
}

/* ===================== NAV ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--green-dk);
  border-bottom: 3px solid var(--yellow);
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 2rem;
}
.nav-logo {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 1.55rem; color: var(--yellow);
  letter-spacing: .06em; line-height: 1;
}
.nav-logo small {
  display: block; font-size: .65rem; color: #a8d8a0;
  letter-spacing: .18em; font-family: 'Barlow', Arial, sans-serif; font-weight: 600;
}
.nav-links { display: flex; gap: 1.4rem; list-style: none; align-items: center; }
.nav-links a {
  color: #d6efd2; text-decoration: none; font-size: .88rem;
  font-weight: 600; letter-spacing: .04em; transition: color .2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-cta { background: var(--yellow) !important; color: var(--green-dk) !important; padding: .4rem 1.1rem; border-radius: 3px; }
.nav-cta:hover { background: #ffe100 !important; }

/* Mobile menu (puramente CSS, sem JS necessário para abrir/fechar) */
.hamburger { display: none; }
.menu-toggle { display: none; }

@media (max-width: 700px) {
  .hamburger {
    display: flex; flex-direction: column; gap: 5px; cursor: pointer;
  }
  .hamburger span { width: 24px; height: 2px; background: #d6efd2; display: block; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--green-dk); padding: 1rem 2rem;
  }
  .menu-toggle:checked ~ .nav-links { display: flex; }
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(14,43,11,.88) 0%, rgba(30,92,26,.75) 55%, rgba(21,63,17,.82) 100%),
    url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: center;
  padding: 7rem 2rem 4rem;
}
.hero-inner { max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--yellow); color: var(--green-dk);
  font-size: .75rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; padding: .42rem 1rem;
  border-radius: 2px; margin-bottom: 1.3rem;
}
.hero h1 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 1; color: var(--white);
  letter-spacing: .03em;
  text-shadow: 0 3px 24px rgba(0,0,0,.5);
  margin-bottom: 1.2rem;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero p {
  font-size: 1.1rem; color: #c8e8c4; line-height: 1.75;
  max-width: 560px; margin-bottom: 2rem; font-weight: 500;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-yellow {
  background: var(--yellow); color: var(--green-dk);
  padding: .85rem 2rem; border-radius: 3px;
  font-size: 1rem; font-weight: 800; text-decoration: none;
  display: inline-block; transition: background .2s, transform .15s;
  letter-spacing: .03em;
}
.btn-yellow:hover { background: #ffe100; transform: translateY(-2px); }
.btn-outline-y {
  border: 2.5px solid var(--yellow); color: var(--yellow);
  padding: .85rem 2rem; border-radius: 3px;
  font-size: 1rem; font-weight: 800; text-decoration: none;
  display: inline-block; transition: background .2s, color .2s, transform .15s;
}
.btn-outline-y:hover { background: var(--yellow); color: var(--green-dk); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Bebas Neue', Arial, sans-serif; font-size: 3rem; color: var(--yellow); line-height: 1; }
.stat-label { font-size: .75rem; color: #9fcc9a; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }

/* ===================== SECTION GENÉRICA ===================== */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  font-size: .72rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--green-lt);
  margin-bottom: .5rem;
}
.section-title {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1; color: var(--dark);
  letter-spacing: .04em; margin-bottom: .9rem;
}
.section-sub { font-size: 1.02rem; color: var(--gray); line-height: 1.7; max-width: 600px; }

/* ===================== DIFERENCIAIS ===================== */
.diff-bg { background: var(--green-dk); }
.diff-bg .section-title { color: var(--yellow); }
.diff-bg .section-tag { color: #8fc98a; }
.diff-bg .section-sub { color: #9ac896; }

.diff-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.diff-card {
  background: rgba(255,255,255,.05);
  border: 2px solid rgba(245,216,0,.25);
  border-radius: 6px; padding: 2.2rem 1.8rem;
  transition: border-color .25s, transform .2s;
  position: relative; overflow: hidden;
}
.diff-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--yellow);
}
.diff-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.diff-card .icon { font-size: 2.6rem; margin-bottom: 1rem; }
.diff-card h3 { color: var(--yellow); font-size: 1.25rem; font-weight: 800; margin-bottom: .6rem; letter-spacing: .02em; }
.diff-card p { color: #a8d8a0; font-size: .93rem; line-height: 1.65; }
.diff-card .tag-badge {
  display: inline-block; background: var(--yellow); color: var(--green-dk);
  font-size: .7rem; font-weight: 800; padding: .25rem .7rem;
  border-radius: 2px; margin-top: 1rem; letter-spacing: .1em; text-transform: uppercase;
}

/* ===================== STRIP AMARELO ===================== */
.yellow-strip { background: var(--yellow); padding: 2.5rem 2rem; }
.ys-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: center; justify-content: space-between;
}
.ys-inner h2 { font-family: 'Bebas Neue', Arial, sans-serif; font-size: 2rem; color: var(--green-dk); letter-spacing: .04em; }
.ys-inner p { color: var(--green); font-size: 1rem; font-weight: 600; }
.ys-btn {
  background: var(--green-dk); color: var(--yellow);
  padding: .9rem 2rem; border-radius: 3px;
  font-size: 1rem; font-weight: 800; text-decoration: none;
  white-space: nowrap; transition: background .2s;
}
.ys-btn:hover { background: var(--green); }

/* ===================== COMPRA DE MÓVEIS ===================== */
.buy-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-top: 3rem;
}
.buy-image { border-radius: 6px; overflow: hidden; border: 4px solid var(--yellow); }
.buy-image img { width: 100%; height: 360px; object-fit: cover; display: block; }
.buy-list { list-style: none; margin: 1.4rem 0 2rem; }
.buy-list li {
  padding: .65rem 0; border-bottom: 1px solid rgba(30,92,26,.12);
  display: flex; gap: .8rem; align-items: flex-start;
  font-size: .95rem; color: var(--gray); line-height: 1.5;
}
.buy-list li::before { content: '✓'; color: var(--green-lt); font-weight: 800; flex-shrink: 0; }

/* ===================== COMO FUNCIONA ===================== */
.steps-bg { background: var(--green); }
.steps-bg .section-title { color: var(--yellow); }
.steps-bg .section-tag { color: #a8e0a0; }
.steps-bg .section-sub { color: #b0d8ac; }
.steps { display: flex; flex-wrap: wrap; gap: 0; margin-top: 3rem; position: relative; }
.step { flex: 1; min-width: 190px; padding: 1.8rem 1.2rem; text-align: center; position: relative; }
.step::after {
  content: '→'; position: absolute; right: -6px; top: 2rem;
  font-size: 1.4rem; color: var(--yellow); opacity: .7;
}
.step:last-child::after { display: none; }
.step-num {
  width: 52px; height: 52px;
  background: var(--yellow); color: var(--green-dk);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', Arial, sans-serif; font-size: 1.6rem;
  margin: 0 auto 1rem;
}
.step h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.step p { color: #a0d09c; font-size: .87rem; line-height: 1.6; }

/* ===================== CHAPECOENSE ===================== */
.chape-section { background: var(--dark); position: relative; overflow: hidden; }
.chape-section .section-title { color: var(--yellow); }
.chape-section .section-tag { color: #7ec678; }
.chape-section .section-sub { color: #7aa876; }

.chape-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-top: 3rem;
}
.chape-cards { display: flex; flex-direction: column; gap: 1rem; }
.chape-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(245,216,0,.2);
  border-radius: 6px; padding: 1.4rem 1.6rem;
}
.chape-card h3 { color: var(--yellow); font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.chape-card p { color: #8ac486; font-size: .88rem; line-height: 1.6; }

.esquina-box {
  background: rgba(245,216,0,.07);
  border: 2px solid var(--yellow);
  border-radius: 8px; padding: 2.2rem;
}
.esquina-box .emoji { font-size: 3.2rem; margin-bottom: 1rem; display: block; }
.esquina-fotos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  margin-bottom: 1.2rem;
}
.esquina-fotos img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid var(--yellow);
  display: block;
}

.esquina-fotos img {
  cursor: pointer;
  transition: transform .2s;
}
.esquina-fotos img:hover {
  transform: scale(1.04);
}

.lightbox-toggle {
  display: none;
}

.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(14, 43, 11, .92);
  z-index: 999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 2rem;
}

.lightbox-toggle:checked + .lightbox-overlay {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  border: 3px solid var(--yellow);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  cursor: zoom-out;
}

@media (max-width: 480px) {
  .esquina-fotos { grid-template-columns: 1fr; }
  .esquina-fotos img { height: 160px; }
}
.esquina-box h3 { font-family: 'Bebas Neue', Arial, sans-serif; font-size: 2rem; color: var(--yellow); letter-spacing: .04em; margin-bottom: .8rem; }
.esquina-box p { color: #a0cc9c; font-size: .95rem; line-height: 1.75; }
.chape-badge {
  display: inline-block; background: var(--yellow); color: var(--green-dk);
  font-size: .7rem; font-weight: 800; padding: .3rem .8rem;
  border-radius: 2px; margin-bottom: 1rem; letter-spacing: .1em; text-transform: uppercase;
}

/* ===================== DEPOIMENTOS ===================== */
.reviews-bg { background: var(--offwhite); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.review-card {
  background: #fff; border-radius: 6px;
  padding: 1.8rem; box-shadow: 0 2px 14px rgba(0,0,0,.07);
  border-left: 4px solid var(--yellow);
}
.stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: .8rem; }
.review-text { font-size: .92rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.2rem; }
.review-author { font-weight: 700; color: var(--dark); font-size: .88rem; }

/* ===================== CONTATO ===================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-top: 3rem; align-items: start;
}
.info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; }
.info-icon {
  width: 44px; height: 44px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; color: #fff;
}
.info-label { font-size: .73rem; text-transform: uppercase; letter-spacing: .12em; color: var(--green-lt); font-weight: 800; margin-bottom: .15rem; }
.info-val { font-size: .96rem; color: var(--text); line-height: 1.55; }
.map-frame { border-radius: 6px; overflow: hidden; border: 3px solid var(--green); }
.map-frame iframe { width: 100%; height: 360px; border: none; display: block; }
.whatsapp-btn {
  display: flex; align-items: center; gap: .7rem;
  background: #25D366; color: #fff;
  padding: 1rem 1.8rem; border-radius: 6px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  margin-top: 1.5rem; width: fit-content;
  transition: background .2s, transform .15s;
}
.whatsapp-btn:hover { background: #1da851; transform: translateY(-2px); }
.whatsapp-btn svg { width: 22px; height: 22px; }

/* ===================== FOOTER ===================== */
footer { background: var(--green-dk); padding: 3rem 2rem; text-align: center; border-top: 4px solid var(--yellow); }
.footer-logo { font-family: 'Bebas Neue', Arial, sans-serif; font-size: 2.2rem; color: var(--yellow); letter-spacing: .06em; }
.footer-logo small { display: block; font-size: .75rem; font-family: 'Barlow', Arial, sans-serif; color: #7ac476; letter-spacing: .18em; font-weight: 600; }
.footer-sub { color: #5a8c56; font-size: .88rem; margin: .5rem 0 1.5rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-links a { color: #7ac476; text-decoration: none; font-size: .88rem; font-weight: 600; }
.footer-links a:hover { color: var(--yellow); }
.footer-copy { color: #3a5a36; font-size: .8rem; }

/* ===================== BOTÃO FLUTUANTE WHATSAPP ===================== */
.float-wa {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 200;
  background: #25D366; color: #fff; width: 58px; height: 58px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  text-decoration: none; transition: transform .2s;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 30px; height: 30px; }

/* ===================== RESPONSIVO ===================== */
@media (max-width: 768px) {
  .buy-grid { grid-template-columns: 1fr; gap: 2rem; }
  .chape-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
