
:root {
  --green-900: #0E4F2F;
  --green-800: #145F38;
  --green-700: #1E7642;
  --green-500: #2F8A45;
  --green-300: #8BCB65;
  --teal-800: #0B6670;
  --teal-900: #074B53;
  --sand-100: #FAF8F2;
  --sand-200: #F4EBDD;
  --sand-300: #E7DCC8;
  --ink: #17211D;
  --muted: #5F6862;
  --white: #FFFFFF;
  --shadow: 0 24px 70px rgba(14, 79, 47, .14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand-100);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 840px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(14, 79, 47, .12);
  background: rgba(250, 248, 242, .84);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(23, 33, 29, .08);
}

.brand img {
  width: 210px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.main-nav a:hover {
  background: rgba(14, 79, 47, .08);
  color: var(--green-900);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--green-900) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--green-900);
  padding: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
}

.hero-bg {
  position: absolute;
  inset: -120px -10% auto;
  height: 580px;
  background:
    radial-gradient(circle at 15% 30%, rgba(139, 203, 101, .28), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(11, 102, 112, .18), transparent 32%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-800);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--green-300);
  border-radius: 999px;
}

h1, h2, h3 {
  font-family: Sora, Inter, sans-serif;
  line-height: 1.08;
  color: var(--green-900);
  margin: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  letter-spacing: -.06em;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-900), var(--teal-800));
  box-shadow: 0 18px 36px rgba(14, 79, 47, .22);
}

.button-secondary {
  color: var(--green-900);
  background: rgba(255,255,255,.62);
  border-color: rgba(14, 79, 47, .18);
}

.button-light {
  color: var(--green-900);
  background: var(--white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(14, 79, 47, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(14, 79, 47, .12);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.visual-card-main {
  inset: 20px 0 auto auto;
  width: min(470px, 100%);
  padding: 34px;
}

.visual-card-main h2 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.visual-card-main p,
.visual-card-small p {
  color: var(--muted);
  margin: 0;
}

.card-kicker {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(139, 203, 101, .2);
  color: var(--green-900);
  font-weight: 800;
  font-size: .78rem;
}

.visual-card-small {
  left: 0;
  bottom: 42px;
  max-width: 260px;
  padding: 22px;
}

.visual-card-small strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-900);
  font-family: Sora, Inter, sans-serif;
  font-size: 1.18rem;
}

.mini-map {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
  margin-top: 28px;
}

.mini-map span {
  min-height: 92px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(14,79,47,.12), rgba(139,203,101,.34));
}

.mini-map span:nth-child(2),
.mini-map span:nth-child(3) {
  background: linear-gradient(135deg, rgba(11,102,112,.18), rgba(14,79,47,.08));
}

.section {
  padding: 92px 0;
}

.intro-strip {
  padding: 68px 0;
  background: var(--green-900);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: end;
}

.intro-grid h2 {
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.intro-grid p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: -.04em;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 28px;
  border: 1px solid rgba(14, 79, 47, .1);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(23, 33, 29, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(47, 138, 69, .22);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 140px;
  height: 140px;
  background: rgba(139, 203, 101, .18);
  border-radius: 50%;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 36px;
  border-radius: 16px;
  background: var(--sand-200);
  color: var(--green-900);
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
}

.service-card p {
  color: var(--muted);
  margin: 0 0 22px;
}

.service-card a {
  position: relative;
  z-index: 1;
  color: var(--teal-800);
  font-weight: 900;
}

.split-section {
  background: linear-gradient(180deg, var(--sand-100), var(--sand-200));
}

.split-grid,
.mascot-grid,
.difference-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.split-copy h2,
.mascot-grid h2,
.difference-grid h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  letter-spacing: -.04em;
}

.split-copy p,
.mascot-grid p,
.difference-grid p {
  color: var(--muted);
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 13px 0;
  color: var(--ink);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 138, 69, .12);
  color: var(--green-900);
  font-size: .78rem;
  font-weight: 900;
}

.image-panel,
.mascot-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--sand-200);
  box-shadow: var(--shadow);
}

.image-panel img,
.mascot-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid article {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--sand-100);
  border: 1px solid rgba(14,79,47,.1);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-weight: 900;
}

.process-grid h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.difference {
  background: var(--green-900);
}

.difference h2,
.difference .eyebrow {
  color: var(--white);
}

.difference-list {
  display: grid;
  gap: 14px;
}

.difference-list div {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.08);
}

.difference-list strong {
  color: var(--white);
  font-family: Sora, Inter, sans-serif;
  font-size: 1.06rem;
}

.difference-list p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.74);
}

.mascot-section {
  background: var(--sand-200);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  border: 1px solid rgba(14,79,47,.12);
  border-radius: 20px;
  background: var(--white);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--green-900);
  font-family: Sora, Inter, sans-serif;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.cta-band {
  padding: 76px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 46px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 10%, rgba(139,203,101,.28), transparent 28%),
    linear-gradient(135deg, var(--green-900), var(--teal-900));
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-inner h2 {
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.cta-inner p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.78);
}

.page-hero {
  padding: 92px 0 64px;
  background:
    radial-gradient(circle at 16% 20%, rgba(139,203,101,.24), transparent 30%),
    linear-gradient(180deg, var(--sand-100), var(--sand-200));
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.page-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.16rem;
}

.content-section {
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.content-block {
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14,79,47,.1);
  background: var(--sand-100);
}

.content-block h2 {
  margin-bottom: 14px;
  font-size: 1.32rem;
}

.content-block p {
  color: var(--muted);
  margin: 0;
}

.contact-section {
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--sand-100);
  border: 1px solid rgba(14,79,47,.12);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(14,79,47,.18);
  border-radius: 16px;
  padding: 14px 16px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(47,138,69,.12);
}

.consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  color: var(--muted) !important;
  font-weight: 600 !important;
  font-size: .92rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.contact-aside {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--green-900);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-aside img {
  width: 260px;
  margin: -80px auto 20px;
  border-radius: 28px;
}

.contact-aside h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.contact-aside p,
.contact-aside li {
  color: rgba(255,255,255,.78);
}

.site-footer {
  background: #0A3321;
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.05fr;
  gap: 34px;
}

.footer-logo {
  width: 220px;
  border-radius: 18px;
}

.footer-text,
.site-footer p {
  color: rgba(255,255,255,.72);
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255,255,255,.74);
}

.site-footer a:hover {
  color: var(--white);
}

.social-links a {
  display: inline-block;
  color: var(--green-300);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--container), calc(100% - 40px));
  margin: 46px auto 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.58);
  font-size: .9rem;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: none;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(14,79,47,.28);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .site-header {
    border-radius: 28px;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: var(--sand-100);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 16px;
  }

  .hero-grid,
  .intro-grid,
  .split-grid,
  .mascot-grid,
  .difference-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-card {
    position: relative;
  }

  .visual-card-main,
  .visual-card-small {
    inset: auto;
    width: 100%;
  }

  .visual-card-small {
    margin-top: 18px;
  }

  .cards-grid,
  .process-grid,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-aside img {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand img {
    width: 184px;
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 8px 9px 8px 12px;
  }

  .hero,
  .section,
  .page-hero {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 3.9rem);
  }

  .hero-actions,
  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cards-grid,
  .process-grid,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .image-panel img,
  .mascot-card img {
    height: auto;
  }

  .cta-inner {
    padding: 30px 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-contact {
    display: inline-flex;
  }
}

/* =========================================================
   WEB05 VISUAL HOTFIX v0.2
   Ajuste institucional: escala, responsividade, mascote,
   hero, cards e prevenção de vazamento horizontal.
   ========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at 0% 0%, rgba(139, 203, 101, .10), transparent 30%),
    var(--sand-100);
}

/* Header mais institucional e menos "pílula gigante" */
.site-header {
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  margin-top: 14px;
  padding: 8px 12px 8px 16px;
  border-radius: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: auto;
  max-width: 240px;
  height: 46px;
  object-fit: contain;
}

/* Container mais controlado */
.container {
  width: min(1080px, calc(100% - 36px));
}

/* Hero menos agressivo e mais premium */
.hero {
  padding: 64px 0 58px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(300px, .72fr);
  gap: 46px;
  align-items: center;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.35rem, 4.15vw, 4.45rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 680px;
  margin-top: 20px;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 28px;
}

.trust-row {
  margin-top: 22px;
}

/* Card lateral do hero corrigido */
.hero-visual {
  min-height: 410px;
  max-width: 390px;
  justify-self: end;
}

.visual-card-main {
  position: relative;
  inset: auto;
  width: 100%;
  padding: 26px;
}

.visual-card-main h2 {
  font-size: clamp(1.48rem, 2vw, 2rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}

.visual-card-main p {
  font-size: .96rem;
}

.visual-card-small {
  left: -28px;
  bottom: 28px;
  max-width: 245px;
  padding: 18px;
}

.visual-card-small strong {
  font-size: 1rem;
}

.mini-map {
  gap: 10px;
  margin-top: 22px;
}

.mini-map span {
  min-height: 76px;
  border-radius: 16px;
}

/* Seções com respiro mais refinado */
.section {
  padding: 72px 0;
}

.intro-strip {
  padding: 54px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-copy h2,
.mascot-grid h2,
.difference-grid h2,
.intro-grid h2 {
  font-size: clamp(1.9rem, 3vw, 3.05rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

/* Cards mais alinhados e menos gigantes */
.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-card {
  min-height: 255px;
  padding: 24px;
}

.service-card h3 {
  font-size: 1.12rem;
  line-height: 1.25;
}

.service-card p {
  font-size: .96rem;
  line-height: 1.62;
}

.icon {
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 14px;
}

/* Mascote sem corte */
.image-panel,
.mascot-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--sand-200), var(--sand-100));
}

.image-panel img,
.mascot-card img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  object-position: center;
  padding: 22px;
}

/* Blocos split mais equilibrados */
.split-grid,
.mascot-grid,
.difference-grid,
.contact-grid {
  gap: 42px;
}

/* Processo mais compacto */
.process-grid article {
  padding: 22px;
}

.process-grid h3 {
  line-height: 1.25;
}

/* Página interna sem exagero */
.page-hero {
  padding: 72px 0 54px;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 4vw, 4.15rem);
  max-width: 820px;
}

.content-block {
  min-height: 240px;
}

/* Footer mais compacto */
.site-footer {
  padding-top: 52px;
}

.footer-logo {
  width: auto;
  max-width: 230px;
  height: 52px;
  object-fit: contain;
}

/* Responsivo tablet */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
  }

  .hero-visual {
    max-width: 330px;
  }

  h1 {
    font-size: clamp(2.25rem, 4vw, 3.85rem);
  }
}

/* Responsivo intermediário */
@media (max-width: 960px) {
  .site-header {
    border-radius: 24px;
  }

  .hero-grid,
  .intro-grid,
  .split-grid,
  .mascot-grid,
  .difference-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 100%;
    min-height: auto;
    justify-self: stretch;
  }

  .visual-card-main {
    max-width: 520px;
  }

  .visual-card-small {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 14px;
  }

  .cards-grid,
  .process-grid,
  .content-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    width: calc(100% - 20px);
    min-height: 58px;
    margin-top: 10px;
    border-radius: 22px;
  }

  .brand img {
    max-width: 190px;
    height: 42px;
  }

  .hero,
  .section,
  .page-hero {
    padding: 48px 0;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3.05rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .hero-lead,
  .page-hero p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 10px;
  }

  .cards-grid,
  .process-grid,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .image-panel img,
  .mascot-card img {
    max-height: 360px;
    padding: 16px;
  }

  .cta-inner {
    padding: 28px 20px;
  }
}

/* Telas muito pequenas */
@media (max-width: 420px) {
  .brand img {
    max-width: 166px;
  }

  .main-nav a {
    font-size: .92rem;
  }

  h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  .trust-row span {
    font-size: .82rem;
  }
}

/* =========================================================
   WEB06 LOGO OFICIAL
   Aplicação do logo oficial EcoRegularização no header/footer.
   ========================================================= */

.brand img,
.footer-logo {
  object-fit: contain !important;
  object-position: center !important;
}

/* Header com logo oficial em proporção controlada */
.site-header .brand img {
  width: auto !important;
  max-width: 230px !important;
  height: 58px !important;
  max-height: 58px !important;
  border-radius: 14px;
}

/* Evita quebra visual do header com logo vertical/quadrado */
.site-header {
  min-height: 76px;
}

/* Footer permite leitura melhor do logo oficial */
.footer-logo {
  width: auto !important;
  max-width: 260px !important;
  height: 82px !important;
  max-height: 82px !important;
  border-radius: 16px;
  background: #ffffff;
}

/* Ajuste mobile */
@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
  }

  .site-header .brand img {
    max-width: 178px !important;
    height: 50px !important;
    max-height: 50px !important;
  }

  .footer-logo {
    max-width: 220px !important;
    height: 74px !important;
  }
}

/* =========================================================
   WEB07 PREMIUM REFACTOR v0.3
   Identidade oficial, hero premium, WhatsApp, UX e responsividade.
   ========================================================= */

:root {
  --brand-deep: #164F59;
  --brand-green: #147E42;
  --brand-earth: #6D6F32;
  --brand-cream: #F8F5EC;
  --brand-cream-2: #EFE8D6;
  --brand-line: rgba(22, 79, 89, .14);
}

/* base refinada */
body {
  background:
    radial-gradient(circle at 12% 4%, rgba(20,126,66,.10), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(22,79,89,.10), transparent 30%),
    var(--brand-cream);
}

.container {
  width: min(1120px, calc(100% - 40px));
}

/* header com logo oficial maior e sem caixa branca */
.site-header {
  width: min(1160px, calc(100% - 32px));
  min-height: 86px !important;
  border-radius: 30px;
  padding: 10px 16px;
  background: rgba(248, 245, 236, .86);
  border: 1px solid rgba(22, 79, 89, .12);
  box-shadow: 0 18px 60px rgba(20, 52, 39, .10);
}

.site-header .brand img {
  width: auto !important;
  height: 74px !important;
  max-height: 74px !important;
  max-width: 260px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.main-nav a {
  color: #38534B;
}

.nav-cta {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-deep)) !important;
  color: #fff !important;
}

/* hero totalmente reequilibrado */
.hero-premium {
  position: relative;
  overflow: hidden;
  padding: 70px 0 66px;
}

.hero-premium::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 90px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: rgba(20,126,66,.08);
  pointer-events: none;
}

.hero-premium-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .74fr);
  align-items: center;
  gap: 56px;
}

.hero-premium h1 {
  max-width: 790px;
  font-size: clamp(2.45rem, 4.5vw, 4.75rem);
  line-height: 1.04;
  letter-spacing: -.055em;
  color: #143427;
}

.hero-premium .hero-lead {
  max-width: 700px;
  color: #53655B;
  font-size: clamp(1.02rem, 1.18vw, 1.18rem);
  line-height: 1.75;
}

.hero-brand-stage {
  position: relative;
  display: grid;
  gap: 18px;
}

.hero-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 34px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(248,245,236,.62));
  border: 1px solid rgba(22,79,89,.12);
  box-shadow: 0 30px 90px rgba(22,79,89,.15);
}

.hero-logo-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 30% 30%, rgba(20,126,66,.10), transparent 36%),
    radial-gradient(circle at 72% 70%, rgba(109,111,50,.12), transparent 38%);
  pointer-events: none;
}

.hero-logo-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 16px 34px rgba(20,52,39,.10));
}

.hero-proof-card {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
  border-radius: 24px;
  background: #143427;
  color: #fff;
  box-shadow: 0 20px 60px rgba(20,52,39,.18);
}

.hero-proof-card strong {
  font-family: Sora, Inter, sans-serif;
  font-size: 1.02rem;
}

.hero-proof-card span {
  color: rgba(255,255,255,.74);
  font-size: .92rem;
}

.trust-row-clickable {
  align-items: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(22,79,89,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: #335248;
  font-weight: 800;
  font-size: .9rem;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.trust-pill:hover {
  transform: translateY(-2px);
  background: #143427;
  color: #fff;
}

/* seções mais elegantes */
.intro-strip {
  background:
    radial-gradient(circle at 80% 20%, rgba(139,203,101,.16), transparent 34%),
    linear-gradient(135deg, #143427, #164F59);
}

.section {
  padding: 78px 0;
}

.section-heading h2,
.split-copy h2,
.mascot-grid h2,
.difference-grid h2,
.intro-grid h2 {
  color: #143427;
}

.intro-grid h2,
.difference-grid h2,
.difference h2 {
  color: #fff;
}

.service-card {
  border: 1px solid rgba(22,79,89,.10);
  box-shadow: 0 18px 54px rgba(20,52,39,.07);
}

.service-card:hover {
  border-color: rgba(20,126,66,.24);
}

.service-card h3 {
  color: #143427;
}

.service-card a {
  color: var(--brand-deep);
}

/* mascot sem corte e mais institucional */
.image-panel,
.mascot-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(239,232,214,.72));
  border: 1px solid rgba(22,79,89,.10);
}

.image-panel img,
.mascot-card img {
  object-fit: contain !important;
  padding: 28px !important;
  max-height: 470px !important;
}

/* CTA final corrigido */
.cta-inner {
  background:
    radial-gradient(circle at 84% 16%, rgba(139,203,101,.20), transparent 30%),
    linear-gradient(135deg, #143427, #164F59);
}

.cta-inner .button-light,
.site-footer .button-light {
  color: #143427 !important;
  background: #fff !important;
  border-color: rgba(255,255,255,.88) !important;
}

.cta-inner .button-light:hover,
.site-footer .button-light:hover {
  background: #F8F5EC !important;
  color: #143427 !important;
}

/* footer com logo vazado e botão legível */
.footer-logo {
  width: auto !important;
  max-width: 300px !important;
  height: 98px !important;
  max-height: 98px !important;
  object-fit: contain !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.site-footer a.button,
.site-footer .button-light {
  display: inline-flex !important;
  color: #143427 !important;
  font-weight: 900 !important;
}

/* botão flutuante agora explicitamente WhatsApp */
.floating-contact {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  background: linear-gradient(135deg, #147E42, #164F59);
}

.floating-contact span::before {
  content: "WhatsApp";
}

/* formulário permanece, mas WhatsApp é protagonista */
.contact-form::before {
  content: "Preferência de atendimento: WhatsApp. O formulário permanece disponível para quem deseja enviar detalhes por escrito.";
  display: block;
  padding: 14px 16px;
  margin-bottom: 4px;
  border-radius: 16px;
  background: rgba(20,126,66,.10);
  color: #143427;
  font-weight: 800;
}

/* acessibilidade */
.button,
.trust-pill,
.main-nav a {
  min-height: 44px;
}

/* tablet */
@media (max-width: 980px) {
  .hero-premium-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-brand-stage {
    max-width: 620px;
  }

  .hero-logo-card {
    min-height: 330px;
  }

  .hero-logo-card img {
    max-height: 270px;
  }

  .site-header .brand img {
    height: 64px !important;
    max-height: 64px !important;
  }
}

/* mobile */
@media (max-width: 640px) {
  .site-header {
    min-height: 72px !important;
    border-radius: 24px;
  }

  .site-header .brand img {
    height: 58px !important;
    max-height: 58px !important;
    max-width: 210px !important;
  }

  .hero-premium {
    padding: 48px 0 46px;
  }

  .hero-premium h1 {
    font-size: clamp(2.05rem, 10vw, 3.15rem);
  }

  .hero-logo-card {
    min-height: 280px;
    padding: 22px;
    border-radius: 30px;
  }

  .hero-logo-card img {
    max-height: 230px;
  }

  .hero-proof-card {
    padding: 18px;
  }

  .trust-row-clickable {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trust-pill {
    justify-content: center;
  }

  .footer-logo {
    max-width: 260px !important;
    height: 88px !important;
  }
}

/* =========================================================
   WEB08 ACABAMENTO PREMIUM FINAL
   Logo visível, social elegante, CTA refinado, mobile/tablet.
   ========================================================= */

/* Logo oficial recortado: maior, mais presente e sem fundo branco */
.site-header {
  min-height: 112px !important;
  padding: 12px 20px !important;
  border-radius: 34px !important;
  background: rgba(248, 245, 236, .92) !important;
}

.site-header .brand {
  min-width: 145px;
  padding: 0;
}

.site-header .brand img {
  width: auto !important;
  height: 96px !important;
  max-height: 96px !important;
  max-width: 150px !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: drop-shadow(0 10px 18px rgba(20, 52, 39, .12));
}

/* Header/nav com aparência mais limpa */
.main-nav {
  gap: 6px;
}

.main-nav a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  color: #31483f;
}

.nav-cta {
  padding-inline: 18px !important;
}

/* Hero mais fluido e mais "produto premium" */
.hero-premium {
  padding-top: 58px !important;
}

.hero-premium-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr) !important;
  gap: 64px !important;
}

.hero-premium h1 {
  font-size: clamp(2.6rem, 4.35vw, 4.85rem) !important;
  max-width: 840px;
}

.hero-premium .hero-lead {
  max-width: 730px;
}

.hero-logo-card {
  min-height: 480px !important;
  padding: 34px !important;
  background:
    radial-gradient(circle at 24% 18%, rgba(20,126,66,.12), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(109,111,50,.13), transparent 36%),
    rgba(255,255,255,.72) !important;
}

.hero-logo-card img {
  width: min(100%, 455px) !important;
  max-height: 420px !important;
  object-fit: contain !important;
}

/* Botões com nomenclatura mais elegante */
.button-primary {
  background: linear-gradient(135deg, #147E42, #164F59) !important;
}

.button-secondary {
  color: #143427 !important;
  background: rgba(255,255,255,.72) !important;
}

/* Nova seção de áreas */
.areas-premium {
  padding-top: 76px;
  padding-bottom: 76px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(248,245,236,.88));
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.areas-grid article {
  min-height: 180px;
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(22,79,89,.11);
  box-shadow: 0 18px 48px rgba(20,52,39,.06);
}

.areas-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(20,126,66,.10);
  color: #147E42;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.areas-grid h3 {
  color: #143427;
  font-size: 1.06rem;
  line-height: 1.35;
}

/* Mascote mais elegante e menos dominante */
.mascot-card img,
.image-panel img {
  max-height: 440px !important;
  padding: 30px !important;
}

/* Rodapé com marca legível */
.site-footer {
  background:
    radial-gradient(circle at 12% 10%, rgba(139,203,101,.14), transparent 26%),
    linear-gradient(135deg, #09291D, #0F3D33) !important;
}

.footer-logo {
  display: block;
  width: auto !important;
  height: 132px !important;
  max-height: 132px !important;
  max-width: 220px !important;
  object-fit: contain !important;
  padding: 12px !important;
  border-radius: 28px !important;
  background: rgba(255,255,255,.94) !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}

/* Instagram com bloco social profissional */
.social-links-premium {
  margin-top: 20px;
}

.social-title {
  margin: 0 0 10px !important;
  color: rgba(255,255,255,.72) !important;
  font-size: .92rem;
  font-weight: 700;
}

.social-instagram {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 800;
}

.social-instagram img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.social-instagram:hover {
  background: rgba(255,255,255,.16);
}

/* Botão flutuante somente ícone */
.whatsapp-fab,
.floating-contact.whatsapp-fab {
  width: 62px !important;
  height: 62px !important;
  min-height: 62px !important;
  padding: 0 !important;
  right: 22px !important;
  bottom: 22px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  box-shadow: 0 18px 40px rgba(20, 52, 39, .24) !important;
}

.whatsapp-fab img {
  width: 62px;
  height: 62px;
  display: block;
}

.floating-contact span,
.floating-contact span::before {
  content: none !important;
  display: none !important;
}

/* Formulário como apoio, não protagonista */
.contact-form::before {
  content: "Preferencialmente, fale conosco pelo WhatsApp. Se desejar, preencha os dados abaixo para enviar uma mensagem mais completa.";
}

/* Ajustes desktop intermediário */
@media (max-width: 1180px) {
  .hero-premium-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr) !important;
    gap: 42px !important;
  }

  .hero-logo-card {
    min-height: 420px !important;
  }

  .hero-logo-card img {
    max-height: 350px !important;
  }
}

/* Tablet */
@media (max-width: 980px) {
  .site-header {
    min-height: 92px !important;
  }

  .site-header .brand img {
    height: 78px !important;
    max-height: 78px !important;
    max-width: 124px !important;
  }

  .hero-premium-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-logo-card {
    min-height: 360px !important;
  }

  .hero-logo-card img {
    max-height: 305px !important;
  }

  .areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-logo {
    height: 118px !important;
    max-height: 118px !important;
  }
}

/* Celular */
@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 18px) !important;
    min-height: 82px !important;
    padding: 8px 12px !important;
    border-radius: 24px !important;
  }

  .site-header .brand img {
    height: 70px !important;
    max-height: 70px !important;
    max-width: 112px !important;
  }

  .hero-premium {
    padding-top: 42px !important;
  }

  .hero-premium h1 {
    font-size: clamp(2.08rem, 10.5vw, 3.15rem) !important;
  }

  .hero-logo-card {
    min-height: 305px !important;
    padding: 20px !important;
  }

  .hero-logo-card img {
    max-height: 260px !important;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid article {
    min-height: auto;
  }

  .footer-logo {
    height: 110px !important;
    max-height: 110px !important;
    max-width: 190px !important;
  }

  .whatsapp-fab,
  .floating-contact.whatsapp-fab {
    width: 56px !important;
    height: 56px !important;
    min-height: 56px !important;
    right: 16px !important;
    bottom: 16px !important;
  }

  .whatsapp-fab img {
    width: 56px;
    height: 56px;
  }
}

/* Celular muito estreito */
@media (max-width: 420px) {
  .site-header .brand img {
    height: 64px !important;
    max-height: 64px !important;
    max-width: 102px !important;
  }

  .main-nav a {
    font-size: .91rem;
  }
}

/* =========================================================
   WEB09 AJUSTE FINO
   WhatsApp flutuante, Instagram icon-only e CTA alinhado.
   ========================================================= */

/* CTA final: botão centralizado, sem quebra de linha e com proporção elegante */
.cta-inner {
  align-items: center !important;
}

.cta-inner .button,
.cta-inner .button-light {
  min-width: 178px !important;
  min-height: 58px !important;
  padding: 16px 28px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
  text-align: center !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
}

/* Em telas grandes, botão fica alinhado visualmente ao centro vertical do bloco */
.cta-inner > a.button {
  flex: 0 0 auto !important;
  align-self: center !important;
}

/* WhatsApp flutuante: somente ícone, sem caixa, sem texto e com respiro da borda */
.whatsapp-fab,
.floating-contact.whatsapp-fab {
  width: 66px !important;
  height: 66px !important;
  min-width: 66px !important;
  min-height: 66px !important;
  padding: 0 !important;
  right: 24px !important;
  bottom: 24px !important;
  border-radius: 999px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  z-index: 80 !important;
}

.whatsapp-fab img,
.floating-contact.whatsapp-fab img {
  width: 66px !important;
  height: 66px !important;
  display: block !important;
  object-fit: contain !important;
  transition: transform .18s ease, filter .18s ease;
}

.whatsapp-fab:hover img {
  transform: translateY(-2px) scale(1.035);
  filter: brightness(1.02);
}

/* Remove qualquer resíduo textual do botão flutuante */
.floating-contact span,
.floating-contact span::before {
  display: none !important;
  content: none !important;
}

/* Rodapé: redes sociais limpas e institucionais */
.social-icon-only {
  margin-top: 22px !important;
}

.social-icon-only .social-title {
  margin: 0 0 12px !important;
  color: rgba(255,255,255,.78) !important;
  font-size: .95rem !important;
  font-weight: 800 !important;
  letter-spacing: .01em;
}

.social-instagram-icon-only {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: none !important;
}

.social-instagram-icon-only img {
  width: 32px !important;
  height: 32px !important;
  display: block !important;
}

.social-instagram-icon-only span {
  display: none !important;
}

.social-instagram-icon-only:hover {
  background: rgba(255,255,255,.17) !important;
  transform: translateY(-1px);
}

/* Ajuste visual extra no bloco final para desktop */
@media (min-width: 760px) {
  .cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .cta-inner h2 {
    max-width: 740px;
  }

  .cta-inner p {
    max-width: 720px;
  }
}

/* Tablet e mobile: CTA em coluna com botão largo e alinhado */
@media (max-width: 760px) {
  .cta-inner {
    align-items: stretch !important;
  }

  .cta-inner .button,
  .cta-inner .button-light {
    width: 100% !important;
    min-width: 0 !important;
  }

  .whatsapp-fab,
  .floating-contact.whatsapp-fab {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    min-height: 58px !important;
    right: 16px !important;
    bottom: 16px !important;
  }

  .whatsapp-fab img,
  .floating-contact.whatsapp-fab img {
    width: 58px !important;
    height: 58px !important;
  }
}

/* Telas muito pequenas */
@media (max-width: 420px) {
  .social-instagram-icon-only {
    width: 46px !important;
    height: 46px !important;
  }

  .social-instagram-icon-only img {
    width: 30px !important;
    height: 30px !important;
  }
}

/* =========================================================
   WEB10 ICONES OFICIAIS
   Aplicação dos PNGs oficiais de WhatsApp e Instagram.
   ========================================================= */

/* WhatsApp flutuante */
.whatsapp-fab,
.floating-contact.whatsapp-fab {
  width: 62px !important;
  height: 62px !important;
  min-width: 62px !important;
  min-height: 62px !important;
  padding: 0 !important;
  right: 20px !important;
  bottom: 20px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 999px !important;
  overflow: visible !important;
  z-index: 90 !important;
}

.whatsapp-fab img,
.floating-contact.whatsapp-fab img {
  width: 62px !important;
  height: 62px !important;
  display: block !important;
  object-fit: contain !important;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.22));
  transition: transform .18s ease, filter .18s ease;
}

.whatsapp-fab:hover img,
.floating-contact.whatsapp-fab:hover img {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.25));
}

/* Garantir ausência total de texto no botão flutuante */
.floating-contact span,
.floating-contact span::before {
  display: none !important;
  content: none !important;
}

/* Bloco social do rodapé */
.social-links-premium {
  margin-top: 22px !important;
}

.social-title {
  margin: 0 0 12px !important;
  color: rgba(255,255,255,.78) !important;
  font-size: .95rem !important;
  font-weight: 800 !important;
}

.social-instagram-icon-only {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 14px !important;
}

.social-instagram-icon-only img {
  width: 36px !important;
  height: 36px !important;
  display: block !important;
  object-fit: contain !important;
}

.social-instagram-icon-only span {
  display: none !important;
}

.social-instagram-icon-only:hover img {
  transform: translateY(-1px) scale(1.03);
}

/* Rodapé: mantém visual limpo */
.social-icon-only {
  margin-top: 22px !important;
}

/* Responsivo */
@media (max-width: 760px) {
  .whatsapp-fab,
  .floating-contact.whatsapp-fab {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    right: 14px !important;
    bottom: 14px !important;
  }

  .whatsapp-fab img,
  .floating-contact.whatsapp-fab img {
    width: 56px !important;
    height: 56px !important;
  }

  .social-instagram-icon-only {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
  }

  .social-instagram-icon-only img {
    width: 32px !important;
    height: 32px !important;
  }
}

/* =========================================================
   WEB11 MASCOTE TRANSPARENTE
   Remove efeito de 'imagem colada' e integra o Floreco ao layout.
   ========================================================= */

.image-panel,
.mascot-card {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 22px !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at 20% 18%, rgba(139,203,101,.10), transparent 32%),
    radial-gradient(circle at 80% 82%, rgba(22,79,89,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(239,232,214,.72)) !important;
  border: 1px solid rgba(22,79,89,.08) !important;
  overflow: hidden !important;
}

.image-panel img,
.mascot-card img {
  width: 100% !important;
  height: auto !important;
  max-height: 430px !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0 !important;
  background: transparent !important;
  filter: drop-shadow(0 18px 26px rgba(20,52,39,.10));
}

/* desktop */
@media (min-width: 981px) {
  .image-panel img,
  .mascot-card img {
    max-height: 440px !important;
  }
}

/* tablet */
@media (max-width: 980px) {
  .image-panel,
  .mascot-card {
    padding: 18px !important;
  }

  .image-panel img,
  .mascot-card img {
    max-height: 360px !important;
  }
}

/* mobile */
@media (max-width: 640px) {
  .image-panel,
  .mascot-card {
    padding: 14px !important;
    border-radius: 24px !important;
  }

  .image-panel img,
  .mascot-card img {
    max-height: 290px !important;
  }
}

/* =========================================================
   WEB12 REFINO MASCOTE
   Integração final do Floreco sem retângulo fantasma.
   ========================================================= */

.image-panel,
.mascot-card {
  background:
    radial-gradient(circle at 22% 20%, rgba(139,203,101,.10), transparent 34%),
    radial-gradient(circle at 78% 78%, rgba(22,79,89,.08), transparent 36%),
    rgba(255,255,255,.48) !important;
  backdrop-filter: blur(4px);
}

.image-panel img,
.mascot-card img {
  mix-blend-mode: normal !important;
  background: transparent !important;
  filter: drop-shadow(0 18px 28px rgba(20,52,39,.12)) !important;
}

/* O mascote de braços cruzados tende a parecer mais pesado;
   esta regra melhora escala e centralização visual. */
.image-panel img[src*="floreco-confianca-transparente"] {
  max-height: 405px !important;
  transform: translateY(2px);
}

/* O mascote apontando pode ficar um pouco maior sem pesar. */
.mascot-card img[src*="floreco-apontando-transparente"],
.image-panel img[src*="floreco-apontando-transparente"] {
  max-height: 430px !important;
}

@media (max-width: 980px) {
  .image-panel img[src*="floreco-confianca-transparente"],
  .mascot-card img[src*="floreco-apontando-transparente"],
  .image-panel img[src*="floreco-apontando-transparente"] {
    max-height: 340px !important;
  }
}

@media (max-width: 640px) {
  .image-panel img[src*="floreco-confianca-transparente"],
  .mascot-card img[src*="floreco-apontando-transparente"],
  .image-panel img[src*="floreco-apontando-transparente"] {
    max-height: 280px !important;
  }
}

/* =========================================================
   WEB13 ASSISTENTE FLORECO
   Atendimento inicial guiado com envio estruturado ao WhatsApp.
   ========================================================= */

.eco-assistant {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.eco-assistant-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 8px 18px 8px 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #143427, #164F59);
  color: #fff;
  box-shadow: 0 20px 46px rgba(20, 52, 39, .28);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.eco-assistant-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(20, 52, 39, .34);
}

.eco-assistant-launcher-avatar {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 20%, rgba(139,203,101,.18), transparent 38%),
    rgba(255,255,255,.94);
}

.eco-assistant-launcher-avatar img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  object-position: center;
  transform: translateY(2px);
}

.eco-assistant-launcher-text {
  color: #fff;
  font-weight: 900;
  font-size: .96rem;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.eco-assistant-panel {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: min(420px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 120px));
  overflow: hidden;
  display: none;
  border-radius: 30px;
  background: rgba(248, 245, 236, .98);
  border: 1px solid rgba(22,79,89,.12);
  box-shadow: 0 30px 90px rgba(20, 52, 39, .30);
}

.eco-assistant.is-open .eco-assistant-panel {
  display: block;
  animation: ecoAssistantIn .22s ease both;
}

@keyframes ecoAssistantIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.eco-assistant-header {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 34px;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(139,203,101,.22), transparent 34%),
    linear-gradient(135deg, #143427, #164F59);
  color: #fff;
}

.eco-assistant-media {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
}

.eco-assistant-media video {
  width: 88px;
  height: 88px;
  object-fit: cover;
  object-position: center;
}

.eco-assistant-header span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.eco-assistant-header strong {
  display: block;
  color: #fff;
  font-family: Sora, Inter, sans-serif;
  font-size: 1.08rem;
  line-height: 1.18;
}

.eco-assistant-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.eco-assistant-body {
  max-height: calc(min(720px, 100vh - 120px) - 114px);
  overflow: auto;
  padding: 18px;
}

.eco-assistant-intro {
  margin: 0 0 16px;
  color: #53655B;
  font-size: .94rem;
  line-height: 1.55;
}

.eco-assistant-step {
  margin-top: 16px;
}

.eco-assistant-step label,
.eco-assistant-fields label {
  display: block;
  margin-bottom: 9px;
  color: #143427;
  font-weight: 900;
  font-size: .92rem;
}

.eco-assistant-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.eco-assistant-options.compact {
  grid-template-columns: 1fr 1fr;
}

.eco-assistant-options button {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(22,79,89,.13);
  border-radius: 16px;
  background: #fff;
  color: #31483f;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}

.eco-assistant-options button:hover {
  transform: translateY(-1px);
  border-color: rgba(20,126,66,.28);
}

.eco-assistant-options button.is-selected {
  color: #fff;
  background: linear-gradient(135deg, #147E42, #164F59);
  border-color: transparent;
}

.eco-assistant-fields {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.eco-assistant-fields input,
.eco-assistant-fields textarea {
  width: 100%;
  border: 1px solid rgba(22,79,89,.14);
  border-radius: 16px;
  background: #fff;
  padding: 12px 14px;
  color: #143427;
  outline: none;
  resize: vertical;
}

.eco-assistant-fields input:focus,
.eco-assistant-fields textarea:focus {
  border-color: rgba(20,126,66,.48);
  box-shadow: 0 0 0 4px rgba(20,126,66,.11);
}

.eco-assistant-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #147E42, #164F59);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(20, 52, 39, .18);
}

.eco-assistant-consent {
  margin: 12px 0 0;
  color: #6b746f;
  font-size: .78rem;
  line-height: 1.45;
  text-align: center;
}

/* Evita conflito com botão flutuante antigo */
.floating-contact {
  display: none !important;
}

/* Desktop muito largo */
@media (min-width: 1200px) {
  .eco-assistant {
    right: 28px;
    bottom: 28px;
  }
}

/* Tablet/celular */
@media (max-width: 760px) {
  .eco-assistant {
    right: 14px;
    bottom: 14px;
  }

  .eco-assistant-launcher {
    min-height: 58px;
    padding: 6px 14px 6px 6px;
  }

  .eco-assistant-launcher-avatar {
    width: 48px;
    height: 48px;
  }

  .eco-assistant-launcher-avatar img {
    width: 44px;
    height: 44px;
  }

  .eco-assistant-panel {
    right: -2px;
    bottom: 76px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 96px);
    border-radius: 26px;
  }

  .eco-assistant-body {
    max-height: calc(100vh - 220px);
  }

  .eco-assistant-options.compact {
    grid-template-columns: 1fr;
  }
}

/* Celular estreito: botão compacto */
@media (max-width: 420px) {
  .eco-assistant-launcher-text {
    display: none;
  }

  .eco-assistant-launcher {
    width: 60px;
    height: 60px;
    padding: 6px;
    justify-content: center;
  }

  .eco-assistant-panel {
    bottom: 72px;
  }
}

/* =========================================================
   WEB14 FAQ ACCORDION PREMIUM
   Um item aberto por vez, hover em desktop e toque em mobile.
   ========================================================= */

.faq-list {
  gap: 14px !important;
}

.faq-list details {
  border: 1px solid rgba(22,79,89,.11) !important;
  border-radius: 22px !important;
  background: rgba(255,255,255,.78) !important;
  box-shadow: 0 14px 38px rgba(20,52,39,.055);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(20,126,66,.24) !important;
  box-shadow: 0 18px 46px rgba(20,52,39,.09);
  background: #fff !important;
}

.faq-list details[open] {
  transform: translateY(-1px);
}

.faq-list summary {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px !important;
  color: #143427 !important;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  display: none !important;
  content: none !important;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(20,126,66,.10);
  color: #147E42;
  font-family: Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.faq-list details[open] summary::after {
  content: "–";
  transform: rotate(180deg);
  background: linear-gradient(135deg, #147E42, #164F59);
  color: #fff;
}

.faq-list details p {
  padding: 0 24px 24px !important;
  margin: -4px 0 0 !important;
  color: #53655B !important;
  font-size: 1rem;
  line-height: 1.72;
}

/* Estado fechado mais compacto */
.faq-list details:not([open]) {
  box-shadow: 0 10px 28px rgba(20,52,39,.04);
}

/* Mobile */
@media (max-width: 640px) {
  .faq-list summary {
    padding: 18px 18px !important;
    font-size: .98rem;
  }

  .faq-list summary::after {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }

  .faq-list details p {
    padding: 0 18px 20px !important;
    font-size: .96rem;
  }
}

/* =========================================================
   WEB15 ASSISTENTE FLORECO MOBILE RESPONSIVO
   Corrige painel cortado no celular e mantém botão fechar visível.
   ========================================================= */

/* Estado global quando assistente está aberto */
body.eco-assistant-open {
  overflow: hidden;
}

/* Desktop continua flutuante */
.eco-assistant-panel {
  z-index: 130 !important;
}

/* Botão fechar mais fácil de tocar */
.eco-assistant-close {
  min-width: 38px !important;
  min-height: 38px !important;
  font-size: 1.7rem !important;
  z-index: 3 !important;
}

/* Tablet e celular: painel vira modal fixo na área segura da tela */
@media (max-width: 760px) {
  .eco-assistant {
    position: fixed !important;
    right: 14px !important;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 140 !important;
  }

  .eco-assistant-panel {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    top: calc(10px + env(safe-area-inset-top, 0px)) !important;
    bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    display: none !important;
  }

  .eco-assistant.is-open .eco-assistant-panel {
    display: flex !important;
    flex-direction: column !important;
  }

  .eco-assistant-header {
    flex: 0 0 auto !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 2 !important;
    grid-template-columns: 64px minmax(0, 1fr) 42px !important;
    gap: 12px !important;
    padding: 14px !important;
  }

  .eco-assistant-media {
    width: 64px !important;
    height: 64px !important;
    border-radius: 20px !important;
  }

  .eco-assistant-media video {
    width: 76px !important;
    height: 76px !important;
  }

  .eco-assistant-header span {
    font-size: .68rem !important;
    letter-spacing: .07em !important;
  }

  .eco-assistant-header strong {
    font-size: .98rem !important;
    line-height: 1.16 !important;
  }

  .eco-assistant-close {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    font-size: 1.8rem !important;
  }

  .eco-assistant-body {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 16px !important;
  }

  .eco-assistant-options button {
    min-height: 44px !important;
  }

  .eco-assistant-submit {
    min-height: 52px !important;
    position: sticky !important;
    bottom: 0 !important;
    z-index: 1 !important;
  }

  .eco-assistant-launcher {
    z-index: 145 !important;
  }
}

/* Celulares baixos: compacta cabeçalho e conteúdo */
@media (max-width: 760px) and (max-height: 720px) {
  .eco-assistant-panel {
    top: calc(8px + env(safe-area-inset-top, 0px)) !important;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .eco-assistant-header {
    grid-template-columns: 54px minmax(0, 1fr) 40px !important;
    padding: 12px !important;
  }

  .eco-assistant-media {
    width: 54px !important;
    height: 54px !important;
    border-radius: 17px !important;
  }

  .eco-assistant-media video {
    width: 66px !important;
    height: 66px !important;
  }

  .eco-assistant-intro {
    margin-bottom: 12px !important;
    font-size: .9rem !important;
  }

  .eco-assistant-step {
    margin-top: 12px !important;
  }

  .eco-assistant-fields {
    margin-top: 12px !important;
  }
}

/* Celulares muito estreitos: launcher compacto, painel preserva topo */
@media (max-width: 420px) {
  .eco-assistant-panel {
    left: 10px !important;
    right: 10px !important;
    top: calc(8px + env(safe-area-inset-top, 0px)) !important;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
    border-radius: 24px !important;
  }

  .eco-assistant-header {
    grid-template-columns: 52px minmax(0, 1fr) 40px !important;
  }

  .eco-assistant-header strong {
    font-size: .94rem !important;
  }
}
