@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  --deep-teal: #02807b;
  --ocean: #00aeac;
  --sand: #fdece2;
  --mint: #b8e3d0;
  --peach: #f7a272;
  --white: #ffffff;
  --ink: #16413f;
  --muted: #55716f;
  --line: rgba(2, 128, 123, 0.16);
  --shadow: 0 24px 70px rgba(2, 82, 79, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2.15rem, 3.6vw, 3.85rem);
}

.eyebrow {
  color: var(--deep-teal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.entrelacos-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 92px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(24px, 5vw, 84px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

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

.brand-logo {
  height: auto;
  width: clamp(210px, 16vw, 265px);
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: clamp(20px, 2.1vw, 38px);
}

.primary-nav > a:not(.nav-cta) {
  color: #285653;
  font-size: 0.86rem;
  font-weight: 500;
  position: relative;
}

.primary-nav > a:not(.nav-cta)::after {
  background: var(--ocean);
  bottom: -7px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
}

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.83rem;
  font-weight: 600;
  gap: 20px;
  justify-content: center;
  letter-spacing: 0.015em;
  min-height: 50px;
  padding: 0 24px;
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
}

.nav-cta,
.button-primary {
  background: var(--deep-teal);
  color: var(--white);
}

.nav-cta:hover,
.button-primary:hover {
  background: #016d69;
  transform: translateY(-2px);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  padding: 8px;
}

.menu-toggle span {
  background: var(--deep-teal);
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 28px;
}

.hero {
  background: linear-gradient(105deg, var(--sand) 0%, #fff9f5 58%, #f5fbf9 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 0.78fr);
  min-height: 720px;
  padding: 138px clamp(24px, 5vw, 84px) 48px;
  position: relative;
}

.hero::before {
  background: var(--peach);
  border-radius: 999px;
  content: "";
  height: 10px;
  left: clamp(24px, 5vw, 84px);
  opacity: 0.8;
  position: absolute;
  top: 122px;
  width: 54px;
}

.hero-copy {
  align-self: center;
  max-width: 790px;
  padding: 24px clamp(30px, 5vw, 84px) 36px 0;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(2.5rem, 4.1vw, 4.55rem);
  margin: 24px 0 30px;
  max-width: 880px;
}

.hero-keyword {
  background: linear-gradient(transparent 72%, rgba(247, 162, 114, 0.42) 72%);
  color: var(--deep-teal);
  display: inline;
  padding: 0 0.025em;
}

.hero-description {
  color: #416461;
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.75;
  max-width: 680px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 40px;
}

.text-link {
  align-items: center;
  color: var(--deep-teal);
  display: inline-flex;
  font-size: 0.91rem;
  font-weight: 600;
  gap: 20px;
  padding: 11px 0;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-media {
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.hero-media::before {
  border: 1px solid rgba(2, 128, 123, 0.28);
  border-radius: 48% 48% 6px 6px;
  content: "";
  inset: 22px 22px -22px -22px;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-media > img {
  border-radius: 48% 48% 6px 6px;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  width: 100%;
}

.hero-pattern,
.essence-pattern {
  background-image: url("/logo-mark.png");
  background-repeat: repeat;
  background-size: 54px 54px;
}

.hero-pattern {
  background-color: var(--ocean);
  bottom: -30px;
  height: 135px;
  opacity: 0.16;
  position: absolute;
  right: -28px;
  transform: rotate(3deg);
  width: 165px;
  z-index: 2;
}

.hero-location {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  bottom: 26px;
  box-shadow: 0 18px 50px rgba(4, 70, 67, 0.18);
  display: flex;
  gap: 15px;
  left: 26px;
  min-width: 240px;
  padding: 18px 22px;
  position: absolute;
  z-index: 3;
}

.hero-location > span {
  color: var(--peach);
  font-size: 0.95rem;
}

.hero-location p {
  color: var(--muted);
  display: grid;
  font-size: 0.73rem;
  line-height: 1.5;
}

.hero-location strong {
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 700;
}

.section {
  padding: clamp(68px, 6.5vw, 96px) clamp(24px, 7vw, 112px);
}

.section-heading,
.audience-heading,
.space-intro {
  align-items: end;
  display: grid;
  gap: 54px;
  grid-template-columns: 1.15fr 0.85fr;
  margin-bottom: 52px;
}

.section-heading h2,
.audience-heading h2,
.space-intro h2 {
  margin-top: 18px;
}

.section-intro,
.space-intro-copy > p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 520px;
}

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

.specialties-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.specialty-card {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 40px 1fr 30px;
  min-height: 235px;
  padding: 46px 34px 46px 0;
  position: relative;
}

.specialty-card:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 54px;
}

.specialty-card:nth-child(even) {
  padding-left: 54px;
}

.specialty-card::before {
  background: var(--sand);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 200ms ease;
  z-index: 0;
}

.specialty-card:hover::before {
  opacity: 1;
}

.specialty-card > * {
  position: relative;
  z-index: 1;
}

.card-number {
  color: var(--ocean);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.specialty-card h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  margin-bottom: 17px;
}

.specialty-card p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
  max-width: 470px;
}

.card-arrow {
  color: var(--deep-teal);
  font-size: 1.25rem;
}

.essence-band {
  align-items: center;
  background: var(--deep-teal);
  color: var(--white);
  display: flex;
  min-height: 148px;
  overflow: hidden;
  padding: 30px clamp(24px, 7vw, 112px);
  position: relative;
}

.essence-pattern {
  filter: brightness(0) invert(1);
  inset: 0;
  opacity: 0.055;
  position: absolute;
}

.essence-band p {
  align-items: center;
  display: flex;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 500;
  gap: clamp(18px, 3vw, 54px);
  justify-content: space-between;
  letter-spacing: 0.01em;
  position: relative;
  width: 100%;
  z-index: 1;
}

.essence-band i {
  background: var(--peach);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.space-section {
  background: linear-gradient(180deg, #f6fbf9 0%, var(--white) 100%);
}

.space-intro {
  align-items: start;
}

.space-intro-copy {
  padding-top: 4px;
}

.feature-list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.feature-list li {
  align-items: center;
  border-top: 1px solid var(--line);
  color: #3b615e;
  display: flex;
  font-size: 1rem;
  gap: 18px;
  padding: 15px 0;
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  color: var(--ocean);
  font-size: 0.71rem;
  font-weight: 600;
}

.space-gallery {
  display: grid;
  gap: 18px;
  grid-auto-rows: 250px;
  grid-template-columns: 1.1fr 0.9fr 1fr;
}

.space-photo {
  background: var(--sand);
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.space-photo::after {
  background: linear-gradient(180deg, transparent 48%, rgba(8, 45, 43, 0.7) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.space-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.space-photo:hover img {
  transform: scale(1.025);
}

.space-photo figcaption {
  bottom: 0;
  color: var(--white);
  display: grid;
  left: 0;
  padding: 22px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.space-photo figcaption strong {
  font-size: 0.98rem;
  font-weight: 700;
}

.space-photo figcaption span {
  font-size: 0.86rem;
  line-height: 1.55;
  opacity: 0.88;
}

.gallery-reception {
  grid-row: span 3;
}

.gallery-facade {
  grid-column: 1 / span 2;
  grid-row: span 2;
}

.gallery-movimento,
.gallery-travessia {
  grid-row: span 2;
}

.gallery-infantil-wide {
  grid-column: 2;
  grid-row: span 1;
}

.gallery-infantil-tall {
  grid-row: span 3;
}

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

.audience-track {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(5, 1fr);
}

.audience-card {
  min-width: 0;
}

.audience-image {
  aspect-ratio: 0.78;
  overflow: hidden;
  position: relative;
}

.audience-image::after {
  background: linear-gradient(180deg, transparent 55%, rgba(8, 56, 53, 0.48));
  content: "";
  inset: 0;
  position: absolute;
}

.audience-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
  width: 100%;
}

.audience-card:hover img {
  transform: scale(1.035);
}

.audience-image span {
  bottom: 14px;
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 600;
  left: 16px;
  position: absolute;
  z-index: 2;
}

.audience-card h3 {
  font-size: 1.25rem;
  margin: 19px 0 9px;
}

.audience-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

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

.team-heading {
  align-items: end;
  display: grid;
  gap: clamp(44px, 7vw, 110px);
  grid-template-columns: 1.08fr 0.92fr;
  margin-bottom: 52px;
}

.team-heading h2 {
  margin-top: 18px;
  max-width: 900px;
}

.team-heading > p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 560px;
}

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

.profile-card {
  background: #f6fbf9;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.profile-image {
  aspect-ratio: 0.82;
  overflow: hidden;
  position: relative;
}

.profile-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.profile-card:hover .profile-image img {
  transform: scale(1.02);
}

.profile-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 34px 30px 38px;
}

.profile-copy > span {
  color: var(--deep-teal);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-copy h3 {
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  margin: 18px 0;
}

.profile-copy p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.profile-more {
  align-items: center;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--deep-teal);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.02em;
  margin-top: auto;
  padding: 20px 0 0;
  text-align: left;
  touch-action: manipulation;
  width: 100%;
}

.profile-more span {
  transition: transform 220ms ease;
}

.profile-more:hover span,
.profile-more:focus-visible span {
  transform: translate(3px, -3px);
}

.profile-more:focus-visible,
.bio-modal-close:focus-visible {
  outline: 2px solid var(--ocean);
  outline-offset: 4px;
}

.bio-modal-backdrop[hidden] {
  display: none !important;
}

.bio-modal-backdrop {
  align-items: center;
  animation: bio-fade-in 220ms ease both;
  backdrop-filter: blur(7px);
  background: rgba(5, 38, 36, 0.68);
  display: flex;
  inset: 0;
  justify-content: center;
  overscroll-behavior: contain;
  padding: 28px;
  position: fixed;
  touch-action: pan-y;
  z-index: 100000;
}

.bio-modal {
  animation: bio-rise-in 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
  background: #fffdf9;
  box-shadow: 0 34px 100px rgba(1, 25, 24, 0.34);
  height: calc(100vh - 56px);
  height: calc(100dvh - 56px);
  max-height: 760px;
  max-width: 1080px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.bio-modal-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(2, 82, 79, 0.15);
  border-radius: 50%;
  color: var(--deep-teal);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 1.7rem;
  height: 44px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 22px;
  top: 22px;
  width: 44px;
  z-index: 3;
}

.bio-modal-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  height: 100%;
  min-height: 0;
}

.bio-modal-identity {
  align-self: start;
  background: linear-gradient(155deg, #e9f6f2 0%, #f6fbf8 100%);
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 48px 42px;
  -webkit-overflow-scrolling: touch;
}

.bio-modal-image {
  aspect-ratio: 0.87;
  margin-bottom: 34px;
  max-height: 390px;
  overflow: hidden;
}

.bio-modal-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  width: 100%;
}

.bio-modal-role {
  color: var(--deep-teal);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.bio-modal-identity h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.03;
  margin: 18px 0 26px;
}

.bio-modal-content {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 68px clamp(40px, 5vw, 72px) 60px;
  -webkit-overflow-scrolling: touch;
}

.bio-modal-content > .eyebrow {
  margin-bottom: 28px;
}

.bio-modal-content > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
  margin-bottom: 20px;
}

.bio-modal-footer {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  padding-top: 24px;
}

.bio-modal-footer strong,
.bio-modal-footer span {
  color: var(--deep-teal);
  font-size: 0.82rem;
  line-height: 1.6;
}

@keyframes bio-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bio-rise-in {
  from { opacity: 0; transform: translateY(18px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.reviews-section {
  background: linear-gradient(180deg, #eef8f4 0%, #f8fcfa 100%);
  padding: clamp(68px, 6.5vw, 96px) clamp(24px, 7vw, 112px);
}

.reviews-inner {
  margin: 0 auto;
  max-width: 1440px;
}

.reviews-heading {
  align-items: end;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  margin-bottom: 44px;
}

.reviews-heading h2 {
  font-size: clamp(2.15rem, 3.4vw, 3.7rem);
  margin-top: 18px;
  max-width: 810px;
}

.google-summary {
  align-items: center;
  display: grid;
  grid-template-columns: auto auto;
  line-height: 1;
  min-width: 150px;
  row-gap: 10px;
}

.google-wordmark {
  font-size: 1.15rem;
  font-weight: 600;
  grid-column: 1 / -1;
  letter-spacing: -0.04em;
}

.google-wordmark span:nth-child(1),
.google-wordmark span:nth-child(4) {
  color: #4285f4;
}

.google-wordmark span:nth-child(2),
.google-wordmark span:nth-child(6) {
  color: #ea4335;
}

.google-wordmark span:nth-child(3) {
  color: #fbbc05;
}

.google-wordmark span:nth-child(5) {
  color: #34a853;
}

.google-summary strong {
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 700;
}

.stars,
.review-stars {
  color: #f5b93f;
  letter-spacing: 0.1em;
}

.stars {
  font-size: 1rem;
}

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

.review-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(2, 128, 123, 0.12);
  box-shadow: 0 18px 55px rgba(2, 82, 79, 0.07);
  min-height: 330px;
  padding: 32px;
}

.review-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.review-google-mark {
  color: #4285f4;
  font-size: 1.35rem;
  font-weight: 700;
}

.review-stars {
  font-size: 0.85rem;
}

.review-card > p {
  color: #315b58;
  font-size: 1rem;
  line-height: 1.75;
  margin: 28px 0 30px;
}

.review-source {
  color: var(--deep-teal);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.button-outline {
  border: 1px solid var(--deep-teal);
  color: var(--deep-teal);
}

.button-outline:hover {
  background: var(--deep-teal);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-section {
  background: #f5faf8;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
  min-height: 690px;
}

.contact-panel {
  align-self: center;
  padding: clamp(60px, 7vw, 105px);
}

.contact-panel h2 {
  font-size: clamp(2.4rem, 3.8vw, 4.1rem);
  margin: 19px 0 26px;
}

.contact-panel > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.07rem;
  margin-bottom: 32px;
  max-width: 480px;
}

.contact-details {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
  padding-top: 26px;
}

.contact-details span {
  color: var(--deep-teal);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details p {
  color: #3e625f;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: 8px;
}

.map-wrap {
  min-height: 690px;
  position: relative;
}

.map-wrap iframe {
  border: 0;
  filter: saturate(0.72) contrast(0.95);
  height: 100%;
  width: 100%;
}

.map-action {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  bottom: 24px;
  box-shadow: 0 16px 45px rgba(2, 82, 79, 0.18);
  color: var(--deep-teal);
  display: inline-flex;
  font-size: 0.79rem;
  font-weight: 600;
  gap: 18px;
  min-height: 48px;
  padding: 0 20px;
  position: absolute;
  right: 24px;
  z-index: 2;
}

.entrelacos-footer {
  align-items: center;
  background: var(--deep-teal);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 1fr auto;
  padding: 58px clamp(24px, 7vw, 112px) 38px;
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
  width: 240px;
}

.entrelacos-footer > p {
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 22px;
}

.entrelacos-footer > small {
  border-top: 1px solid rgba(255, 255, 255, 0.19);
  font-size: 0.68rem;
  grid-column: 1 / -1;
  opacity: 0.6;
  padding-top: 24px;
}

.whatsapp-float {
  align-items: center;
  background: var(--deep-teal);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  bottom: 20px;
  box-shadow: 0 12px 35px rgba(2, 82, 79, 0.25);
  color: var(--white);
  display: flex;
  font-size: 0.76rem;
  font-weight: 600;
  gap: 10px;
  padding: 13px 19px;
  position: fixed;
  right: 20px;
  z-index: 30;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .entrelacos-header {
    height: 82px;
  }

  .brand-logo {
    width: 205px;
  }

  .primary-nav {
    gap: 18px;
  }

  .primary-nav > a:not(.nav-cta) {
    font-size: 0.77rem;
  }

  .nav-cta {
    min-height: 44px;
    padding: 0 18px;
  }

  .hero {
    grid-template-columns: 1fr 0.72fr;
    min-height: 680px;
    padding-top: 124px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 4.1vw, 3.8rem);
  }

  .audience-track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }

  .team-grid {
    cursor: grab;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .profile-card {
    flex: 0 0 clamp(330px, 41vw, 430px);
    scroll-snap-align: start;
  }

  .profile-copy {
    padding: 30px;
  }

  .reviews-grid {
    cursor: grab;
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .review-card {
    flex: 0 0 clamp(310px, 37vw, 390px);
    scroll-snap-align: start;
  }

  .contact-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .entrelacos-header {
    height: 76px;
    position: absolute;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 32;
  }

  .primary-nav {
    align-items: stretch;
    background: var(--white);
    box-shadow: 0 24px 50px rgba(2, 82, 79, 0.12);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 16px;
    padding: 22px;
    position: absolute;
    right: 16px;
    top: 68px;
  }

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

  .primary-nav > a:not(.nav-cta) {
    border-bottom: 1px solid var(--line);
    font-size: 0.91rem;
    padding: 13px 4px;
  }

  .nav-cta {
    margin-top: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 125px;
  }

  .hero::before {
    top: 102px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-media {
    min-height: 540px;
  }

  .section-heading,
  .audience-heading,
  .space-intro {
    align-items: start;
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .space-gallery {
    grid-auto-rows: 260px;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-reception,
  .gallery-facade,
  .gallery-movimento,
  .gallery-travessia,
  .gallery-infantil-wide,
  .gallery-infantil-tall {
    grid-column: auto;
    grid-row: span 2;
  }

  .gallery-infantil-wide {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .gallery-facade {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .team-heading {
    align-items: start;
    grid-template-columns: 1fr;
    margin-bottom: 44px;
  }

  .team-grid {
    margin-right: clamp(-112px, -7vw, -24px);
    padding-right: clamp(24px, 7vw, 112px);
  }

  .profile-card:last-child {
    max-width: none;
  }

  .reviews-heading {
    align-items: start;
    grid-template-columns: 1fr auto;
  }

  .reviews-heading > div:first-child {
    grid-column: 1 / -1;
  }

  .reviews-grid {
    margin-right: clamp(-112px, -7vw, -24px);
    padding-right: clamp(24px, 7vw, 112px);
  }

  .entrelacos-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-self: end;
  }

  .entrelacos-footer > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 2.7rem);
  }

  .entrelacos-header {
    padding: 0 20px;
  }

  .brand-logo {
    width: 178px;
  }

  .hero {
    min-height: 0;
    padding: 108px 20px 44px;
  }

  .hero::before {
    left: 20px;
    width: 42px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.75rem);
    margin: 20px 0 24px;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    margin-top: 22px;
    min-height: 420px;
  }

  .hero-media::before {
    inset: 12px 12px -12px -12px;
  }

  .hero-location {
    bottom: 18px;
    left: 16px;
    min-width: 220px;
    padding: 15px 17px;
  }

  .section {
    padding: 60px 20px;
  }

  .section-heading,
  .audience-heading,
  .space-intro {
    margin-bottom: 40px;
  }

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

  .specialty-card,
  .specialty-card:nth-child(odd),
  .specialty-card:nth-child(even) {
    border-right: 0;
    gap: 18px;
    grid-template-columns: 30px 1fr 24px;
    min-height: 0;
    padding: 34px 0;
  }

  .essence-band {
    min-height: 112px;
    padding: 25px 20px;
  }

  .essence-band p {
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: 1.15rem;
    gap: 14px 18px;
    justify-content: flex-start;
  }

  .essence-band i {
    height: 5px;
    margin-top: 10px;
    width: 5px;
  }

  .space-gallery {
    display: flex;
    flex-direction: column;
  }

  .space-photo {
    aspect-ratio: 0.9;
  }

  .gallery-infantil-wide {
    aspect-ratio: 1.2;
  }

  .gallery-facade {
    aspect-ratio: 1.2;
  }

  .audience-track {
    display: flex;
    margin-right: -20px;
    overflow-x: auto;
    padding-bottom: 18px;
    scroll-snap-type: x mandatory;
  }

  .audience-card {
    flex: 0 0 74vw;
    scroll-snap-align: start;
  }

  .profile-card {
    grid-column: auto;
  }

  .profile-image {
    min-height: 0;
  }

  .team-grid {
    margin-right: -20px;
    padding-right: 20px;
  }

  .profile-card {
    flex: 0 0 82vw;
  }

  .profile-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .profile-copy {
    padding: 30px 24px 36px;
  }

  .bio-modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }

  .bio-modal {
    border-radius: 22px 22px 0 0;
    height: 93vh;
    height: 93dvh;
    max-height: 93vh;
    max-height: 93dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .bio-modal-close {
    right: 18px;
    top: 18px;
  }

  .bio-modal-layout {
    display: block;
    height: auto;
    min-height: 100%;
  }

  .bio-modal-identity {
    display: grid;
    gap: 9px 20px;
    grid-template-columns: 104px minmax(0, 1fr);
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 54px 24px 28px;
  }

  .bio-modal-image {
    grid-row: 1 / 3;
    margin: 0;
    max-height: none;
  }

  .bio-modal-role,
  .bio-modal-identity h2 {
    grid-column: 2;
  }

  .bio-modal-role {
    padding-right: 40px;
  }

  .bio-modal-identity h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    margin: 2px 0 8px;
  }

  .bio-modal-content {
    overflow: visible;
    padding: 34px 24px 46px;
  }

  .bio-modal-content > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .reviews-section {
    padding: 60px 20px;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
  }

  .reviews-heading > div:first-child {
    grid-column: auto;
  }

  .reviews-heading .button {
    width: 100%;
  }

  .reviews-grid {
    margin-right: -20px;
    padding-right: 20px;
  }

  .review-card {
    flex: 0 0 84vw;
  }

  .review-card {
    min-height: 235px;
    padding: 28px 24px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 75px 20px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .map-wrap {
    grid-column: auto;
    height: 400px;
    min-height: 0;
  }

  .entrelacos-footer {
    gap: 22px;
    grid-template-columns: 1fr;
    padding: 50px 20px 95px;
  }

  .footer-links {
    justify-self: start;
  }

  .entrelacos-footer > small,
  .entrelacos-footer > p {
    grid-column: auto;
  }

  .whatsapp-float {
    bottom: 14px;
    right: 14px;
  }
}

/* Integração com a página em tela cheia do Elementor. */
.elementor-widget-entrelacos_site_oficial,
.elementor-widget-entrelacos_site_oficial > .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
}

/* Rompe a largura padrão de conteúdo do Elementor e ocupa toda a janela. */
.elementor-widget-entrelacos_site_oficial {
  left: 50% !important;
  max-width: 100vw !important;
  position: relative !important;
  transform: translateX(-50%) !important;
  width: 100vw !important;
}

.elementor-widget-entrelacos_site_oficial > .elementor-widget-container,
.elementor-widget-entrelacos_site_oficial .entrelacos-site {
  max-width: none !important;
  width: 100% !important;
}

.entrelacos-site {
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

/* Classes exclusivas evitam as regras de cabeçalho/rodapé do tema ativo. */
.entrelacos-site > .entrelacos-header,
.entrelacos-site > .entrelacos-footer {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  width: 100% !important;
}
