/* Layout 4 — Acolhedor: cores quentes, formas arredondadas, blobs animados */

:root {
  --ink: #2b2118; --ink-soft: #6b5d4f; --paper: #fbf3ea; --paper-raised: #ffffff;
  --line: #ecdfcd; --coral: #e8674a; --coral-soft: #fbe4dc; --sage: #4c8577; --sage-soft: #e2ede9;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow: 0 24px 48px -20px rgb(43 33 24 / .25);
}

html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font-family: var(--font-body); overflow-x: clip; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; }
:focus-visible { outline-color: var(--coral); }
::selection { background: var(--coral); color: #fff; }

.wrap { max-width: 1180px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section4 { padding-block: clamp(3.5rem, 8vw, 6rem); }

/* header */
.bar4 { position: sticky; top: 0; z-index: 200; padding-block: 1rem; }
.bar4-inner { display: flex; align-items: center; gap: 1.5rem; background: var(--paper-raised); border-radius: 999px; padding: .6rem .8rem .6rem 1.2rem; box-shadow: var(--shadow); }
.pillnav { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 600; margin-right: auto; }
.blob { width: 12px; height: 12px; border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%; background: var(--coral); animation: blobrotate 6s ease-in-out infinite; }
@keyframes blobrotate { 0%,100% { border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%; } 50% { border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%; } }
.nav4 { display: flex; gap: 1.5rem; }
.nav4 a { font-weight: 600; font-size: .92rem; color: var(--ink-soft); transition: color .2s ease; }
.nav4 a:hover { color: var(--coral); }
.bar4-actions { display: flex; align-items: center; gap: .6rem; }
.menu-btn { display: none; width: 42px; height: 42px; border-radius: 50%; background: var(--coral-soft); align-items: center; justify-content: center; }
.menu-btn-icon { display: flex; flex-direction: column; gap: 4px; }
.menu-btn-icon span { width: 16px; height: 2px; background: var(--coral); border-radius: 2px; }
@media (max-width: 820px) { .nav4 { display: none; } .menu-btn { display: flex; } }

.overlay4 { position: fixed; inset: 0; z-index: 190; background: var(--coral); display: flex; align-items: center; justify-content: center;
  clip-path: circle(2% at 92% 4%); transition: clip-path .5s cubic-bezier(.65,0,.35,1); }
.overlay4.is-open { clip-path: circle(150% at 92% 4%); }
.overlay4 nav { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.overlay4 nav a { font-family: var(--font-display); color: #fff; font-size: clamp(1.8rem, 6vw, 3rem); font-weight: 600; opacity: .85; transition: opacity .2s ease, transform .2s ease; }
.overlay4 nav a:hover { opacity: 1; transform: scale(1.05); }

/* buttons */
.btn4 { display: inline-flex; align-items: center; justify-content: center; padding: .85rem 1.7rem; border-radius: 999px; font-weight: 600; font-size: .92rem; border: 2px solid transparent; transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease, background-color .2s ease; }
.btn4:active { transform: scale(.94); }
.btn4-solid { background: var(--ink); color: #fff; }
.btn4-solid:hover { background: var(--coral); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn4-line { border-color: var(--ink); color: var(--ink); }
.btn4-line:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.dark-card .btn4-line { border-color: rgb(255 255 255 / .5); color: #fff; }

/* hero */
.hero4 { position: relative; padding-block: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 3rem); overflow: clip; }
.blob-bg { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .5; z-index: -1; animation: floaty 9s ease-in-out infinite; }
.b1 { width: 380px; height: 380px; background: var(--coral-soft); top: -120px; right: -80px; }
.b2 { width: 300px; height: 300px; background: var(--sage-soft); bottom: -100px; left: -60px; animation-delay: -3s; }
@keyframes floaty { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-24px); } }

.hero4-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .hero4-grid { grid-template-columns: 1fr; } }
.chip { display: inline-block; background: var(--sage-soft); color: var(--sage); font-weight: 700; font-size: .82rem; padding: .5rem 1rem; border-radius: 999px; margin-bottom: 1.2rem; }
.chip-alt { background: var(--coral-soft); color: var(--coral); }
.chip-light { background: rgb(255 255 255 / .15); color: #fff; }
.hero4 h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; margin-bottom: 1.1rem; }
.hero4-lede { color: var(--ink-soft); font-size: 1.05rem; max-width: 48ch; margin-bottom: 2rem; }
.hero4-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero4-photo { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; overflow: hidden; box-shadow: var(--shadow); animation: blobshape 10s ease-in-out infinite; }
.hero4-photo img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
@keyframes blobshape { 0%,100% { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; } 50% { border-radius: 55% 45% 40% 60% / 55% 60% 40% 45%; } }

.stat4-row { display: flex; gap: 2.5rem; margin-top: clamp(2.5rem, 6vw, 4rem); flex-wrap: wrap; }
.stat4-row strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--coral); font-variant-numeric: tabular-nums; }
.stat4-row span { font-size: .82rem; color: var(--ink-soft); }

/* cards */
.card4 { background: var(--paper-raised); border-radius: 32px; padding: clamp(2rem, 5vw, 3.5rem); box-shadow: var(--shadow); }
.card4.big h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-block: .5rem 1.25rem; max-width: 24ch; }
.card4.big p { color: var(--ink-soft); max-width: 62ch; margin-bottom: 1rem; font-size: 1.02rem; }
.cities4 { font-weight: 600; color: var(--sage) !important; }

/* areas */
.section4 h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 2.25rem; }
.areas4-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .areas4-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .areas4-grid { grid-template-columns: 1fr; } }
.area4 { background: var(--sage-soft); border-radius: 24px; padding: 1.75rem; transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease; }
.area4.tint2 { background: var(--coral-soft); }
.area4:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow); }
.a4-ico { font-size: 1.8rem; display: block; margin-bottom: .75rem; }
.area4 h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.area4 p { font-size: .9rem; color: var(--ink-soft); }

/* equipe */
.team4-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 780px) { .team4-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } }
.team4-card { background: var(--paper-raised); border-radius: 28px; padding: 1.75rem; text-align: center; box-shadow: var(--shadow); transition: transform .25s ease; }
.team4-card:hover { transform: translateY(-6px); }
.blob-photo { display: block; width: 110px; height: 110px; margin: 0 auto 1.1rem; border-radius: 42% 58% 60% 40% / 50% 45% 55% 50%; overflow: hidden; background: var(--coral-soft); }
.blob-photo.alt { border-radius: 58% 42% 40% 60% / 55% 50% 50% 45%; background: var(--sage-soft); }
.blob-photo img { width: 100%; height: 100%; object-fit: cover; }
.team4-card h3 { font-size: 1.05rem; }
.role4 { color: var(--coral); font-weight: 700; font-size: .84rem; margin-top: .3rem; }
.areas4 { color: var(--ink-soft); font-size: .88rem; margin-top: .2rem; }

/* localizacao */
.dark-card { background: var(--ink); color: #fff; }
.local4-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3rem); align-items: start; }
@media (max-width: 860px) { .local4-grid { grid-template-columns: 1fr; } }
.light4 { color: #fff; margin-block: .5rem 1.25rem; }
.dark-card address { font-style: normal; color: rgb(255 255 255 / .75); margin-bottom: 1.25rem; line-height: 1.7; }
.links4 { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.links4 a:not(.link-whatsapp) { color: #fff; font-weight: 600; }
.portal4 { display: flex; gap: 1rem; flex-wrap: wrap; font-size: .82rem; margin-bottom: .6rem; }
.portal4 a { color: rgb(255 255 255 / .6); }
.portal4 a:hover { color: #fff; }

.form4 { background: #fff; color: var(--ink); border-radius: 24px; padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: .4rem; }
.two-col4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .two-col4 { grid-template-columns: 1fr; } }
.form-row label { font-size: .8rem; font-weight: 700; color: var(--ink-soft); }
.form-row input, .form-row textarea { padding: .7rem .9rem; border-radius: 14px; border: 2px solid var(--line); background: var(--paper); font-size: .95rem; transition: border-color .2s ease; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--coral); outline: none; }
.hp-field { position: absolute; left: -9999px; }
.form-status { font-size: .84rem; min-height: 1.2em; }
.form-status[data-state="ok"] { color: var(--sage); }
.form-status[data-state="err"] { color: var(--coral); }

.foot4 { padding-block: 2rem; }
.foot4-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .85rem; color: var(--ink-soft); }
