:root {
  --primary: #f57c00;
  --primary-dark: #e06900;
  --primary-light: #ffe1b3;
  --neutral: #f9f9f9;
  --footer: #222;
  --text: #222;
  --white: #fff;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--neutral);
  color: var(--text);
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  width: 100%;
}

.flex {
  display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.center { align-items: center; justify-content: center; }
.space-between { justify-content: space-between; }
.align-center { align-items: center; }

.site-header {
position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* garante que fique acima de tudo */
  background: var(--primary); /* mantém a cor sólida para não ficar transparente */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);

}

.logo-text {
  font-size: 2.1rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px #0002;
  padding: 0 0 0 3px;
}

.main-nav {
  position: relative;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--white);
  cursor: pointer;
  z-index: 151;
}

/* X do menu mobile */
.menu-toggle .icon-close { display: none; }
.menu-toggle.open .icon-menu { display: none; }
.menu-toggle.open .icon-close { display: inline; }

/* MENU DESKTOP COM HOVER ANIMADO */
.menu-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li a {
  color: var(--white);
  font-weight: 600;
  font-size: 1.02em;
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 12px 0;
  display: block;
  position: relative;
  transition: color 0.18s;
  overflow: hidden;
}

.menu-list li a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.93s cubic-bezier(.51,.15,.3,.89);
  opacity: 0.7;
}

.menu-list li a:hover,
.menu-list li a:focus {
  color: #ffe1b3;
  background: rgba(121, 248, 2, 0.151);
  border-radius: 6px;
}

.menu-list li a:hover::after,
.menu-list li a:focus::after {
  transform: scaleX(1);
}


/* MENU MOBILE - MENU SUSPENSO E PROPORCIONAL */
@media (max-width: 768px) {
  .site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* garante logo à esquerda e menu à direita */
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  }
  .logo-text {
   font-size: 2.1rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px #0002;
  padding: 0 0 0 12px;   /* Um leve recuo só para não grudar na borda */
  margin: 0;
  border: none;
  }
  .main-nav {
    flex: none;
    position: static;
    width: auto;
  }
  .menu-toggle {
    display: block;
    position: static;
    margin-left: 10px;
    font-size: 2.3rem;
    z-index: 151;
    background: none;
  }
  .menu-list {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--primary);
    position: absolute;
    top: 55px;
    right: 18px; /* encosta na direita */
    width: 240px;
    min-width: 180px;
    max-width: 92vw;
    height: auto;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 24px #0002;
    z-index: 140;
    padding-top: 0;
    padding-bottom: 24px;
    align-items: stretch;
  }
  .menu-list.active { display: flex; }
  .menu-list li {
    border-bottom: 1px solid #fff2;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .menu-list li:last-child { border-bottom: none; }
  .menu-list li a {
    width: 100%;
    display: block;
    text-align: left;
    font-size: 1.17em;
    position: relative;
    transition: color 0.18s;
    overflow: hidden;
  }
  .menu-list li a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 4px;
    width: 100%;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.23s cubic-bezier(.51,.15,.3,.89);
    opacity: 0.7;
  }
  .menu-list li a:hover,
  .menu-list li a:focus {
    color: #ffe1b3;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 6px;
  }
  .menu-list li a:hover::after,
  .menu-list li a:focus::after {
    transform: scaleX(1);
  }
}


/* HERO/BANNER */
.hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0 48px 0;
  text-align: center;
  width: 100%;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.55s;
  opacity: 1;
}

.hero-bg-img.hide {
  opacity: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(245,124,0,0.65) 54%, rgba(251,233,198,0.46) 100%), rgba(18,10,2,0.22);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero h1 {
  font-size: 2.7em;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px #000b, 0 1px 1px #fff5;
}

.hero-desc {
  font-size: 1.16em;
  margin-bottom: 26px;
  color: #fff9;
  text-shadow: 0 1px 6px #000b;
}

.btn-hero {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  font-weight: bold;
  font-size: 1.13em;
  padding: 16px 38px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 2px 12px #0001;
  transition: background .25s, color .18s, box-shadow .18s;
}
.btn-hero:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 6px 18px #0002;
}

/* Setas do carrossel */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,0.22);
  color: #fff;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: background .2s, opacity .18s;
}
.hero-arrow:hover { background: rgba(245,124,0,0.92); opacity: 1;}
.hero-arrow.left { left: 24px; }
.hero-arrow.right { right: 24px; }

@media (max-width: 768px) {
  .hero { padding: 44px 0 32px 0; }
  .hero h1 { font-size: 1.39em; }
  .hero-arrow {
    font-size: 1.4rem;
    width: 38px; height: 38px;
    left: 6px; right: 6px;
  }
  .hero-arrow.left { left: 6px; }
  .hero-arrow.right { right: 6px; }
}


/* DIFERENCIAIS */
.diferenciais {
  background: #fff;
  padding: 50px 0 35px 0;
}
.diferenciais .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.diferenciais .diff-item {
  flex: 1 1 0;
  padding: 0 24px;
  text-align: center;
  min-width: 0;
}

.diff-icon {
  margin: 0 auto 10px auto;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 2px 8px #0001;
  position: relative;
  z-index: 2;
  transition: background .18s, color .18s;
}

.diff-icon i,
.diff-icon svg {
  color: var(--primary);
  font-size: 2.1rem;
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto;
  z-index: 2;
}

/* Título dos diferenciais */
.diferenciais h3 {
  margin: 15px 0 7px 0;
  font-weight: bold;
}

/* Responsivo para mobile/tablet */
@media (max-width: 900px) {
  .diferenciais .container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .diferenciais .diff-item {
    margin-bottom: 22px;
    padding: 0 8px;
  }
  .diff-icon {
    width: 50px;
    height: 50px;
    font-size: 1.45rem;
  }
  .diff-icon i,
  .diff-icon svg {
    font-size: 1.45rem;
    width: 22px;
    height: 22px;
  }
}


/* SOBRE */
.sobre {
  background: var(--neutral);
  padding: 62px 0 62px 0;
}
.sobre-wrap {
  gap: 52px;
  flex-wrap: wrap;
}
.sobre-img img {
  border-radius: 16px;
  box-shadow: 0 4px 16px #0001;
  width: 100%;
  max-width: 400px;
  display: block;
}
.sobre-text {
  max-width: 550px;
}
.sobre-text ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.sobre-text ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3e3e3e;
  margin-bottom: 5px;
  font-size: 1.07em;
}
.btn-default {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  font-size: 1.09em;
  margin-top: 16px;
  text-decoration: none;
  transition: background .2s, color .18s;
}
.btn-default:hover {
  background: var(--primary-dark);
}

/* PRODUTOS */
.produtos {
  background: #fff;
  padding: 62px 0;
}
.produtos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
  width: 100%;
}
.produto-card {
  flex: 1 1 220px;
  background: var(--neutral);
  border-radius: 14px;
  box-shadow: 0 2px 12px #0001;
  text-align: center;
  padding: 18px 12px 24px 12px;
  transition: transform .13s, box-shadow .13s;
  min-width: 0;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;  /* NOVO: centraliza tudo horizontalmente */
  justify-content: flex-start;
}
.produto-card:hover {
  transform: translateY(-3px) scale(1.035);
  box-shadow: 0 8px 22px #0002;
}
.produto-card img {
  width: 100%;
  max-width: 170px;
  height: auto;
  margin-bottom: 14px;
  border-radius: 9px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.produto-card h3 { margin-bottom: 8px; }
.produto-card p { color: #3a3a3a; font-size: 1em; }

/* DEPOIMENTOS */
.depoimentos {
  background: #fffaf2;
  padding: 64px 0;
}
.depoimentos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  width: 100%;
}
.depo-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px #0001;
  padding: 26px 22px 18px 22px;
  min-width: 0;
  max-width: 100vw;
  text-align: center;
  position: relative;
}
.depo-icon {
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  margin: 0 auto 8px auto;
}
.depo-nome {
  display: block;
  margin-top: 9px;
  color: var(--primary);
  font-weight: bold;
}

/* GALERIA */
.galeria {
  background: var(--neutral);
  padding: 60px 0 44px 0;
}
.galeria-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  width: 100%;
}
.galeria-grid img {
  border-radius: 13px;
  box-shadow: 0 2px 14px #0001;
  width: 250px;
  height: 180px;
  object-fit: cover;
  transition: transform .13s, box-shadow .13s;
  max-width: 100%;
  display: block;
}
.galeria-grid img:hover {
  transform: scale(1.045);
  box-shadow: 0 8px 24px #0002;
}

/* VÍDEOS */
.videos {
  background: #fff;
  padding: 58px 0;
}
.videos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  width: 100%;
}
.video-card {
  background: #f7f7f7;
  border-radius: 14px;
  box-shadow: 0 2px 10px #0001;
  padding: 9px 10px 13px 10px;
  text-align: center;
  min-width: 0;
  max-width: 100vw;
}
.video-card iframe {
  border-radius: 7px;
  width: 100%;
  height: 200px;
  display: block;
  max-width: 100%;
}
.video-card span {
  display: block;
  margin-top: 6px;
  color: #222;
  font-size: 1em;
}

/* FAQ */
.faq {
  background: var(--primary-light);
  padding: 54px 0 38px 0;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  width: 100%;
}
.faq-item {
  flex: 1 1 290px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px #0001;
  padding: 28px 20px;
  min-width: 0;
  max-width: 100vw;
}
.faq-item h3 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.17em;
}
.faq-item p { color: #383838; font-size: 1.03em; }

/* CONTATO */
.contato {
  background: #fff;
  padding: 62px 0;
}
.contato-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 52px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.contato-info {
  flex: 1 1 260px;
}
.contato-info ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 20px 0;
}
.contato-info ul li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #3e3e3e;
  margin-bottom: 8px;
  font-size: 1.07em;
}
.contato-redes a {
  display: inline-block;
  margin-right: 12px;
  color: var(--primary);
  font-size: 1.8em;
  transition: color 0.18s;
}
.contato-redes a:hover { color: var(--primary-dark); }
.contato-form {
  flex: 2 1 330px;
  max-width: 420px;
  width: 100%;
}
.contato-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.contato-form input,
.contato-form textarea {
  padding: 12px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1em;
  background: #fafafa;
  width: 100%;
}
.contato-form textarea { min-height: 85px; }
.contato-form button {
  background: var(--primary);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  padding: 12px 0;
  font-size: 1.1em;
  transition: background .19s;
  cursor: pointer;
  width: 100%;
}
.contato-form button:hover { background: var(--primary-dark); }

/* MAPA */
.mapa {
  padding: 0;
  background: #e9e8e8;
}
.mapa iframe {
  border-radius: 7px;
  margin-top: 12px;
  width: 100%;
  border: 1px solid #ccc;
  display: block;
}

/* RODAPÉ */
.site-footer {
  background: var(--footer);
  color: #fff;
  padding: 30px 0 20px 0;
  font-size: 1.06em;
  width: 100%;
}
.footer-links a {
  color: #ffb85e;
  text-decoration: none;
  margin: 0 7px;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 24px;
  background: #25d366;
  color: #fff;
  padding: 13px 15px 10px 15px;
  border-radius: 50%;
  font-size: 2.2rem;
  box-shadow: 0 3px 18px #25d36688;
  z-index: 999;
  transition: background .18s;
}
.whatsapp-float:hover {
  background: #128c7e;
  color: #fff;
}

/* RESPONSIVIDADE GERAL */
img, iframe, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Diferenciais coluna no mobile */
@media (max-width: 650px) {
  .diferenciais .container {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }
  .diferenciais .diff-item {
    width: 100%;
    margin-bottom: 26px;
    padding: 0 6px;
  }
  .diferenciais .diff-item:last-child {
    margin-bottom: 0;
  }
}

/* Outros grids em coluna no mobile */
@media (max-width: 1080px) {
  .sobre-wrap, .produtos-grid, .depoimentos-grid, .galeria-grid, .videos-grid, .faq-list, .contato-wrap {
    flex-direction: column;
    gap: 28px;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 650px) {
  .container { padding: 0 7px; }
  .hero h1 { font-size: 1.35em; }
  .hero-desc { font-size: 1em; }
  .produtos-grid, .depoimentos-grid, .galeria-grid, .videos-grid, .faq-list, .contato-wrap { gap: 14px; width: 100%; }
  .footer-links { display: block; }
  section, .site-header, .site-footer, .container {
    min-width: 0 !important;
    max-width: 100vw !important;
    width: 100%;
  }
  .produto-card, .depo-card, .faq-item, .video-card {
    min-width: 0;
    max-width: 100vw;
    width: 100%;
  }
}
