@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ── VARIÁVEIS ────────────────────────────────── */
:root {
  --green:      #1db954;
  --green-dark: #158a3e;
  --dark:       #1a1a1a;
  --darker:     #0f0f0f;
  --card-bg:    #f4f4f4;
  --bg-prod:    #eaf4ef;
  --white:      #ffffff;
  --text:       #333333;
  --text-muted: #666666;
}

/* ── RESET ────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 900
}

/* ══════════════════════════════════════════════
   HEADER  (compartilhado)
══════════════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

header .logo {
  height: 46px;
  cursor: pointer;
  transition: transform 0.3s;
}
header .logo:hover { transform: scale(1.05); }

header nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

header nav ul li {
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--dark);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}

header nav ul li::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width 0.3s;
}

header nav ul li:hover        { color: var(--green); }
header nav ul li:hover::after { width: 100%; }
header nav ul li.active        { color: var(--green); }
header nav ul li.active::after { width: 100%; }

header .whats-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
}
header .whats-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
header .whats-btn img { width: 44px; }

#menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
#menu-btn span {
  display: block;
  width: 26px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}
.desk{
  display: block;
}
.mob{
  display: none;
}

/* ══════════════════════════════════════════════
   FOOTER  (compartilhado)
══════════════════════════════════════════════ */
footer {
  width: 100%;
  background: #393939;
  color: var(--white);
}

footer .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 52px 8% 40px;
  gap: 40px;
}

footer .top .contact h4 {
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--white);
}

footer .top .contact p {
  font-size: 13px;
  line-height: 1.5;
  color: #bbb;
}

footer .top .contact p strong { color: var(--white); }

footer .top .map-col img {
  width: 220px;
  border-radius: 8px;
  display: block;
}

footer .top .whats-col { display: flex; align-items: center; }
footer .top .whats-col a { display: block; transition: transform 0.3s; }
footer .top .whats-col a:hover { transform: scale(1.1); }
footer .top .whats-col img { width: 64px; }

footer .bottom {
  border-top: 1px solid #2a2a2a;
  text-align: center;
  padding: 16px 8%;
}

footer .bottom p {
  font-size: 11px;
  color: #666;
  letter-spacing: 0.04em;
}

/* ── Footer simples (produtos.html) ── */
footer.simple {
  text-align: center;
  padding: 16px 8%;
  background-color: #e7ebea;
}
footer.simple p {
  font-size: 11px;
  color: #393939;
  letter-spacing: 0.04em;
}

/* ── WhatsApp flutuante (compartilhado) ── */
.whats-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 300;
  width: 58px; height: 58px;
  border-radius: 50%;

  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whats-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.whats-float img { width: 100%; display: block; }


/* ══════════════════════════════════════════════
   INDEX — S1  BANNER
══════════════════════════════════════════════ */
#s1 {
  width: 100%;
  position: relative;
  padding-top: 68px;
  margin-bottom: 16px;
}

#s1 .banner-wrap {
  position: relative;
  width: 100%;
}

#s1 .banner-wrap img.banner {
  width: 100%;
  display: block;
}

#s1 .banner-cta {
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
}

#s1 .banner-cta a {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
#s1 .banner-cta a:hover {
  transform: scale(1.05);
  background: var(--green-dark);
  box-shadow: 0 4px 20px rgba(29,185,84,0.4);
}
#s1 .banner-cta a:active { transform: scale(0.97); }

/* ══════════════════════════════════════════════
   INDEX — S2  PRODUTOS
══════════════════════════════════════════════ */
#s2 {
  padding: 0;
  text-align: center;
  background: var(--white);
}

#s2 h1 {
  font-size: 30px;
  margin-bottom: 32px;
  color: var(--dark);
}

#s2 .products-wrap {
  position: relative;
  width: 100%;
}

#s2 .products-wrap img.products {
  width: 100%;
  display: block;
}

/* CTA abaixo da imagem, centralizado */
#s2 .products-cta {
  padding: 28px 0 36px;
  position: absolute;
  margin-top: -26vh;
  width: 40%;
  margin-left: 30%;
}

#s2 .products-cta a {
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 40px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
#s2 .products-cta a:hover {
  background: var(--dark);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
#s2 .products-cta a:active { transform: scale(0.97); }

/* ══════════════════════════════════════════════
   INDEX — S3  POR QUE ESCOLHER
══════════════════════════════════════════════ */
#s3 {
  padding: 64px 8%;
  background: #e7ebea;
  text-align: center;
}

#s3 h1 {
  font-size: 26px;
  margin-bottom: 40px;
  color: var(--dark);
  text-transform: none;
  letter-spacing: 0;
}

#s3 h1 span { font-style: italic; }

#s3 .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

#s3 .icard {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 0 20px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;

}
#s3 .icard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
#s3 .icard .box-top {
  width: calc(100% + 40px);
  margin-left: -20px;
  display: block;
  border-radius: 10px 10px 0 0;
  margin-bottom: 20px;
}
#s3 .icard img.icon { width: 72px; margin-bottom: 16px; }
#s3 .icard h4     { font-size: 14px; margin-bottom: 10px; color: var(--dark); letter-spacing: 0.02em; }
#s3 .icard p      { font-size: 12px; line-height: 1.7; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   INDEX — S4  QUEM SOMOS + DIFERENCIAL
══════════════════════════════════════════════ */
#s4 {
  display: flex;
  padding: 0 8% 64px;
  align-items: stretch;
  background-color: #e7ebea;
}

#s4 .qs {
  flex: 1;
  padding: 40px 36px;
  background: var(--card-bg);
  border-radius: 12px;
}
#s4 .qs h2          { font-size: 26px; margin-bottom: 20px; color: var(--dark);}
#s4 .qs p           { font-size: 13px; line-height: 1.8; color: #555; margin-bottom: 14px; }
#s4 .qs .missao-label {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 6px;
  margin-top: 4px;
}

#s4 .dif {
  flex: 1;
  background: #393939;
  color: var(--white);
  border-radius: 12px;
  padding: 40px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#s4 .dif h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
}
#s4 .dif .big {
  font-size: 64px;
  font-weight: 700;
  color: #b0d8bf;
  line-height: 1;
  margin-bottom: 8px;
}
#s4 .dif .label-sm {
  font-size: 24px;
  color: #fff;
  margin-bottom: 32px;
}
#s4 .dif .keyword {
  font-size: 56px;
  font-weight: 700;
  color: #b0d8bf;
  line-height: 1;
  margin-bottom: 8px;
  text-transform: none;
}

/* ══════════════════════════════════════════════
   INDEX — S5  FAIXA CTA
══════════════════════════════════════════════ */
#s5 {
  width: 100%;
  padding: 0;
}

#s5 .faixa {
  background: #b0d8bf;
  padding: 24px 40px;
  text-align: center;
}

#s5 .faixa p {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #393939;
}

/* ══════════════════════════════════════════════
   PRODUTOS — GERAL
══════════════════════════════════════════════ */
body.page-produtos {
  background: var(--bg-prod);
  background-image: url(img/produtos-background.png);
  background-size: 100% 100%;
}

/* Banner */
#banner {
  width: 100%;
  padding-top: 68px;
}
#banner img {
  width: 100%;
  display: block;
  max-height: 360px;
  object-fit: cover;
}

/* Lista de produtos */
#prod-lista {
  padding: 64px 8% 72px;
}

.produto-item {
  display: flex;
  align-items: flex-start;
  gap: 10%;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid #d0e8db;
}
.produto-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.produto-item .prod-img {
  width: 180px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
  transition: transform 0.4s;
}
.produto-item .prod-img:hover { transform: scale(1.04) translateY(-4px); }

.produto-info { flex: 1; padding-top: 8px; }

.produto-info h2 {
  font-size: 28px;
  text-transform: none;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  font-style: italic;
}
.produto-info h2.green { color: #2db84b; }
.produto-info h2.pink  { color: #e0398a; }
.produto-info h2.blue  { color: #3a8ee8; }

.produto-info .em-breve {
  font-size: 22px;
  font-weight: 700;
  color: #3a8ee8;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.01em;
}

.produto-info p {
  font-size: 13.5px;
  line-height: 1.75;
  color: #2c2f35;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Linha Tirreno */
#outros { padding: 0 8% 72px; }

.outros-wrap {
  display: flex;
  align-items: center;
  gap: 48px;
}
.outros-wrap img {
  width: 280px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
  transition: transform 0.4s;
}
.outros-wrap img:hover { transform: scale(1.03); }

.outros-wrap h2 {
  font-size: 28px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
  color: var(--dark);
  line-height: 1.3;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  #menu-btn { display: flex; }

  header nav {
    display: none;
    position: fixed;
    top: 68px; right: 0;
    width: 65%;
    background: var(--white);
    padding: 24px 32px;
    border-bottom-left-radius: 16px;
    box-shadow: -4px 8px 24px rgba(0,0,0,0.15);
  }
  header nav.open { display: block; }
  header nav ul   { flex-direction: column; gap: 24px; }

  #s3 .grid  { grid-template-columns: repeat(2, 1fr); }
  #s4        { flex-direction: column; }

  footer .top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .produto-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  .produto-item .prod-img { width: 160px; }

  .outros-wrap { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  #s3 .grid           { grid-template-columns: 1fr 1fr; }
  #s1 .banner-cta a   { font-size: 11px; padding: 10px 20px; }
  #s3 .grid{
    display: block;
  }
  #s3 .icard{
    margin-bottom: 36px;
    border-radius: 36px;
  }
  #s4{
      padding: 0 5% 64px;
  }
  #s4 .dif .big{
    font-size: 2.5em;
  }
  #s4 .dif .keyword{
    font-size: 2em;
  }
  #s2 .products-cta{
    width: 80%;
    margin-left: 10%;
  }
  #s2 .products-cta{
    margin-top: -16vh;
  }
}
