
:root{
  --background: 0 0% 100%;
  --foreground: 120 25% 15%;
  --card: 0 0% 100%;
  --card-foreground: 120 25% 15%;
  --border: 90 20% 85%;
  --muted: 90 20% 94%;
  --muted-foreground: 90 10% 40%;
  --primary: 90 55% 32%;
  --primary-foreground: 0 0% 100%;
  --secondary: 90 40% 92%;
  --accent: 350 75% 45%;
  --canaan-green-dark: 90 55% 28%;
  --canaan-green: 90 55% 32%;
  --canaan-green-light: 90 45% 45%;
  --canaan-cream: 45 30% 96%;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(0,0,0,.18);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body.sc-body{ margin:0; background: hsl(var(--background)); color: hsl(var(--foreground)); font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; padding-top: 76px; }
@media (min-width: 768px){ body.sc-body{ padding-top: 92px; } }

h1,h2,h3,h4,h5,h6{ font-family: Poppins, Inter, system-ui, sans-serif; margin:0; }
a{ color: inherit; }

.sc-container{ width: min(1120px, 92%); margin-inline: auto; }

/* Header */
.sc-header{ position: fixed; top:0; left:0; right:0; z-index:50; background: hsla(var(--background), .95); backdrop-filter: blur(10px); border-bottom: 1px solid hsla(var(--border), 1); }
.sc-header__inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; height: 76px; }
@media (min-width: 768px){ .sc-header__inner{ height: 92px; } }
.sc-logo{ text-decoration:none; display:flex; align-items:center; gap:10px; }
.sc-logo__text{ display:flex; flex-direction:column; }
.sc-logo__line{ font-weight: 800; line-height: 1; font-size: 26px; }
@media (min-width: 768px){ .sc-logo__line{ font-size: 34px; } }
.sc-logo__line--tight{ margin-top: -4px; font-size: 22px; }
@media (min-width: 768px){ .sc-logo__line--tight{ font-size: 28px; } }
.sc-accent{ color: hsl(var(--accent)); }
.sc-primary{ color: hsl(var(--primary)); }

.sc-nav{ display:none; }
@media (min-width: 768px){ .sc-nav{ display:block; } }
.sc-menu{ list-style:none; display:flex; gap:28px; padding:0; margin:0; }
.sc-menu a{ text-decoration:none; color: hsla(var(--foreground), .82); font-weight:600; transition: color .15s ease; }
.sc-menu a:hover{ color: hsl(var(--primary)); }

/* Buttons */
.sc-btn{ display:inline-flex; align-items:center; justify-content:center; gap:10px; text-decoration:none; border-radius: 14px; border: 1px solid transparent; font-weight: 700; transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease; user-select:none; }
.sc-btn:active{ transform: scale(.99); }
.sc-btn--lg{ height: 44px; padding: 0 18px; font-size: 15px; }
.sc-btn--xl{ height: 56px; padding: 0 26px; font-size: 16px; border-radius: 16px; }

.sc-btn--primary{ background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); box-shadow: 0 10px 26px rgba(0,0,0,.10); }
.sc-btn--primary:hover{ background: hsla(var(--primary), .9); box-shadow: 0 14px 34px rgba(0,0,0,.14); transform: translateY(-1px); }

.sc-btn--cream{ background: hsl(var(--canaan-cream)); color: hsl(var(--primary)); box-shadow: 0 14px 34px rgba(0,0,0,.22); }
.sc-btn--cream:hover{ background: hsla(var(--canaan-cream), .92); transform: translateY(-1px); }

.sc-btn--cream-outline{ background: transparent; color: hsl(var(--canaan-cream)); border: 2px solid hsl(var(--canaan-cream)); }
.sc-btn--cream-outline:hover{ background: hsla(var(--canaan-cream), .10); }

.sc-ico{ font-size: 18px; line-height:1; }

/* Hero */
.sc-hero{
  position: relative;
  min-height: 65vh;          /* controla a altura */
  display:flex;
  align-items:flex-start;   /* NÃO centraliza verticalmente */
  overflow:hidden;
  padding-top: 120px;       /* aproxima do header */
  padding-bottom: 60px;
}
.sc-hero__bg{ position:absolute; inset:0; z-index:0; }
.sc-hero__img{ width:100%; height:100%; object-fit:cover; }
.sc-hero__overlay{ position:absolute; inset:0; background: linear-gradient(90deg, hsla(var(--primary), .90) 0%, hsla(var(--primary), .72) 55%, rgba(0,0,0,0) 100%); }
.sc-hero__content{ position:relative; z-index:1; padding: 32px 0 54px; }

.sc-pill{ display:inline-flex; align-items:center; gap:10px; background: rgba(255,255,255,.10); backdrop-filter: blur(8px); border-radius: 999px; padding: 10px 14px; margin-bottom: 18px; }
.sc-pill__text{ color: hsl(var(--canaan-cream)); font-weight:600; font-size: 14px; }
.sc-pill__ico{ color: hsl(var(--canaan-cream)); }

.sc-h1{ color: hsl(var(--primary-foreground)); font-size: clamp(38px, 4.6vw, 62px); line-height: 1.05; margin: 0 0 18px; letter-spacing: -0.02em; max-width: 18ch; }
.sc-cream{ color: hsl(var(--canaan-cream)); }
.sc-hero__lead{ color: hsla(var(--primary-foreground), .90); font-size: clamp(16px, 2vw, 20px); line-height: 1.6; max-width: 62ch; margin: 0 0 26px; }
.sc-hero__actions{ display:flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px){ .sc-hero__actions{ flex-direction: row; } }

.sc-stats{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; max-width: 560px; }
.sc-stat__num{ color: hsl(var(--canaan-cream)); font-weight: 800; font-size: 28px; }
.sc-stat__label{ color: hsla(var(--primary-foreground), .82); font-size: 13px; }

.sc-hero__wave{ position:absolute; left:0; right:0; bottom:-1px; z-index:2; }
.sc-hero__wave svg{ width:100%; height:auto; display:block; }
.sc-hero__wavefill{ fill: hsl(var(--section-secondary)); }
@media (max-width: 768px){
  .sc-hero{
    min-height: auto;      /* no mobile não força altura */
    padding-top: 96px;
    padding-bottom: 40px;
  }
}

/* HERO: overlay mais forte e bonito (contraste real) */
.sc-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.68) 0%,
      rgba(0,0,0,.48) 40%,
      rgba(0,0,0,.18) 100%);
}

/* garante que conteúdo fica acima */
.sc-hero__content{
  position: relative;
  z-index: 2;
}

/* melhora leitura */
.sc-hero .sc-h1{
  text-shadow: 0 3px 18px rgba(0,0,0,.65);
}

.sc-hero__lead{
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}

/* Sections */
.sc-section{ padding: 80px 0; }
.sc-section--secondary{ background: hsl(var(--secondary)); }
.sc-section__header{ text-align:center; margin-bottom: 44px; }
.sc-kicker{ display:inline-block; color: hsl(var(--accent)); font-weight:700; margin-bottom: 8px; }
.sc-h2{ font-size: clamp(26px, 3vw, 40px); margin: 0 0 12px; }
.sc-muted{ color: hsla(var(--muted-foreground), 1); line-height: 1.6; }
.sc-max{ max-width: 68ch; margin-inline: auto; }
.sc-center{ text-align:center; margin-top: 22px; }

/* Grid */
.sc-grid{ display:grid; gap: 18px; }
.sc-grid--products{ grid-template-columns: 1fr; }
@media (min-width: 768px){ .sc-grid--products{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .sc-grid--products{ grid-template-columns: repeat(4, 1fr); } }

/* Card */
.sc-card{ background: hsl(var(--card)); border: 2px solid hsla(var(--border), .55); border-radius: var(--radius); overflow:hidden; box-shadow: 0 10px 22px rgba(0,0,0,.06); transition: transform .15s ease, box-shadow .15s ease; height: 100%; display:flex; flex-direction:column; }
.sc-card:hover{ transform: translateY(-2px); box-shadow: 0 18px 38px rgba(0,0,0,.10); }
.sc-card__media{ padding: 14px 14px 0; }
.sc-card__head{ padding: 10px 14px 0; }
.sc-card__body{ padding: 12px 14px 16px; display:flex; flex-direction:column; gap: 12px; flex:1; }
.sc-h3{ font-size: 18px; }
.sc-accenttext{ color: hsl(var(--accent)); font-weight:700; font-size: 13px; }

.sc-list{ list-style:none; padding:0; margin:0; display:grid; gap: 8px; }
.sc-list li{ display:flex; gap:10px; align-items:flex-start; font-size: 14px; }
.sc-check{ color: hsl(var(--primary)); font-weight: 900; }

.sc-card__meta{ margin-top: auto; display:flex; justify-content:space-between; font-size: 12px; color: hsla(var(--muted-foreground), 1); border-top: 1px solid hsla(var(--border), .55); padding-top: 12px; }

/* Images uniform */
.sc-img{ width:100%; height:auto; display:block; border-radius: 14px; }
.sc-img--uniform{ aspect-ratio: 16 / 10; object-fit: cover; }

/* About */
.sc-grid--about{ grid-template-columns: 1fr; align-items:center; gap: 28px; }
@media (min-width: 1024px){ .sc-grid--about{ grid-template-columns: 1fr 1fr; } }
.sc-about__imgwrap{ position:relative; border-radius: 24px; overflow:hidden; }
.sc-img--about{ width:100%; height: 420px; object-fit: cover; border-radius: 0; }
@media (min-width: 1024px){ .sc-img--about{ height: 520px; } }
.sc-about__shade{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, hsla(var(--primary), .40) 100%); }
.sc-about__media{ position:relative; }
.sc-about__float{ position:absolute; right: -10px; bottom: -10px; background: hsl(var(--card)); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); max-width: 280px; display:none; }
@media (min-width: 768px){ .sc-about__float{ display:block; } }
.sc-about__floatnum{ font-size: 42px; font-weight: 900; color: hsl(var(--accent)); line-height:1; margin-bottom: 6px; }
.sc-about__floattitle{ font-weight: 800; }
.sc-about__floatdesc{ color: hsla(var(--muted-foreground), 1); font-size: 13px; margin-top: 4px; }

.sc-lead{ font-size: 16px; }
.sc-strong{ color: hsl(var(--foreground)); }

.sc-grid--features{ grid-template-columns: 1fr; gap: 16px; margin-top: 22px; }
@media (min-width: 640px){ .sc-grid--features{ grid-template-columns: repeat(2, 1fr); } }
.sc-feature{ display:flex; gap: 14px; align-items:flex-start; }
.sc-feature__ico{ width: 48px; height: 48px; border-radius: 14px; background: hsl(var(--secondary)); display:flex; align-items:center; justify-content:center; font-size: 22px; flex-shrink:0; }
.sc-feature__title{ font-weight: 800; margin-bottom: 4px; }
.sc-feature__desc{ color: hsla(var(--muted-foreground), 1); font-size: 13px; line-height: 1.5; }

/* Contact */
.sc-contact{ padding: 80px 0; background: linear-gradient(135deg, hsl(var(--canaan-green-dark)) 0%, hsl(var(--canaan-green)) 50%, hsl(var(--canaan-green-light)) 100%); }
.sc-contact__header{ text-align:center; margin-bottom: 38px; }
.sc-kicker--light{ color: hsla(var(--canaan-cream), .82); }
.sc-h2--light{ color: hsl(var(--primary-foreground)); }
.sc-muted--light{ color: hsla(var(--primary-foreground), .82); }

.sc-grid--contact{ grid-template-columns: 1fr; gap: 18px; margin-bottom: 26px; }
@media (min-width: 768px){ .sc-grid--contact{ grid-template-columns: 1fr 1fr; } }

.sc-glass{ background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px); border-radius: 24px; padding: 28px; }
.sc-glass--center{ text-align:center; }
.sc-waicon{ width: 64px; height: 64px; border-radius: 999px; background: #25D366; display:flex; align-items:center; justify-content:center; margin: 0 auto 18px; font-size: 28px; color: white; }
.sc-h3--light{ color: hsl(var(--primary-foreground)); }
.sc-contact__phone{ display:inline-block; margin-top: 10px; font-size: 26px; font-weight: 900; color: hsl(var(--canaan-cream)); text-decoration:none; }
.sc-contact__phone:hover{ text-decoration: underline; }

.sc-info{ display:grid; gap: 18px; }
.sc-info__row{ display:flex; gap: 14px; align-items:flex-start; }
.sc-info__ico{ width: 40px; height: 40px; border-radius: 14px; background: rgba(255,255,255,.10); display:flex; align-items:center; justify-content:center; color: hsl(var(--primary-foreground)); }
.sc-info__title{ font-weight: 800; color: hsl(var(--primary-foreground)); }
.sc-info__text{ color: hsla(var(--primary-foreground), .82); }

/* FOOTER – verde escuro */
.sc-footer{
  padding: 22px 0;
  background: #1f3a1f;            /* verde escuro */
  border-top: 1px solid rgba(255,255,255,.12);
}

.sc-footer .sc-container{
  display: block;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* topo */
.sc-footer__top{
  display: block;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* logo */
.sc-footer__brand{
  display: center;
  align-items: center;
  justify-content: center;
}

.sc-footer__brand img{
  max-height: 54px;
  width: auto;
  display: center;
}

/* textos principais */
.sc-footer__muted{
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  color: rgba(255,255,255,.85);
}

/* RUC */
.sc-footer__bottom{
  margin-top: 8px;
  padding-top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,.12);
}

.sc-footer__tiny{
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  color: rgba(255,255,255,.65);
}

/* mobile */
@media (max-width: 600px){
  .sc-footer{
    padding: 18px 0;
  }
  .sc-footer__brand img{
    max-height: 48px;
  }
}
/* WhatsApp floating */
.sc-whatsapp{ position: fixed; right: 24px; bottom: 24px; z-index: 60; width: 56px; height: 56px; border-radius: 999px; background: #25D366; display:flex; align-items:center; justify-content:center; text-decoration:none; box-shadow: 0 16px 32px rgba(0,0,0,.22); }
.sc-whatsapp:hover{ box-shadow: 0 20px 40px rgba(0,0,0,.28); transform: translateY(-1px); }
.sc-whatsapp__glyph{ color: white; font-size: 26px; line-height:1; }
.sc-whatsapp__ping{ position:absolute; top:-4px; right:-4px; width: 16px; height: 16px; border-radius: 999px; background: hsl(var(--accent)); animation: sc-ping 1.2s ease-out infinite; }
.sc-whatsapp__dot{ position:absolute; top:-4px; right:-4px; width: 16px; height: 16px; border-radius: 999px; background: hsl(var(--accent)); }
@keyframes sc-ping{ 0%{ transform: scale(1); opacity: .8; } 100%{ transform: scale(2.2); opacity: 0; } }

/* Page/prose */
.sc-page{ padding: 60px 0; }
.sc-page__title{ margin-bottom: 14px; }
.sc-prose{ line-height: 1.7; }
/* LOGO */
.sc-brand img,
.custom-logo {
  max-height: 100px;
  width: auto;
  display: block;
}

.sc-footer__brand img {
  max-height: 150px;
  width: auto;
}
/* HEADER: fundo sólido (nunca some) */
.sc-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(18, 45, 22, .92); /* verde escuro */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

/* links sempre claros */
.sc-menu a{
  color: rgba(255,255,255,.92) !important;
}
.sc-menu a:hover{
  color: #ffffff !important;
}

/* botão da direita (Contactar) */
.sc-header .sc-btn,
.sc-header .sc-btn--primary,
.sc-header .sc-btn--cream{
  color: #fff !important;
}

/* quando rolar, fica mais sólido */
.sc-header.is-scrolled{
  background: rgba(18, 45, 22, .98);
  border-bottom-color: rgba(255,255,255,.14);
}

/* HEADER: fundo sólido (nunca some) */
.sc-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(18, 45, 22, .92); /* verde escuro */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

/* links sempre claros */
.sc-menu a{
  color: rgba(255,255,255,.92) !important;
}
.sc-menu a:hover{
  color: #ffffff !important;
}

/* botão da direita (Contactar) */
.sc-header .sc-btn,
.sc-header .sc-btn--primary,
.sc-header .sc-btn--cream{
  color: #fff !important;
}

/* quando rolar, fica mais sólido */
.sc-header.is-scrolled{
  background: rgba(18, 45, 22, .98);
  border-bottom-color: rgba(255,255,255,.14);
}
/* remove faixa branca no topo */
html, body{
  margin: 0 !important;
  padding: 0 !important;
}

body{
  overflow-x: hidden;
}

/* garante que o header encosta no topo */
.sc-header{
  top: 0 !important;
}

/* se algum elemento estiver criando espaço acima */
.sc-body{
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* HERO – estatísticas sempre brancas */
.sc-hero .sc-stat__num{
  color: #ffffff !important;
}

.sc-hero .sc-stat__label{
  color: rgba(255,255,255,.85) !important;
}
/* PRODUTOS – padronização total das imagens */
.sc-card__media{
  width: 100%;
  aspect-ratio: 1 / 1;       /* força quadrado */
  overflow: hidden;
  border-radius: 14px;
  background: #f4f4f4;
}

.sc-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;         /* corta excesso */
  object-position: center;   /* centraliza */
  display: block;
}
/* ================================
   BOTÕES – hover pastel (sem transparência)
   ================================ */

/* estado normal (garantia) */
.sc-btn{
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

/* botão principal */
.sc-btn--primary,
.sc-btn--cream{
  background-color: #4f8f2f;      /* verde principal */
  border-color: #4f8f2f;
  color: #ffffff;
}

/* HOVER – verde pastel */
.sc-btn--primary:hover,
.sc-btn--cream:hover{
  background-color: #a8c686;      /* verde pastel */
  border-color: #a8c686;
  color: #1f3a1f;                 /* texto verde escuro */
}

/* botão outline (se ainda existir algum) */
.sc-btn--cream-outline{
  background-color: #ffffff;
  border-color: #4f8f2f;
  color: #4f8f2f;
}

.sc-btn--cream-outline:hover{
  background-color: #dcebd0;      /* pastel claro */
  border-color: #dcebd0;
  color: #1f3a1f;
}

/* remove QUALQUER transparência herdada */
.sc-btn:hover{
  opacity: 1 !important;
}
/* =========================
   HERO – subir conteúdo (vertical)
   ========================= */

.sc-hero__content{
  padding-top: 0 !important;   /* remove empurrão */
  margin-top: -60px;           /* sobe o texto */
}
@media (max-width: 768px){
  .sc-hero__content{
    margin-top: -20px;
  }
}
/* =========================
   MENU EM BOX (HEADER)
   ========================= */

/* container do menu */
.sc-header nav ul,
.sc-nav ul{
  display: flex;
  gap: 10px;
}

/* item */
.sc-header nav ul li a,
.sc-nav ul li a{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  background: #2f4f2f;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: background .25s ease, transform .15s ease;
}

/* hover pastel (sem transparência) */
.sc-header nav ul li a:hover,
.sc-nav ul li a:hover{
  background: #4f7f3a; /* verde pastel */
  transform: translateY(-1px);
}

/* item ativo */
.sc-header nav ul li.current-menu-item a,
.sc-nav ul li.current-menu-item a{
  background: #3d6b2f;
}
@media (max-width: 768px){
  .sc-header nav ul li a{
    padding: 6px 12px;
    font-size: 13px;
  }
}
/* =========================
   MENU GLASS CLARO (HEADER)
   ========================= */

.sc-header nav ul,
.sc-nav ul{
  display: flex;
  gap: 10px;
}

/* LINKS */
.sc-header nav ul li a,
.sc-nav ul li a{
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 10px;

  /* GLASS */
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* BORDA SUAVE */
  border: 1px solid rgba(255,255,255,0.25);

  color: #ffffff;
  font-weight: 600;
  font-size: 14px;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.15s ease;
}

/* HOVER – pastel sólido (sem transparência) */
.sc-header nav ul li a:hover,
.sc-nav ul li a:hover{
  background: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-1px);
}

/* ITEM ATIVO */
.sc-header nav ul li.current-menu-item a,
.sc-nav ul li.current-menu-item a{
  background: rgba(255,255,255,0.45);
  border-color: rgba(255,255,255,0.55);
  color: #1f3d1f; /* verde escuro elegante */
}
@media (max-width: 768px){
  .sc-header nav ul li a{
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 8px;
  }
}
.sc-header .sc-brand img{
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.55)) saturate(1.25) contrast(1.15);
}
/* Floating WhatsApp: troca o emoji por logo do WhatsApp */
.sc-whatsapp{
  background: #25D366 !important; /* cor oficial */
}

/* esconde o emoji */
.sc-whatsapp__glyph{
  font-size: 0 !important;
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
}

/* desenha o ícone do WhatsApp em SVG (mask) */
.sc-whatsapp__glyph::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M19.11 17.53c-.27-.14-1.6-.79-1.85-.88-.25-.09-.43-.14-.61.14-.18.27-.7.88-.86 1.06-.16.18-.31.2-.58.07-.27-.14-1.12-.41-2.14-1.31-.79-.7-1.32-1.56-1.48-1.83-.16-.27-.02-.41.12-.55.12-.12.27-.31.41-.46.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.47-.84-2.01-.22-.53-.44-.46-.61-.46h-.52c-.18 0-.48.07-.73.34-.25.27-.95.93-.95 2.26s.98 2.62 1.12 2.8c.14.18 1.94 2.97 4.71 4.16.66.28 1.17.45 1.57.58.66.21 1.26.18 1.74.11.53-.08 1.6-.65 1.82-1.28.23-.63.23-1.17.16-1.28-.07-.11-.25-.18-.52-.32zM16.02 3C9.39 3 4 8.39 4 15.02c0 2.33.66 4.51 1.81 6.36L4 29l7.82-1.76a12 12 0 0 0 4.2.76c6.63 0 12.02-5.39 12.02-12.02C28.04 8.39 22.65 3 16.02 3zm0 21.82c-1.37 0-2.71-.26-3.97-.77l-.29-.12-4.64 1.04.99-4.52-.19-.29a9.83 9.83 0 0 1-1.56-5.28c0-5.44 4.43-9.87 9.87-9.87 5.44 0 9.87 4.43 9.87 9.87 0 5.44-4.43 9.87-9.87 9.87z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M19.11 17.53c-.27-.14-1.6-.79-1.85-.88-.25-.09-.43-.14-.61.14-.18.27-.7.88-.86 1.06-.16.18-.31.2-.58.07-.27-.14-1.12-.41-2.14-1.31-.79-.7-1.32-1.56-1.48-1.83-.16-.27-.02-.41.12-.55.12-.12.27-.31.41-.46.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.47-.84-2.01-.22-.53-.44-.46-.61-.46h-.52c-.18 0-.48.07-.73.34-.25.27-.95.93-.95 2.26s.98 2.62 1.12 2.8c.14.18 1.94 2.97 4.71 4.16.66.28 1.17.45 1.57.58.66.21 1.26.18 1.74.11.53-.08 1.6-.65 1.82-1.28.23-.63.23-1.17.16-1.28-.07-.11-.25-.18-.52-.32zM16.02 3C9.39 3 4 8.39 4 15.02c0 2.33.66 4.51 1.81 6.36L4 29l7.82-1.76a12 12 0 0 0 4.2.76c6.63 0 12.02-5.39 12.02-12.02C28.04 8.39 22.65 3 16.02 3zm0 21.82c-1.37 0-2.71-.26-3.97-.77l-.29-.12-4.64 1.04.99-4.52-.19-.29a9.83 9.83 0 0 1-1.56-5.28c0-5.44 4.43-9.87 9.87-9.87 5.44 0 9.87 4.43 9.87 9.87 0 5.44-4.43 9.87-9.87 9.87z'/%3E%3C/svg%3E") center / contain no-repeat;
}
/* Seção Contato: destacar o 'Contato' (kicker) */
#contato .sc-kicker,
.sc-contact .sc-kicker{
  font-size: 40px !important;
  font-weight: 800 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff !important;
  opacity: 1 !important;
  margin-bottom: 10px;
}

/* dá um brilho sutil pra não sumir no verde */
#contato .sc-kicker{
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
/* Emoji WhatsApp no título do card */
.sc-contact .sc-card h3::before,
.sc-contact .whatsapp h3::before,
.sc-contact h3:contains("WhatsApp")::before{
  content: "🟢 ";
  margin-right: 6px;
}
/* Ícone WhatsApp no card (logo real) */
.sc-waicon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366; /* WhatsApp */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

/* desenha o logo dentro */
.sc-waicon::before{
  content: "";
  width: 44px;
  height: 44px;
  background: #ffffff;

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M19.11 17.53c-.27-.14-1.6-.79-1.85-.88-.25-.09-.43-.14-.61.14-.18.27-.7.88-.86 1.06-.16.18-.31.2-.58.07-.27-.14-1.12-.41-2.14-1.31-.79-.7-1.32-1.56-1.48-1.83-.16-.27-.02-.41.12-.55.12-.12.27-.31.41-.46.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.47-.84-2.01-.22-.53-.44-.46-.61-.46h-.52c-.18 0-.48.07-.73.34-.25.27-.95.93-.95 2.26s.98 2.62 1.12 2.8c.14.18 1.94 2.97 4.71 4.16.66.28 1.17.45 1.57.58.66.21 1.26.18 1.74.11.53-.08 1.6-.65 1.82-1.28.23-.63.23-1.17.16-1.28-.07-.11-.25-.18-.52-.32zM16.02 3C9.39 3 4 8.39 4 15.02c0 2.33.66 4.51 1.81 6.36L4 29l7.82-1.76a12 12 0 0 0 4.2.76c6.63 0 12.02-5.39 12.02-12.02C28.04 8.39 22.65 3 16.02 3zm0 21.82c-1.37 0-2.71-.26-3.97-.77l-.29-.12-4.64 1.04.99-4.52-.19-.29a9.83 9.83 0 0 1-1.56-5.28c0-5.44 4.43-9.87 9.87-9.87 5.44 0 9.87 4.43 9.87 9.87 0 5.44-4.43 9.87-9.87 9.87z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M19.11 17.53c-.27-.14-1.6-.79-1.85-.88-.25-.09-.43-.14-.61.14-.18.27-.7.88-.86 1.06-.16.18-.31.2-.58.07-.27-.14-1.12-.41-2.14-1.31-.79-.7-1.32-1.56-1.48-1.83-.16-.27-.02-.41.12-.55.12-.12.27-.31.41-.46.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.47-.84-2.01-.22-.53-.44-.46-.61-.46h-.52c-.18 0-.48.07-.73.34-.25.27-.95.93-.95 2.26s.98 2.62 1.12 2.8c.14.18 1.94 2.97 4.71 4.16.66.28 1.17.45 1.57.58.66.21 1.26.18 1.74.11.53-.08 1.6-.65 1.82-1.28.23-.63.23-1.17.16-1.28-.07-.11-.25-.18-.52-.32zM16.02 3C9.39 3 4 8.39 4 15.02c0 2.33.66 4.51 1.81 6.36L4 29l7.82-1.76a12 12 0 0 0 4.2.76c6.63 0 12.02-5.39 12.02-12.02C28.04 8.39 22.65 3 16.02 3zm0 21.82c-1.37 0-2.71-.26-3.97-.77l-.29-.12-4.64 1.04.99-4.52-.19-.29a9.83 9.83 0 0 1-1.56-5.28c0-5.44 4.43-9.87 9.87-9.87 5.44 0 9.87 4.43 9.87 9.87 0 5.44-4.43 9.87-9.87 9.87z'/%3E%3C/svg%3E") center / contain no-repeat;
}
/* =========================
   MOBILE FIX PACK (<= 768px)
   ========================= */
@media (max-width: 768px){

  /* evita qualquer barra branca/margem estranha */
  html, body{ overflow-x: hidden; }

  .sc-container{
    padding-left: 16px;
    padding-right: 16px;
  }

  /* -------------------------
     HEADER / MENU
     ------------------------- */
  .sc-header{
    padding: 10px 0;
  }

  /* logo menor */
  .sc-header .sc-brand img{
    height: 34px;
    width: auto;
  }

  /* menu em linha com scroll horizontal se não couber */
  .sc-header nav ul,
  .sc-nav ul{
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .sc-header nav ul::-webkit-scrollbar,
  .sc-nav ul::-webkit-scrollbar{ height: 0; }

  .sc-header nav ul li a,
  .sc-nav ul li a{
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 13px;
  }

  /* botão "Contactar" menor (se tiver classe específica, melhor ainda) */
  .sc-header .sc-btn{
    padding: 8px 12px;
    font-size: 13px;
  }

  /* -------------------------
     HERO
     ------------------------- */
  .sc-hero{
    min-height: auto;
    padding-top: 92px;      /* espaço pro header */
    padding-bottom: 34px;
  }

  .sc-hero__content{
    margin-top: -10px;      /* sobe um pouco, sem exagero */
    padding: 0;
  }

  .sc-pill{
    padding: 8px 12px;
    margin-bottom: 12px;
  }
  .sc-pill__text{ font-size: 13px; }

  .sc-h1{
    font-size: 34px;
    line-height: 1.1;
    max-width: 22ch;
    margin-bottom: 14px;
  }

  .sc-hero__lead{
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  /* botões do hero: empilha e ocupa largura */
  .sc-hero__actions{
    flex-direction: column !important;
    gap: 10px;
    align-items: stretch;
  }
  .sc-hero__actions .sc-btn{
    width: 100%;
    justify-content: center;
  }

  /* stats: 1 coluna (ou 2, se preferir) */
  .sc-stats{
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }
  .sc-stat__num{ font-size: 22px; }
  .sc-stat__label{ font-size: 12px; }

  /* -------------------------
     PRODUTOS
     ------------------------- */
  .sc-grid--products{
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .sc-card{
    border-radius: 16px;
  }

  .sc-card__media{
    border-radius: 14px;
  }

  .sc-h2{
    font-size: 28px;
    line-height: 1.15;
  }

  /* -------------------------
     CONTATO
     ------------------------- */
  .sc-grid--contact{
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .sc-contact__header .sc-kicker{
    font-size: 14px;
    letter-spacing: .12em;
  }

  .sc-contact__phone{
    font-size: 18px;
  }

  /* botão do contato ocupa largura */
  .sc-contact .sc-btn{
    width: 100%;
    justify-content: center;
  }

  /* -------------------------
     WHATSAPP FLOAT
     ------------------------- */
  .sc-whatsapp{
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }
}
/* =========================
   MOBILE: corrigir corte no contato
   ========================= */
@media (max-width: 768px){

  /* garante que tudo respeita o container */
  .sc-contact,
  .sc-contact *{
    max-width: 100%;
    box-sizing: border-box;
  }

  /* o grid e cards não podem estourar */
  .sc-grid--contact{
    width: 100%;
  }

  .sc-contact .sc-glass{
    width: 100%;
    margin: 0;
  }

  /* textos longos (email) não podem forçar largura */
  .sc-info__text,
  .sc-contact__phone{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* botão do contato 100% e sem empurrar largura */
  .sc-contact .sc-btn{
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  /* afasta o botão flutuante pra não “bater” no layout */
  .sc-whatsapp{
    right: 16px;
    bottom: 16px;
  }
}
/* FORÇA tamanho da logo no mobile (independente da classe) */
@media (max-width: 768px){
  header img[src*="logo"]{
    height: 46px !important;
    width: auto !important;
    max-height: none !important;
  }
}

@media (max-width: 380px){
  header img[src*="logo"]{
    height: 40px !important;
  }
}
/* =========================
   MOBILE: remover faixa branca lateral (overflow)
   ========================= */
html, body{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

/* evita 100vw causando overflow (muito comum) */
.sc-container,
.sc-hero,
.sc-hero__bg,
.sc-hero__img,
.sc-hero__wave,
.sc-hero__wave svg{
  max-width: 100%;
}

/* wave às vezes passa 1px pro lado */
.sc-hero__wave{
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

/* garante que grids/cards não estouram */
.sc-grid,
.sc-card,
.sc-glass{
  max-width: 100%;
}

/* imagens nunca passam do container */
img, svg{
  max-width: 100%;
  height: auto;
}
/* troca qualquer 100vw por 100% para não gerar barra */
@media (max-width: 768px){
  [style*="100vw"],
  .w-100vw{
    width: 100% !important;
  }
}
/* =========================
   HEADER MOBILE: logo não esmagar + menu embaixo
   ========================= */
@media (max-width: 768px){

  /* header vira 2 linhas:
     linha 1: logo + botão
     linha 2: menu
  */
  .sc-header__inner{
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "brand cta"
      "nav   nav" !important;
    gap: 10px 12px !important;
    align-items: center !important;
  }

  .sc-brand{ grid-area: brand !important; justify-self: start !important; }
  .sc-nav{ grid-area: nav !important; }
  .sc-header .sc-btn{ grid-area: cta !important; justify-self: end !important; }

  /* LOGO maior e legível */
  .sc-brand{
    padding: 6px 10px !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,.16) !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }

  /* botão Contactar compacto */
  .sc-header .sc-btn{
    padding: 9px 12px !important;
    font-size: 13px !important;
    border-radius: 12px !important;
    white-space: nowrap !important;
  }

  /* MENU: scroll horizontal na segunda linha */
  .sc-nav{
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .sc-nav::-webkit-scrollbar{ height: 0; }

  .sc-menu{
    display: flex !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
  }
  .sc-menu a{
    white-space: nowrap !important;
  }
}

/* telas muito pequenas */
@media (max-width: 380px){
  .sc-brand img{ height: 40px !important; }
  .sc-header .sc-btn{ padding: 8px 10px !important; font-size: 12px !important; }
}
/* MOBILE: tirar glass atrás da logo */
@media (max-width: 768px){
  .sc-brand{
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }

  .sc-brand img{
    filter: none !important; /* se quiser sem sombra também */
  }
}
/* ---------- Mobile Fix Pack ---------- */
@media (max-width: 768px){

  .sc-container{
    padding-left: 16px;
    padding-right: 16px;
  }