/* ====== RESET & VARIÁVEIS ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --laranja: #F3741F;
  --laranja-escuro: #D85E10;
  --laranja-claro: #FF8A3D;
  --preto: #1A1A1A;
  --cinza-escuro: #2B2B2B;
  --cinza: #6B6B6B;
  --cinza-claro: #F4F4F4;
  --branco: #FFFFFF;
  --whats: #25D366;
  --sombra: 0 10px 30px rgba(0,0,0,.08);
  --raio: 16px;
  --container: 1180px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--cinza-escuro);
  line-height: 1.6;
  background: var(--branco);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ====== BOTÕES ====== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 700;
  font-size: .95rem; cursor: pointer; border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  font-family: inherit;
}
.btn--primary { background: var(--laranja); color: #fff; box-shadow: 0 8px 20px rgba(243,116,31,.35); }
.btn--primary:hover { background: var(--laranja-escuro); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: #fff; color: var(--laranja); }
.btn--whats { background: var(--whats); color: #fff; }
.btn--whats:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.4); }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 9px 18px; font-size: .85rem; }

/* ====== HEADER ====== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: padding .3s;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand__logo { height: 44px; width: auto; display: block; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--laranja); color: #fff; font-weight: 900; font-size: 1.5rem;
  display: grid; place-items: center; box-shadow: 0 4px 12px rgba(243,116,31,.4);
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-size: 1.05rem; font-weight: 900; letter-spacing: .5px; color: var(--preto); }
.brand__text em { font-style: normal; font-size: .85rem; color: var(--laranja); font-weight: 600; }

.nav__list { display: flex; align-items: center; gap: 6px; }
.nav__link {
  padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: .92rem;
  color: var(--cinza-escuro); transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--laranja); }
.nav__link--cta { background: var(--laranja); color: #fff; }
.nav__link--cta:hover { background: var(--laranja-escuro); color: #fff; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--preto); border-radius: 3px; transition: .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ====== HERO ====== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--laranja) 0%, var(--laranja-escuro) 100%);
  color: #fff; padding-top: 72px; overflow: hidden;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.12), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(0,0,0,.18), transparent 45%);
}
.hero__content { position: relative; max-width: 720px; padding-top: 40px; padding-bottom: 40px; }
.hero__badge {
  display: inline-block; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35);
  padding: 6px 16px; border-radius: 50px; font-size: .85rem; font-weight: 600; margin-bottom: 22px;
}
.hero__title { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; line-height: 1.05; margin-bottom: 18px; }
.hero__title span { display: inline-block; position: relative; }
.hero__title span::after { content: ""; position: absolute; left: 0; bottom: 6px; width: 100%; height: 10px; background: rgba(255,255,255,.3); z-index: -1; }
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.25rem); max-width: 600px; margin-bottom: 32px; opacity: .95; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 1.8rem; color: rgba(255,255,255,.8); animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,10px); } }

/* ====== STATS ====== */
.stats { background: var(--preto); color: #fff; padding: 48px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat__num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--laranja-claro); }
.stat__plus { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--laranja-claro); }
.stat__label { font-size: .9rem; color: #cfcfcf; margin-top: 4px; }

/* ====== SECTIONS GENÉRICAS ====== */
.section { padding: 90px 0; }
.section--alt { background: var(--cinza-claro); }
.section__head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.eyebrow { display: inline-block; color: var(--laranja); font-weight: 800; font-size: .85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.section__title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; line-height: 1.15; color: var(--preto); }
.section__title span { color: var(--laranja); }
.section__lead { color: var(--cinza); margin-top: 14px; }

/* ====== SOBRE ====== */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__media img { border-radius: var(--raio); box-shadow: var(--sombra); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.about__text p { color: var(--cinza); margin: 18px 0; }
.about__list { margin: 20px 0 28px; }
.about__list li { padding: 6px 0; font-weight: 600; }

.mvv { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 72px; }
.mvv__card { background: #fff; border: 1px solid #eee; border-top: 4px solid var(--laranja); border-radius: var(--raio); padding: 28px; box-shadow: var(--sombra); }
.mvv__card h3 { color: var(--laranja); font-size: 1.3rem; margin-bottom: 10px; }
.mvv__card p { color: var(--cinza); }

/* ====== PRODUTOS ====== */
.products__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.product-card { background: #fff; border-radius: var(--raio); padding: 32px 24px; text-align: center; box-shadow: var(--sombra); transition: transform .25s, box-shadow .25s; border: 1px solid #eee; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.12); }
.product-card__icon { font-size: 2.6rem; margin-bottom: 14px; }
.product-card h3 { color: var(--preto); margin-bottom: 10px; }
.product-card p { color: var(--cinza); font-size: .92rem; }

.brands { text-align: center; margin-top: 56px; }
.brands__title { color: var(--cinza); font-weight: 600; margin-bottom: 24px; }
.brands__list { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }
.brand-logo {
  background: #fff; border: 1px solid #eee; border-radius: 14px; box-shadow: var(--sombra);
  height: 110px; width: 230px; display: grid; place-items: center; padding: 22px;
  transition: transform .25s, box-shadow .25s;
}
.brand-logo:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.12); }
.brand-logo img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; }

/* ====== SERVIÇOS ====== */
.services__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.services__media { order: 2; display: flex; justify-content: center; }
.services__media img { border-radius: var(--raio); box-shadow: var(--sombra); width: 100%; height: auto; max-width: 460px; object-fit: contain; }
.services__text p { color: var(--cinza); margin: 16px 0 28px; }
.services__items { display: flex; flex-direction: column; gap: 18px; }
.service-item { display: flex; gap: 14px; align-items: flex-start; }
.service-item span { font-size: 1.6rem; }
.service-item strong { color: var(--preto); }
.service-item p { color: var(--cinza); font-size: .9rem; margin: 2px 0 0; }

/* ====== UNIDADES ====== */
.units__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.unit-card { background: #fff; border-radius: var(--raio); overflow: hidden; box-shadow: var(--sombra); border: 1px solid #eee; }
.unit-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.unit-card__body { padding: 24px; }
.unit-card__tag { display: inline-block; background: var(--laranja); color: #fff; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; }
.unit-card__body h3 { color: var(--preto); margin-bottom: 8px; }
.unit-card__body p { color: var(--cinza); font-size: .92rem; margin-bottom: 14px; }
.unit-card__address { color: var(--preto) !important; font-weight: 600; font-size: .9rem; margin-bottom: 8px !important; }
.unit-card__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.unit-card__link { color: var(--laranja); font-weight: 700; }
.unit-card__map { line-height: 0; }
.unit-card__map iframe { width: 100%; height: 240px; border: 0; display: block; }

/* ====== INSTAGRAM ====== */
.insta-feed { margin-top: 8px; }
.insta-fallback { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.insta-tile { position: relative; display: block; border-radius: 14px; overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--sombra); }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.insta-tile:hover img { transform: scale(1.08); }
.insta-tile__icon {
  position: absolute; inset: 0; display: grid; place-items: center; font-size: 2rem;
  background: rgba(243,116,31,.0); color: #fff; opacity: 0; transition: opacity .3s, background .3s;
}
.insta-tile:hover .insta-tile__icon { opacity: 1; background: rgba(243,116,31,.55); }
/* Garante que widgets de terceiros (SnapWidget etc.) fiquem responsivos */
.insta-feed iframe { width: 100% !important; border: 0; }

/* ====== GRUPO DE OFERTAS ====== */
.offers {
  background: linear-gradient(135deg, #0e8a5f 0%, #0a6e4b 100%);
  color: #fff; padding: 70px 0; overflow: hidden;
}
.offers__grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: 48px; align-items: center; }
.offers__media { display: flex; justify-content: center; }
.offers__media img { width: 100%; max-width: 340px; border-radius: 20px; box-shadow: 0 18px 50px rgba(0,0,0,.3); }
.offers__eyebrow { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); padding: 6px 16px; border-radius: 50px; font-weight: 700; font-size: .85rem; margin-bottom: 16px; }
.offers__title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.offers__title span { color: #c9ffe7; }
.offers__lead { font-size: 1.05rem; opacity: .95; margin-bottom: 28px; max-width: 520px; }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.btn--offers { background: #fff; color: #0a6e4b; box-shadow: 0 10px 28px rgba(0,0,0,.25); }
.btn--offers:hover { background: #eafff5; transform: translateY(-2px); }

/* ====== CONTATO ====== */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact__info p { color: var(--cinza); margin: 14px 0 24px; }
.contact__list { margin-bottom: 28px; }
.contact__list li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-weight: 600; }
.contact__list a { color: var(--laranja); transition: color .2s; }
.contact__list a:hover { color: var(--laranja-escuro); }
.contact__hours { line-height: 1.5; }
.contact__whats { display: flex; gap: 12px; flex-wrap: wrap; }
.contact__form { background: #fff; padding: 32px; border-radius: var(--raio); box-shadow: var(--sombra); border: 1px solid #eee; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #ddd; border-radius: 10px;
  font-family: inherit; font-size: .95rem; transition: border .2s; background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--laranja); }
.field textarea { resize: vertical; }
.form__note { margin-top: 14px; font-weight: 600; color: var(--whats); text-align: center; }

/* ====== FOOTER ====== */
.footer { background: var(--preto); color: #fff; padding-top: 48px; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; padding-bottom: 32px; }
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__logo { height: 56px; width: auto; }
.footer__brand em { font-style: normal; color: var(--laranja-claro); font-size: .85rem; }
.footer__nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__nav a { color: #ccc; font-weight: 600; font-size: .9rem; transition: color .2s; }
.footer__nav a:hover { color: var(--laranja-claro); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.footer__bottom p { color: #999; font-size: .82rem; text-align: center; }

/* ====== WHATSAPP FLUTUANTE ====== */
.whats-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--whats); color: #fff;
  display: grid; place-items: center; font-size: 1.8rem; box-shadow: 0 8px 24px rgba(37,211,102,.5);
  transition: transform .2s; animation: pulse 2.5s infinite;
}
.whats-float:hover { transform: scale(1.1); }
@keyframes pulse { 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); } }

/* ====== ANIMAÇÃO DE ENTRADA ====== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ====== RESPONSIVO ====== */
@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .about__grid, .services__grid, .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .offers__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .offers__media { order: -1; }
  .offers__lead { margin-left: auto; margin-right: auto; }
  .services__media { order: 0; }
  .services__media img { max-width: 380px; }
  .mvv, .products__grid, .units__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: repeat(2,1fr); }
  .insta-fallback { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  .nav {
    position: fixed; top: 72px; right: 0; width: 78%; max-width: 320px; height: calc(100vh - 72px);
    background: #fff; box-shadow: -8px 0 24px rgba(0,0,0,.12);
    transform: translateX(100%); transition: transform .3s; padding: 24px;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 8px; }
  .nav__link { display: block; padding: 14px 16px; border-radius: 12px; }
  .nav__link--cta { text-align: center; }
  .nav__toggle { display: flex; }
}
@media (max-width: 540px) {
  .section { padding: 64px 0; }
  .products__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .brand-logo { width: 46%; height: 90px; padding: 16px; }
}
