:root{
  --mint:#e0f9ee;
  --green:#2f6b53;
  --nav:#7fb4cf;
  --text:#7f8e95;
  --muted:#a9b4b9;
  --accent:#d28a6c;
  --page-bg:#f6f7f7;

  --container:min(1180px, 92vw);

  --heading:#6f7f86;
  --cookie-blue:#5d8fb0;
}

/* Base */
html,body{height:100%}
body{
  margin:0;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(224,249,238,.85), transparent 65%),
    radial-gradient(900px 520px at 85% 0%, rgba(127,180,207,.18), transparent 60%),
    var(--page-bg);
}

html, body{
  overflow-x: clip;
}

/* focus acessível */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{
  outline:3px solid rgba(88,143,177,.35);
  outline-offset:3px;
  border-radius:12px;
}

/* Container helper */
.container{width:var(--container); margin:0 auto}

/* “Vibe” moderna: glass + sombra */
.glass{
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.06);
}

.card{
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.soft-shadow{
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

/* Hero cards com zoom suave */
.hero-card{
  border-radius: 18px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}
.hero-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transform: scale(1.02);
  transition: transform .45s ease;
}
.hero-card:hover img{ transform: scale(1.06); }

/* Botões (mesma cor, mais “premium”) */
.btn-primary{
  background: var(--green);
  color:#fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  box-shadow: 0 12px 20px rgba(47,107,83,.25);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}
.btn-primary:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 16px 26px rgba(47,107,83,.28);
}
.btn-primary:active{ transform: translateY(0); }

/* Dividers full width */
.full-bleed{
  width: 100%;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Footer */
.site-footer{
  margin-top: 34px;
}

/* Contact strip */
.contact-strip{
  background: rgba(255,255,255,.80);
  border-top: 1px solid rgba(0,0,0,.06);
}
.contact-strip-inner{
  width: var(--container);
  margin: 0 auto;
}
.contact-item{
  color:#8a969c;
}

/* Cookie */
.cookie-banner{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:9999;
  background: var(--cookie-blue);
  color:#fff;
  padding:14px 18px;
  box-shadow: 0 -10px 25px rgba(0,0,0,.14);
}
.cookie-inner{
  width:min(1200px, 96vw);
  margin:0 auto;
}
.cookie-btn{
  height:38px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.7);
  background:transparent;
  color:#fff;
  cursor:pointer;
}
.cookie-btn.primary{
  background:#fff;
  color: var(--cookie-blue);
  border-color:#fff;
}
.cookie-close{
  width:38px;height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  background:transparent;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  opacity:.9;
}
.cookie-close:hover{opacity:1}

/* Reveal animation */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in{
  opacity:1;
  transform: translateY(0);
}

/* Pequenos ajustes de texto */
.lead{
  color: var(--heading);
  letter-spacing: .1px;
}

/* Mobile tweaks */
@media (max-width: 820px){
  body{
    background:
      radial-gradient(700px 520px at 20% 10%, rgba(224,249,238,.85), transparent 64%),
      radial-gradient(700px 520px at 85% 0%, rgba(127,180,207,.16), transparent 62%),
      var(--page-bg);
  }
}

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  width:64px;
  height:64px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,.2);
  z-index:999;
  animation:whatsPulse 2s infinite;
  transition:.25s;
}

.whatsapp-float img{
  width: 32px;
  height: 32px;
  display: block;
  filter: brightness(0) invert(1);
}

.whatsapp-float:hover{
  transform:scale(1.08);
  animation:none;
}

@keyframes whatsPulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.6); }
  70%{ box-shadow:0 0 0 18px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}