:root {
  --black: #000208;
  --navy-950: #02040d;
  --navy-900: #050818;
  --navy-800: #080d24;
  --navy-700: #0f1533;
  --gold-500: #c9a24c;
  --gold-400: #d9b869;
  --gold-300: #e6cf94;
  --ink: #05081a;
  --cream: #f4efe4;
  --paper: #ffffff;
  --muted: #8a92a8;
  --border: rgba(201, 162, 76, 0.22);
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: #e8ecf4;
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, 92%); margin: 0 auto; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -.01em; line-height: 1.05; margin: 0; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--gold-400); }
.eyebrow {
  display: inline-block;
  font-size: .74rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 500;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold-500);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* NAV BAR */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: linear-gradient(180deg, rgba(0,2,8,.85), rgba(0,2,8,.35));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, padding .35s ease;
}
.nav.is-scrolled {
  background: rgba(0, 2, 8, .92);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
  gap: 2rem;
}
.nav__logo { display: flex; align-items: center; gap: 12px; color: var(--gold-400); }
.nav__logo span { display: flex; flex-direction: column; line-height: 1; }
.nav__logo em { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: var(--cream); }
.nav__logo small { font-size: .58rem; letter-spacing: .35em; color: var(--gold-400); margin-top: 4px; }

.nav__menu { display: flex; gap: 2.4rem; }
.nav__menu a {
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(232,236,244,.75); font-weight: 500;
  padding: .4rem 0;
  position: relative;
  transition: color .3s ease;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold-400);
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.nav__menu a:hover { color: var(--gold-400); }
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__cta {
  padding: .75rem 1.4rem; border: 1px solid var(--gold-400);
  color: var(--gold-400);
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  border-radius: 2px;
  transition: background .35s ease, color .35s ease;
}
.nav__cta:hover { background: var(--gold-400); color: var(--navy-950); }

.nav__toggle {
  display: none;
  background: none; border: 0; padding: 8px;
  flex-direction: column; gap: 5px; cursor: pointer;
}
.nav__toggle span { display: block; width: 24px; height: 1.5px; background: var(--gold-400); transition: transform .3s ease, opacity .3s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.img-logo {
  width: 150px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem;
  padding: 1rem 1.9rem;
  border-radius: 2px;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .35s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-950);
  box-shadow: 0 12px 40px -12px rgba(201, 162, 76, .55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -12px rgba(201, 162, 76, .7); }
.btn--ghost { border-color: rgba(255,255,255,.25); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold-400); color: var(--gold-400); }
.btn--wide { width: 100%; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 9rem 0 5rem; background: var(--black); }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: saturate(1) brightness(.55); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(8, 13, 36, .6), transparent 60%),
    linear-gradient(100deg, rgba(0, 2, 8, .97) 0%, rgba(0, 2, 8, .82) 45%, rgba(0, 2, 8, .45) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .7 0 0 0 0 .6 0 0 0 0 .3 0 0 0 .12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .4; mix-blend-mode: overlay; pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 780px; }
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.gold-underline {
  background: linear-gradient(180deg, transparent 68%, rgba(201,162,76,.35) 68%, rgba(201,162,76,.35) 92%, transparent 92%);
  padding: 0 .1em;
  font-style: italic;
  color: var(--gold-300);
}
.hero .lead { font-size: 1.1rem; max-width: 560px; color: rgba(232,236,244,.78); margin-bottom: 2.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }
.hero__meta { display: flex; gap: 3rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid rgba(201,162,76,.2); max-width: 620px; }
.hero__meta strong { font-family: var(--font-serif); font-size: 2.2rem; color: var(--gold-400); display: block; line-height: 1; }
.hero__meta span { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(232,236,244,.6); }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 38px; border: 1px solid var(--gold-400); border-radius: 20px; z-index: 2;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%; width: 3px; height: 8px;
  background: var(--gold-400); border-radius: 3px; margin-left: -1.5px;
  animation: scroll 1.8s ease infinite;
}
@keyframes scroll { 0%,100% { opacity: 1; transform: translateY(0); } 50% { opacity: .3; transform: translateY(10px); } }

/* ABOUT */
.about { padding: 8rem 0; background: linear-gradient(180deg, var(--black), var(--navy-900)); position: relative; }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.about__media { position: relative; }
.about__frame {
  position: relative; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.8);
}
.about__frame::before { content: ""; position: absolute; inset: 16px; border: 1px solid var(--gold-400); border-radius: 2px; z-index: 2; pointer-events: none; }
.about__frame img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute; bottom: -30px; right: -30px;
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-950);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-serif); text-align: center;
  box-shadow: 0 20px 50px -10px rgba(201, 162, 76, .4);
  z-index: 2;
}
.about__badge strong { font-size: 1rem; letter-spacing: .3em; text-transform: uppercase; font-weight: 500; }
.about__badge span { font-size: 1.35rem; font-style: italic; line-height: 1.15; margin-top: .4rem; }
.about__content h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); margin-bottom: 1.8rem; color: var(--cream); }
.about__content p { color: rgba(232,236,244,.72); margin-bottom: 1.2rem; }
.about__content strong { color: var(--gold-300); font-weight: 500; }
.about__pills { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.about__pills li {
  padding: .5rem 1.1rem; border: 1px solid var(--border);
  border-radius: 999px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-300);
}

/* AREAS */
.areas { padding: 8rem 0; background: var(--navy-900); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-head h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); color: var(--cream); margin-bottom: 1rem; }
.section-head p { color: rgba(232,236,244,.65); }
.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.area-card {
  position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 4px; cursor: pointer;
  border: 1px solid rgba(255,255,255,.05);
  background: var(--navy-950);
}
.area-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .8s ease, filter .5s ease;
  filter: saturate(.8) brightness(.6);
}
.area-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,2,8,.55) 65%, rgba(0,2,8,.98) 100%);
}
.area-card__body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.8rem; z-index: 2;
  transform: translateY(18px); transition: transform .5s ease;
}
.area-card__num {
  display: block; font-family: var(--font-serif); font-size: .9rem; font-style: italic;
  color: var(--gold-400); letter-spacing: .2em; margin-bottom: .5rem;
}
.area-card h3 { font-size: 1.5rem; color: var(--cream); margin-bottom: .5rem; }
.area-card p { color: rgba(232,236,244,.72); font-size: .9rem; margin: 0; max-height: 0; overflow: hidden; opacity: 0; transition: all .5s ease; }
.area-card:hover img { transform: scale(1.06); filter: saturate(1) brightness(.5); }
.area-card:hover .area-card__body { transform: translateY(0); }
.area-card:hover p { max-height: 120px; opacity: 1; margin-top: .3rem; }

/* DIFFERENTIALS */
.diff { position: relative; padding: 8rem 0; overflow: hidden; background: var(--black); }
.diff__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(15, 21, 51, .6), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(201, 162, 76, .08), transparent 45%);
}
.diff .container { position: relative; z-index: 2; }
.section-head--light h2 { color: var(--cream); }
.diff__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.diff-card {
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, rgba(8,13,36,.55), rgba(2,4,13,.55));
  border: 1px solid var(--border);
  border-radius: 4px; text-align: center;
  transition: all .4s ease;
  backdrop-filter: blur(10px);
}
.diff-card:hover { transform: translateY(-6px); border-color: var(--gold-400); background: linear-gradient(180deg, rgba(15,21,51,.75), rgba(5,8,24,.75)); }
.diff-card__icon {
  width: 64px; height: 64px; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  border: 1px solid var(--border); border-radius: 50%;
  background: rgba(201, 162, 76, .06);
}
.diff-card__icon svg { width: 28px; height: 28px; }
.diff-card h3 { font-size: 1.35rem; color: var(--cream); margin-bottom: 1rem; }
.diff-card p { color: rgba(232,236,244,.7); font-size: .93rem; margin: 0; }

/* CONTACT */
.contact { padding: 8rem 0; background: linear-gradient(180deg, var(--black), #000104); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact__intro h2 { font-size: clamp(2.4rem, 4.5vw, 4rem); color: var(--cream); margin-bottom: 1.5rem; }
.contact__intro > p { color: rgba(232,236,244,.7); margin-bottom: 2.5rem; }
.contact__info { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.contact__info li { display: flex; gap: 1.2rem; align-items: flex-start; }
.contact__ico {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400); border: 1px solid var(--border);
}
.contact__ico svg { width: 20px; height: 20px; }
.contact__info small {
  display: block; font-size: .68rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold-400); margin-bottom: .35rem;
}
.contact__info a { color: var(--cream); font-size: 1.02rem; line-height: 1.4; }

.contact__form {
  background: rgba(8, 13, 36, .5); border: 1px solid var(--border);
  padding: 2.5rem; border-radius: 6px; backdrop-filter: blur(10px);
}
.field { margin-bottom: 1.3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  display: block; font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-400); margin-bottom: .55rem;
  font-weight: 500;
}
.field input, .field textarea {
  width: 100%; padding: .9rem 1rem;
  background: rgba(0, 2, 8, .7);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--cream);
  font-family: var(--font-sans); font-size: .95rem;
  border-radius: 3px;
  transition: border-color .3s ease, background .3s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-400);
  background: rgba(0, 2, 8, .9);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .78rem; color: rgba(232,236,244,.5); text-align: center; margin: 1rem 0 0; }

/* FOOTER */
.footer { background: #000104; padding: 5rem 0 2rem; border-top: 1px solid var(--border); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__logo em { font-family: var(--font-serif); font-style: italic; font-size: 1.6rem; color: var(--gold-400); display: block; }
.footer__logo small { font-size: .65rem; letter-spacing: .35em; color: rgba(232,236,244,.55); }
.footer p { color: rgba(232,236,244,.55); margin-top: 1rem; font-size: .92rem; }
.footer h4 { font-family: var(--font-serif); color: var(--gold-400); font-size: 1.2rem; margin: 0 0 1.2rem; font-weight: 500; }
.footer nav, .footer > div > div { display: flex; flex-direction: column; gap: .7rem; }
.footer nav a, .footer > div > div a, .footer > div > div span { color: rgba(232,236,244,.65); font-size: .92rem; transition: color .3s; }
.footer nav a:hover, .footer > div > div a:hover { color: var(--gold-400); }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.8rem; display: flex; justify-content: space-between;
  color: rgba(232,236,244,.45); font-size: .82rem;
  width: min(1200px, 92%); margin: 0 auto;
}
.footer__bar a { color: var(--gold-400); }

/* WhatsApp */
.whatsapp {
  position: fixed; bottom: 26px; right: 26px; z-index: 55;
  display: flex; align-items: center; gap: .7rem;
  padding: .7rem 1.3rem .7rem .8rem;
  background: #25d366; color: white; border-radius: 999px;
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, .55);
  font-weight: 500; font-size: .9rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.whatsapp:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 40px -6px rgba(37, 211, 102, .7); }
.whatsapp svg { width: 22px; height: 22px; }

/* Responsive */
@media (max-width: 960px) {
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__badge { width: 120px; height: 120px; bottom: -20px; right: -10px; }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .diff__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .whatsapp span { display: none; }
  .whatsapp { padding: .8rem; }
  .hero__meta { gap: 2rem; }
  .hero__meta strong { font-size: 1.7rem; }
  .field-row { grid-template-columns: 1fr; }
  .contact__form { padding: 1.8rem; }

  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__menu {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(0, 2, 8, .98);
    border-top: 1px solid var(--border);
    padding: 1.5rem 5%;
    gap: 1.2rem;
  }
  .nav.is-open .nav__menu a { padding: .6rem 0; }
}
@media (max-width: 560px) {
  .areas__grid { grid-template-columns: 1fr; }
  .diff__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 7rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .footer__bar { flex-direction: column; gap: .5rem; text-align: center; }
  .nav__logo em { font-size: 1.05rem; }
}

/* ============ WHATSAPP FAB ============ */
.whatsapp-fab{
  position:fixed;bottom:24px;right:24px;z-index:110;
  width:56px;height:56px;border-radius:50%;
  background:#25d366;color:#fff;
  display:grid;place-items:center;
  box-shadow:0 10px 30px -8px rgba(37,211,102,.6);
  transition:transform .25s var(--transition), box-shadow .3s;
  animation:pulse 2.5s infinite;
}
.whatsapp-fab svg{width:28px;height:28px}
.whatsapp-fab:hover{transform:scale(1.1)}
@keyframes pulse{0%,100%{box-shadow:0 10px 30px -8px rgba(37,211,102,.6),0 0 0 0 rgba(37,211,102,.5)}50%{box-shadow:0 10px 30px -8px rgba(37,211,102,.6),0 0 0 14px rgba(37,211,102,0)}}

/* Container que agrupa tudo e fica fixado onde seu botão original já ficava */
.whatsapp-wrapper {
  position: fixed;
  bottom: 20px; /* Ajuste o bottom/right conforme o layout do seu site */
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Modificações leves no seu botão original para aceitar a tag button */
.whatsapp-fab {
  border: none;
  cursor: pointer;
  outline: none;
  /* Certifique-se de manter aqui as suas propriedades originais: width, height, background-color, border-radius, etc. */
}

/* --- ESTILOS DO POPUP (CAIXINHA DE CONTATOS) --- */
.whatsapp-popup {
  display: none; /* Começa oculto */
  width: 320px;
  background-color: #f0f2f5;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  margin-bottom: 18px;
  overflow: hidden;
  animation: popupReveal 0.25s ease-out;
}

@keyframes popupReveal {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.popup-header {
  background-color: #12c15a; /* Verde WhatsApp */
  color: #ffffff;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  font-family: sans-serif;
}

.popup-contacts {
  display: flex;
  flex-direction: column;
  background-color: #f8f9fa;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  text-decoration: none;
  border-bottom: 1px solid #eef1f4;
  transition: background-color 0.2s;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item:hover {
  background-color: #e9ecef;
}

/* Avatar verde com o ícone do WhatsApp */
.contact-avatar {
  background-color: #25d366;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
}

.contact-avatar svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
}

.contact-title {
  font-size: 13px;
  font-weight: 600;
  color: #555e65;
}

.contact-name {
  font-size: 15px;
  font-weight: 700;
  color: #333d45;
  margin-top: 1px;
}

/* Seta apontando para baixo */
.popup-arrow {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #f8f9fa;
  align-self: flex-end;
  margin-right: 22px; /* Alinha o bico perfeitamente com o seu botão circular */
  margin-bottom: -9px;
  position: relative;
  z-index: 2;
}

/* ============ BOTÃO EVVE (HEADER) ============ */
.btn-evve {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffda00; /* Amarelo Evve */
  color: #000000; /* Texto Preto */
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.25s var(--transition), box-shadow 0.25s var(--transition), background 0.25s;
  box-shadow: 0 4px 15px rgba(255, 218, 0, 0.25);
}

.btn-evve:hover {
  background: #e5c400; /* Amarelo um pouco mais escuro no hover */
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 218, 0, 0.4);
  color: #000000;
}

.btn-evve svg {
  flex-shrink: 0;
}

/* Ajuste de responsividade para ocultar o botão em telas menores (mobile) */
@media (max-width: 768px) {
  .btn-evve {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    width: auto;
    height: auto;
    padding: 0.3rem 0.5rem;
    font-size: 0.6rem;
    line-height: 1.1;
    text-align: left;
    margin-left: auto;
    margin-right: 0.5rem;
    
    /* Garante a quebra por espaço e impede hifenização/corte no meio da palavra */
    width: min-content; /* Faz o botão abraçar o tamanho exato da maior palavra */
    white-space: normal; /* Permite a quebra de linha normal */
    word-break: keep-all; /* Impede a quebra no meio de qualquer palavra */
  }

  .btn-evve svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0; /* Impede o ícone de amassar */
  }
}
