/* Camila Resende ? layout minimalista inspirado em cl?nica/Medico */
:root {
  --c-primary: #3f5660;
  --c-secondary: #6f8a91;
  --c-muted: #bac6ca;
  --c-bg: #ffffff;
  --c-soft: #f5f8f8;
  --c-line: #dce5e7;
  --c-text: #203139;
  --c-text-soft: #52676f;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --max-site: 1180px;
  --focus-ring: 3px solid rgba(111, 138, 145, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--c-primary);
  color: #fff;
  z-index: 10000;
  border-radius: 6px;
}
.skip-link:focus {
  left: 0.5rem;
  outline: var(--focus-ring);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--c-primary);
  text-underline-offset: 3px;
}
a:hover {
  color: var(--c-secondary);
}

.top-contact {
  background: var(--c-primary);
  color: #fff;
  font-size: 0.92rem;
}

.top-contact-inner {
  max-width: var(--max-site);
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  display: flex;
  justify-content: flex-end;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.top-contact a {
  color: #fff;
  text-decoration: none;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-site);
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  max-height: 54px;
  width: auto;
}

.brand img.is-hidden,
.brand-text.is-hidden {
  display: none !important;
}

.brand-text {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem;
}

.site-nav a {
  display: inline-block;
  padding: 0.65rem 0.9rem;
  font-weight: 700;
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  text-decoration: none;
  color: var(--c-text);
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--c-primary);
  border-bottom-color: var(--c-secondary);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c-line);
  padding: 0.45rem 0.55rem;
  cursor: pointer;
}
.nav-toggle:focus-visible {
  outline: var(--focus-ring);
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 14px;
  background:
    linear-gradient(var(--c-primary), var(--c-primary)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--c-primary), var(--c-primary)) 0 6px / 100% 2px no-repeat,
    linear-gradient(var(--c-primary), var(--c-primary)) 0 12px / 100% 2px no-repeat;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    width: 100%;
  }
  .site-nav.is-open {
    display: block;
    padding-top: 0.75rem;
  }
  .site-nav ul {
    flex-direction: column;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .site-nav {
    flex-basis: 100%;
  }
}

/* Slide estilo Medico + cards de a??o abaixo do banner */
.hero-peek {
  background: #dff3f2;
}

.hero-peek-stage {
  max-width: 100%;
}

.hero-slide {
  max-width: var(--max-site);
  margin: 0 auto;
}

.hero-slide-media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-slide-media .hero-img,
.hero-slide-media picture .hero-img {
  height: min(620px, var(--hero-h));
  object-fit: cover;
}

.hero-layout-left .hero-slide-panel {
  left: 0;
  right: auto;
  justify-content: flex-start;
  text-align: left;
}

.hero-layout-left .hero-slide-media {
  left: auto;
  right: 1.25rem;
}

.hero-layout-right .hero-slide-panel {
  left: auto;
  right: 0;
  justify-content: flex-end;
}

.hero-layout-right .hero-slide-media {
  left: 1.25rem;
  right: auto;
}

.hero-layout-center .hero-slide-panel {
  left: 50%;
  right: auto;
  width: min(560px, 90vw);
  transform: translateX(-50%);
  justify-content: center;
}

.hero-layout-center .hero-slide-media {
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0.22;
}

.hero-text-left {
  text-align: left;
}

.hero-text-center {
  text-align: center;
}

.hero-text-right {
  text-align: right;
}

.hero-text-center .hero-desc,
.hero-text-center .hero-sub {
  margin-left: auto;
  margin-right: auto;
}

.hero-text-right .hero-desc,
.hero-text-right .hero-sub {
  margin-left: auto;
}

.hero-title {
  color: #111b20;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.hero-sub {
  font-weight: 700;
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  order: -1;
}

.hero-slide-copy {
  display: flex;
  flex-direction: column;
}

.hero-desc {
  color: #34474f;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(63, 86, 96, 0.38);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, background 0.2s ease;
}

.hero-arrow span {
  display: block;
  line-height: 1;
  font-size: 2rem;
  margin-top: -2px;
}

.hero-arrow-prev {
  left: 1.5rem;
}

.hero-arrow-next {
  right: 1.5rem;
}

.hero-peek:hover .hero-arrow,
.hero-arrow:focus-visible {
  opacity: 1;
}

.hero-arrow:hover {
  background: var(--c-primary);
}

.home-action-cards {
  max-width: var(--max-site);
  margin: clamp(2rem, 4vw, 3rem) auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.6rem);
}

.home-action-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  background: #eef9f4;
  border: 1px solid var(--c-line);
  overflow: hidden;
}

.home-action-card:nth-child(2) {
  background: #f6efe4;
}

.home-action-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
}

.home-action-card-copy {
  padding: clamp(1.2rem, 3vw, 2rem);
  align-self: center;
}

.home-action-card h2 {
  margin: 0 0 0.65rem;
  color: #111b20;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
  font-weight: 800;
}

.home-action-card p {
  margin: 0 0 1rem;
  color: #445861;
  line-height: 1.5;
}

.home-action-card .button {
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .hero-slide-media,
  .hero-layout-left .hero-slide-media,
  .hero-layout-right .hero-slide-media,
  .hero-layout-center .hero-slide-media {
    left: auto;
    right: auto;
    opacity: 1;
  }

  .hero-layout-center .hero-slide-panel {
    left: auto;
    width: auto;
    transform: none;
  }

  .hero-arrow {
    display: none;
  }

  .home-action-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .home-action-card {
    grid-template-columns: 1fr;
  }
}

/* FINAL SERVICES EDITOR ROUNDING */
:root {
  --soft-radius: 14px;
}

.button,
.home-action-card,
.home-action-card img,
.home-service-link,
.input,
.support-panel-inner {
  border-radius: var(--soft-radius);
}

.home-services-carousel {
  position: relative;
}

.home-services-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 6rem) / 5);
  grid-template-columns: none !important;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.2rem 0.15rem 0.8rem;
}

.home-services-grid::-webkit-scrollbar {
  display: none;
}

.home-service-card {
  scroll-snap-align: start;
}

.home-service-link {
  min-height: auto;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  color: var(--c-primary);
  text-decoration: none;
}

.home-service-link:hover,
.home-service-link:focus-visible {
  color: var(--c-secondary);
  background: transparent !important;
  text-decoration: underline;
}

.home-services-arrow {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--c-primary);
  box-shadow: 0 10px 24px rgba(63, 86, 96, 0.14);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.home-services-prev {
  left: -0.35rem;
}

.home-services-next {
  right: -0.35rem;
}

.home-about-copy,
.home-about-copy p,
.prose-site p {
  text-align: justify;
}

@media (max-width: 1020px) {
  .home-services-grid {
    grid-auto-columns: calc((100% - 3rem) / 3);
  }
}

@media (max-width: 680px) {
  .home-services-grid {
    grid-auto-columns: calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 420px) {
  .home-services-grid {
    grid-auto-columns: 100%;
  }
}

/* FINAL SERVICES EDITOR ROUNDING */
:root {
  --soft-radius: 14px;
}

.button,
.home-action-card,
.home-action-card img,
.home-service-link,
.input,
.support-panel-inner {
  border-radius: var(--soft-radius);
}

.home-services-carousel {
  position: relative;
}

.home-services-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 6rem) / 5);
  grid-template-columns: none !important;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.2rem 0.15rem 0.8rem;
}

.home-services-grid::-webkit-scrollbar {
  display: none;
}

.home-service-card {
  scroll-snap-align: start;
}

.home-service-link {
  min-height: auto;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  color: var(--c-primary);
  text-decoration: none;
}

.home-service-link:hover,
.home-service-link:focus-visible {
  color: var(--c-secondary);
  background: transparent !important;
  text-decoration: underline;
}

.home-services-arrow {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--c-primary);
  box-shadow: 0 10px 24px rgba(63, 86, 96, 0.14);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.home-services-prev {
  left: -0.35rem;
}

.home-services-next {
  right: -0.35rem;
}

.home-about-copy,
.home-about-copy p,
.prose-site p {
  text-align: justify;
}

@media (max-width: 1020px) {
  .home-services-grid {
    grid-auto-columns: calc((100% - 3rem) / 3);
  }
}

@media (max-width: 680px) {
  .home-services-grid {
    grid-auto-columns: calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 420px) {
  .home-services-grid {
    grid-auto-columns: 100%;
  }
}

/* FINAL HOME SECTIONS AND MOBILE SIDEBAR */
.home-services {
  max-width: var(--max-site);
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: 0 1.25rem;
  text-align: center;
}

.home-services h2,
.home-about-copy h2 {
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  color: #111b20;
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
  font-weight: 800;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.home-service-card {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.home-service-card img {
  width: clamp(116px, 12vw, 148px);
  height: clamp(116px, 12vw, 148px);
  border-radius: 50%;
  object-fit: cover;
  background: #f4f6f6;
  border: 10px solid #f7f8f8;
}

.home-service-card h3 {
  margin: 0;
  color: #1e2e35;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 800;
}

.home-service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.38rem 0.82rem;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  background: transparent;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-service-link:hover,
.home-service-link:focus-visible {
  background: var(--c-primary);
  color: #fff;
}

.home-about-section {
  max-width: var(--max-site);
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.home-about-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  background: #eef3f4;
}

.home-about-copy {
  max-width: 640px;
}

.home-about-copy h2 {
  margin-bottom: 1rem;
}

.home-about-copy p {
  color: var(--c-text-soft);
  line-height: 1.75;
}

.mobile-nav-head {
  display: none;
}

@media (max-width: 1020px) {
  .home-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .mobile-nav-head {
    position: absolute;
    top: 1.1rem;
    left: 1.2rem;
    right: 1rem;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .mobile-nav-head img {
    width: min(190px, 70%);
    max-height: 62px;
    object-fit: contain;
    object-position: left center;
  }

  .mobile-nav-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(63, 86, 96, 0.14);
    border-radius: 50%;
    background: #f5f8f8;
    color: var(--c-primary);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
  }

  .site-nav {
    display: block !important;
    width: min(312px, 84vw) !important;
    box-shadow: 18px 0 48px rgba(30, 46, 53, 0.13);
  }

  .site-nav.is-open {
    display: block !important;
    padding-top: 6rem !important;
  }

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

  .home-about-image img {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .home-services-grid {
    grid-template-columns: 1fr;
  }
}

/* FINAL HOME SECTIONS AND MOBILE SIDEBAR */
.home-services {
  max-width: var(--max-site);
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: 0 1.25rem;
  text-align: center;
}

.home-services h2,
.home-about-copy h2 {
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  color: #111b20;
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
  font-weight: 800;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.home-service-card {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.home-service-card img {
  width: clamp(116px, 12vw, 148px);
  height: clamp(116px, 12vw, 148px);
  border-radius: 50%;
  object-fit: cover;
  background: #f4f6f6;
  border: 10px solid #f7f8f8;
}

.home-service-card h3 {
  margin: 0;
  color: #1e2e35;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 800;
}

.home-service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.38rem 0.82rem;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  background: transparent;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-service-link:hover,
.home-service-link:focus-visible {
  background: var(--c-primary);
  color: #fff;
}

.home-about-section {
  max-width: var(--max-site);
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.home-about-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  background: #eef3f4;
}

.home-about-copy {
  max-width: 640px;
}

.home-about-copy h2 {
  margin-bottom: 1rem;
}

.home-about-copy p {
  color: var(--c-text-soft);
  line-height: 1.75;
}

.mobile-nav-head {
  display: none;
}

@media (max-width: 1020px) {
  .home-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .mobile-nav-head {
    position: absolute;
    top: 1.1rem;
    left: 1.2rem;
    right: 1rem;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .mobile-nav-head img {
    width: min(190px, 70%);
    max-height: 62px;
    object-fit: contain;
    object-position: left center;
  }

  .mobile-nav-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(63, 86, 96, 0.14);
    border-radius: 50%;
    background: #f5f8f8;
    color: var(--c-primary);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
  }

  .site-nav {
    width: min(312px, 84vw) !important;
    box-shadow: 18px 0 48px rgba(30, 46, 53, 0.13);
  }

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

  .home-about-image img {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .home-services-grid {
    grid-template-columns: 1fr;
  }
}
*** End of File

/* FINAL HOME SECTIONS AND MOBILE SIDEBAR */
.home-services {
  max-width: var(--max-site);
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: 0 1.25rem;
  text-align: center;
}

.home-services h2,
.home-about-copy h2 {
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  color: #111b20;
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
  font-weight: 800;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.home-service-card {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.home-service-card img {
  width: clamp(116px, 12vw, 148px);
  height: clamp(116px, 12vw, 148px);
  border-radius: 50%;
  object-fit: cover;
  background: #f4f6f6;
  border: 10px solid #f7f8f8;
}

.home-service-card h3 {
  margin: 0;
  color: #1e2e35;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 800;
}

.home-service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.38rem 0.82rem;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  background: transparent;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-service-link:hover,
.home-service-link:focus-visible {
  background: var(--c-primary);
  color: #fff;
}

.home-about-section {
  max-width: var(--max-site);
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.home-about-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  background: #eef3f4;
}

.home-about-copy {
  max-width: 640px;
}

.home-about-copy h2 {
  margin-bottom: 1rem;
}

.home-about-copy p {
  color: var(--c-text-soft);
  line-height: 1.75;
}

.mobile-nav-head {
  display: none;
}

@media (max-width: 1020px) {
  .home-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .mobile-nav-head {
    position: absolute;
    top: 1.1rem;
    left: 1.2rem;
    right: 1rem;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .mobile-nav-head img {
    width: min(190px, 70%);
    max-height: 62px;
    object-fit: contain;
    object-position: left center;
  }

  .mobile-nav-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(63, 86, 96, 0.14);
    border-radius: 50%;
    background: #f5f8f8;
    color: var(--c-primary);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
  }

  .site-nav {
    width: min(312px, 84vw) !important;
    box-shadow: 18px 0 48px rgba(30, 46, 53, 0.13);
  }

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

  .home-about-image img {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .home-services-grid {
    grid-template-columns: 1fr;
  }
}

/* FINAL: se??es gerenci?veis da home */
.home-services {
  max-width: var(--max-site);
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: 0 1.25rem;
  text-align: center;
}

.home-services h2,
.home-about-copy h2 {
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  color: #111b20;
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
  font-weight: 800;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.home-service-card {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.home-service-card img {
  width: clamp(116px, 12vw, 148px);
  height: clamp(116px, 12vw, 148px);
  border-radius: 50%;
  object-fit: cover;
  background: #f4f6f6;
  border: 10px solid #f7f8f8;
}

.home-service-card h3 {
  margin: 0;
  color: #1e2e35;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 800;
}

.home-service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.38rem 0.82rem;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  background: transparent;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-service-link:hover,
.home-service-link:focus-visible {
  background: var(--c-primary);
  color: #fff;
}

.home-about-section {
  max-width: var(--max-site);
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.home-about-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  background: #eef3f4;
}

.home-about-copy {
  max-width: 640px;
}

.home-about-copy h2 {
  margin-bottom: 1rem;
}

.home-about-copy p {
  color: var(--c-text-soft);
  line-height: 1.75;
}

.mobile-nav-head {
  display: none;
}

@media (max-width: 1020px) {
  .home-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .mobile-nav-head {
    position: absolute;
    top: 1.1rem;
    left: 1.2rem;
    right: 1rem;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .mobile-nav-head img {
    width: min(190px, 70%);
    max-height: 62px;
    object-fit: contain;
    object-position: left center;
  }

  .mobile-nav-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(63, 86, 96, 0.14);
    border-radius: 50%;
    background: #f5f8f8;
    color: var(--c-primary);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
  }

  .site-nav {
    width: min(312px, 84vw) !important;
    box-shadow: 18px 0 48px rgba(30, 46, 53, 0.13);
  }

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

  .home-about-image img {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .home-services-grid {
    grid-template-columns: 1fr;
  }
}

/* FINAL: footer organizado, atendimento fixo e menu mobile em sidebar */
.footer-grid {
  align-items: flex-start;
  gap: clamp(1.5rem, 4vw, 3.2rem);
}

.footer-col-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo-wrap img {
  width: min(280px, 100%) !important;
  max-width: 280px !important;
  max-height: 110px !important;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer-brand {
  display: none !important;
}

.footer-contact-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #e8eef0;
  text-decoration: none;
  line-height: 1.35;
}

.footer-links a,
.footer-col-links a,
.site-footer .footer-links a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

@media (min-width: 768px) {
  .floating-actions {
    position: fixed !important;
    left: 1.25rem !important;
    right: auto !important;
    bottom: 1.25rem !important;
    z-index: 5000 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .floating-actions .fab-help {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .floating-actions .fab-wa,
  .floating-actions .fab-ig {
    display: none !important;
  }

  .support-panel {
    position: fixed !important;
    left: 1rem !important;
    right: auto !important;
    bottom: 5.25rem !important;
    z-index: 5001 !important;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: min(300px, 82vw) !important;
    height: 100dvh !important;
    flex-basis: auto !important;
    padding: 6rem 1.2rem 1.5rem !important;
    background: #fff !important;
    border: 0 !important;
    border-right: 1px solid rgba(63, 86, 96, 0.12) !important;
    transform: translateX(-105%) !important;
    transition: transform 0.28s ease !important;
    z-index: 2200 !important;
  }

  .site-nav.is-open {
    transform: translateX(0) !important;
  }

  .site-nav ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .site-nav a {
    border: 0 !important;
    border-bottom: 1px solid rgba(63, 86, 96, 0.10) !important;
    border-radius: 0 !important;
    padding: 1rem 0.15rem !important;
    background: transparent !important;
    color: var(--c-text) !important;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--c-primary) !important;
    padding-left: 0.7rem !important;
    background: #f5f8f8 !important;
  }

  .nav-toggle {
    z-index: 2301 !important;
  }
}

/* Overrides finais de layout: footer, atendimento e menu mobile */
.footer-grid {
  align-items: flex-start;
  gap: clamp(1.5rem, 4vw, 3.2rem);
}

.footer-col-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo-wrap img {
  width: min(280px, 100%) !important;
  max-width: 280px !important;
  max-height: 110px !important;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer-contact-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #e8eef0;
  text-decoration: none;
  line-height: 1.35;
}

.footer-contact-list a:hover {
  color: #fff;
}

.footer-brand {
  display: none !important;
}

.footer-links a,
.footer-col-links a,
.site-footer .footer-links a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

@media (min-width: 768px) {
  .floating-actions {
    position: fixed !important;
    left: 1.25rem !important;
    right: auto !important;
    bottom: 1.25rem !important;
    z-index: 5000 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .floating-actions .fab-help {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .floating-actions .fab-wa,
  .floating-actions .fab-ig {
    display: none !important;
  }

  .support-panel {
    position: fixed !important;
    left: 1rem !important;
    right: auto !important;
    bottom: 5.25rem !important;
    z-index: 5001 !important;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: min(300px, 82vw) !important;
    height: 100dvh !important;
    flex-basis: auto !important;
    padding: 6rem 1.2rem 1.5rem !important;
    background: #fff !important;
    border: 0 !important;
    border-right: 1px solid rgba(63, 86, 96, 0.12) !important;
    transform: translateX(-105%) !important;
    transition: transform 0.28s ease !important;
    z-index: 2200 !important;
  }

  .site-nav.is-open {
    transform: translateX(0) !important;
  }

  .site-nav ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .site-nav a {
    border: 0 !important;
    border-bottom: 1px solid rgba(63, 86, 96, 0.10) !important;
    border-radius: 0 !important;
    padding: 1rem 0.15rem !important;
    background: transparent !important;
    color: var(--c-text) !important;
    transition: padding 0.2s ease, color 0.2s ease, background 0.2s ease;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--c-primary) !important;
    padding-left: 0.7rem !important;
    background: #f5f8f8 !important;
  }

  .nav-toggle {
    z-index: 2301 !important;
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Ajustes finais de footer, atendimento fixo e menu mobile */
.site-footer {
  overflow: visible;
}

.footer-grid {
  align-items: flex-start;
  gap: clamp(1.5rem, 4vw, 3.2rem);
}

.footer-col-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo-wrap img {
  width: min(280px, 100%);
  max-height: 110px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer-brand {
  display: none !important;
}

.footer-contact-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #e8eef0;
  text-decoration: none;
  line-height: 1.35;
}

.footer-contact-list a:hover {
  color: #fff;
}

.footer-links a,
.footer-col-links a,
.site-footer .footer-links a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.footer-col-links li + li {
  margin-top: 0.35rem;
}

@media (min-width: 768px) {
  .floating-actions {
    position: fixed !important;
    left: 1.25rem !important;
    right: auto !important;
    bottom: 1.25rem !important;
    z-index: 5000 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .floating-actions .fab-help {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .support-panel {
    position: fixed !important;
    left: 1rem !important;
    right: auto !important;
    bottom: 5.25rem !important;
    z-index: 5001 !important;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: min(300px, 82vw) !important;
    height: 100dvh !important;
    padding: 6rem 1.2rem 1.5rem !important;
    background: #fff !important;
    border-right: 1px solid var(--c-line) !important;
    transform: translateX(-105%) !important;
    transition: transform 0.28s ease !important;
    z-index: 2200 !important;
  }

  .site-nav.is-open {
    transform: translateX(0) !important;
  }

  .site-nav ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }

  .site-nav a {
    border: 0 !important;
    border-bottom: 1px solid rgba(63, 86, 96, 0.10) !important;
    padding: 1rem 0.15rem !important;
    background: transparent !important;
    color: var(--c-text) !important;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--c-primary) !important;
    padding-left: 0.7rem !important;
    background: #f5f8f8 !important;
  }

  .nav-toggle {
    z-index: 2301 !important;
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Corre??es finais solicitadas */
.brand img {
  max-height: 68px;
  max-width: 270px;
  object-fit: contain;
}

.footer-logo-wrap img {
  max-width: 230px;
  max-height: 80px;
  object-fit: contain;
}

.home-action-card .button:hover,
.home-action-card .button:focus-visible {
  background: transparent;
  border-color: var(--c-primary);
  color: var(--c-primary);
}

@media (min-width: 768px) {
  .floating-actions {
    left: 1.25rem;
    right: auto;
    bottom: 1.25rem;
    z-index: 2000;
  }

  .floating-actions .fab-help {
    display: inline-flex;
    visibility: visible;
    opacity: 1;
  }

  .support-panel {
    left: 1rem;
    right: auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    flex-wrap: nowrap;
  }

  .brand img {
    max-height: 58px;
    max-width: 260px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2200;
    display: block;
    width: min(320px, 86vw);
    height: 100vh;
    padding: 6.5rem 1.15rem 1.5rem;
    background: #fff;
    border-right: 1px solid var(--c-line);
    transform: translateX(-105%);
    transition: transform 0.28s ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
    padding-top: 6.5rem;
  }

  .site-nav ul {
    gap: 0.3rem;
  }

  .site-nav a {
    border: 0;
    border-bottom: 1px solid var(--c-line);
    padding: 0.95rem 0.2rem;
    font-size: 1rem;
    letter-spacing: 0.06em;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    padding-left: 0.6rem;
    background: #f5f8f8;
    border-bottom-color: var(--c-line);
  }

  .nav-toggle {
    position: relative;
    z-index: 2300;
    background: #fff;
  }
}

.site-main {
  min-height: 45vh;
}

.hero-peek {
  position: relative;
  --hero-h: clamp(520px, 72vh, 720px);
  min-height: var(--hero-h);
  margin-bottom: clamp(3rem, 7vw, 5rem);
  background: var(--c-soft);
  border-bottom: 1px solid var(--c-line);
}

.hero-peek-stage {
  max-width: var(--max-site);
  margin: 0 auto;
  position: relative;
  min-height: var(--hero-h);
  overflow: hidden;
  background: transparent;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

.hero-slide-media {
  position: absolute;
  top: 0;
  right: 1.25rem;
  bottom: 0;
  width: min(49%, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  height: min(560px, calc(var(--hero-h) - 5rem));
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.hero-img--void {
  background: url("/img/psicanalise.jpg") center / cover no-repeat, var(--c-muted);
}

.hero-slide-scrim {
  display: none;
}

.hero-slide-panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vw, 4.6rem) 1.25rem;
  pointer-events: none;
}

.hero-slide-copy {
  max-width: 540px;
  color: var(--c-text);
  pointer-events: auto;
}

.hero-pos-left .hero-slide-panel {
  justify-content: flex-start;
}
.hero-pos-center .hero-slide-panel {
  justify-content: center;
}
.hero-pos-right .hero-slide-panel {
  justify-content: flex-end;
}

.hero-text-left {
  text-align: left;
}
.hero-text-center {
  text-align: center;
}
.hero-text-right {
  text-align: right;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 0.98;
  color: var(--c-primary);
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  margin: 0 0 1rem;
  color: var(--c-text);
}

.hero-desc {
  margin: 0 0 1.4rem;
  font-size: 1.05rem;
  max-width: 46ch;
  color: var(--c-text-soft);
}

.hero-text-center .hero-desc {
  margin-left: auto;
  margin-right: auto;
}
.hero-text-right .hero-desc {
  margin-left: auto;
}

.hero-cta-row {
  margin: 0;
}

.hero-peek-rail {
  position: absolute;
  right: auto;
  left: calc((100% - min(100%, var(--max-site))) / 2 + 1.25rem);
  bottom: 2rem;
  display: flex;
  gap: 0.45rem;
  z-index: 10;
}

.hero-rail-dot {
  position: relative;
  width: 32px;
  height: 3px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: var(--c-muted);
  cursor: pointer;
}
.hero-rail-dot:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.hero-rail-dot.is-active {
  background: var(--c-primary);
}

.hero-rail-line {
  display: none;
}

@media (max-width: 767px) {
  .hero-peek {
    --hero-h: min(72vh, 720px);
  }
  .hero-peek-rail {
    top: auto;
    bottom: 1rem;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
  }
  .hero-slide-scrim {
    background: linear-gradient(180deg, rgba(30, 42, 48, 0.35), rgba(30, 42, 48, 0.65));
  }
}

.page-wrap {
  max-width: var(--max-site);
  margin: 0 auto;
  padding: 0 1.25rem clamp(3rem, 7vw, 5rem);
}

.section-flow > * + * {
  margin-top: var(--space-section);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--c-primary);
  margin: 0 0 0.75rem;
}

.page-header-block {
  margin-bottom: 2rem;
}

.page-lead {
  font-size: 1.15rem;
  color: var(--c-text-soft);
  margin: 0;
}

.prose-site h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-primary);
  margin: 0 0 1rem;
  line-height: 1.05;
}
.prose-site h3 {
  margin: 1.5rem 0 0.5rem;
  color: var(--c-text);
}
.prose-site p,
.prose-site li {
  color: var(--c-text-soft);
}

.lead {
  font-size: 1.12rem;
}

.home-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: var(--c-primary);
}

.card-soft {
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--c-line);
}

.home-modalidades h2 {
  margin-top: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.pill-list li {
  background: #fff;
  border: 1px solid var(--c-line);
  color: var(--c-text);
  padding: 0.55rem 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.demand-list {
  columns: 2;
  gap: 2rem;
}
@media (max-width: 600px) {
  .demand-list {
    columns: 1;
  }
}

.page-image-placeholder {
  margin: 0;
  min-height: 360px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  background: url("/img/psicanalise.jpg") center / cover no-repeat, var(--c-muted);
}

.faq-item + .faq-item {
  margin-top: 1rem;
}

.blog-grid {
  display: grid;
  gap: 1.25rem;
}
.blog-card-title {
  font-family: var(--font-display);
  margin: 0.75rem 0 0.5rem;
}
.blog-card-title a {
  text-decoration: none;
  color: var(--c-primary);
}
.blog-card-img-link img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}
.blog-card-date {
  font-size: 0.9rem;
  color: var(--c-secondary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.35rem;
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}
.button:focus-visible {
  outline: var(--focus-ring);
}
.button-primary {
  background: var(--c-primary);
  color: #fff;
}
.button-primary:hover {
  background: var(--c-secondary);
}
.button-secondary {
  background: transparent;
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.site-footer {
  background: var(--c-primary);
  color: #e8eef0;
  margin-top: clamp(3rem, 8vw, 5rem);
}
.footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo-wrap img {
  margin-bottom: 0.75rem;
}

.footer-heading {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: #e8eef0;
}
.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-copy {
  margin: 0;
  font-size: 0.95rem;
}
.footer-lock {
  color: #e8eef0;
  opacity: 0.85;
}
.footer-lock:hover {
  opacity: 1;
  color: #fff;
}

/* Barra flutuante ? mobile 3 ?cones; desktop s? atendimento */
.floating-actions {
  position: fixed;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fab-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary);
  color: #fff;
  border: none;
  text-decoration: none;
  cursor: pointer;
}
.fab-link:focus-visible {
  outline: var(--focus-ring);
}
.fab-help {
  background: var(--c-secondary);
}

@media (min-width: 768px) {
  .floating-actions {
    right: 1.25rem;
    bottom: 1.25rem;
    flex-direction: column;
  }
  .floating-actions .fab-wa,
  .floating-actions .fab-ig {
    display: none;
  }
}

@media (max-width: 767px) {
  .floating-actions {
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
    background: rgba(246, 248, 249, 0.92);
    border-top: 1px solid rgba(186, 198, 202, 0.65);
    gap: 2rem;
  }
  .fab-link {
    width: 48px;
    height: 48px;
  }
  body.site-body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}

.support-panel {
  position: fixed;
  right: 1rem;
  bottom: 5.25rem;
  width: min(340px, calc(100vw - 2rem));
  max-height: min(420px, calc(100vh - 6rem));
  z-index: 950;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .support-panel {
    right: 0.75rem;
    left: 0.75rem;
    bottom: calc(5rem + env(safe-area-inset-bottom));
    width: auto;
    max-height: min(380px, calc(100vh - 8rem));
  }
}

.support-panel[hidden] {
  display: none !important;
}

.support-panel-inner {
  position: relative;
  padding: 1rem 1.1rem;
  background: #fff;
  border-radius: 0;
  border: 1px solid var(--c-line);
  overflow-y: auto;
  overscroll-behavior: contain;
  max-height: inherit;
}

.support-close {
  position: absolute;
  top: 0.35rem;
  right: 0.5rem;
  border: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--c-secondary);
}

.support-intro {
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--c-primary);
}

.support-wa-big {
  width: 100%;
  margin-bottom: 1rem;
}

.support-hr {
  border: none;
  border-top: 1px solid rgba(186, 198, 202, 0.75);
  margin: 1rem 0;
}

.form-label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text-soft);
}
.form-label span {
  display: block;
  margin-bottom: 0.25rem;
}

.input {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0;
  border: 1px solid var(--c-line);
  font-family: inherit;
  font-size: 1rem;
}
.input:focus-visible {
  outline: var(--focus-ring);
  border-color: var(--c-secondary);
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0.5rem 0 0;
  font-weight: 600;
  color: var(--c-primary);
}

.post-header {
  margin-bottom: 1.5rem;
}
.post-meta {
  color: var(--c-secondary);
}
.post-featured {
  margin: 0 0 1.5rem;
}
.post-featured img {
  width: 100%;
}

.page-article {
  display: grid;
  gap: clamp(2.4rem, 6vw, 4.5rem);
}

.home-intro,
.home-cta,
.home-modalidades,
.page-article > section:not(.home-intro):not(.home-cta):not(.home-modalidades) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 44%);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.5rem, 4vw, 3.2rem) 0;
  border-bottom: 1px solid var(--c-line);
}

.home-intro::after,
.home-cta::after,
.home-modalidades::after {
  content: "";
  min-height: 360px;
  background: url("/img/psicanalise.jpg") center / cover no-repeat, var(--c-muted);
}

.home-cta::after {
  order: -1;
}

.page-article > .page-image-placeholder {
  display: none;
}

.page-article > section:nth-of-type(even) .page-image-placeholder {
  order: -1;
}

.prose-site > section:not(.home-intro):not(.home-cta):not(.home-modalidades) .page-image-placeholder,
.page-article > section:not(.home-intro):not(.home-cta):not(.home-modalidades) .page-image-placeholder {
  min-height: 380px;
}

.home-intro .lead {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  color: var(--c-primary);
}

.home-formats {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.home-formats li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--c-line);
}

.demand-list {
  columns: initial;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.6rem;
  padding: 0;
  list-style: none;
}

.demand-list li {
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--c-line);
  color: var(--c-primary);
  font-weight: 700;
}

.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.blog-card {
  border: 1px solid var(--c-line);
}

@media (max-width: 900px) {
  .top-contact-inner {
    justify-content: center;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: block;
    width: min(312px, 84vw);
  }

  .site-nav.is-open {
    display: block;
    padding-top: 6rem;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    border: 0;
    border-bottom: 1px solid rgba(63, 86, 96, 0.10);
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    flex-basis: 100%;
  }

  .hero-slide-media,
  .hero-slide-panel {
    position: static;
    width: auto;
  }

  .hero-peek,
  .hero-peek-stage {
    min-height: auto;
  }

  .hero-slide {
    position: static;
    display: none;
  }

  .hero-slide.is-active {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-slide-panel {
    padding: 2rem 1.25rem;
  }

  .hero-slide-media {
    padding: 0 1.25rem 2rem;
  }

  .hero-img {
    height: 340px;
  }

  .hero-peek-rail {
    display: none;
  }

  .home-intro,
  .home-cta,
  .home-modalidades,
  .page-article > section:not(.home-intro):not(.home-cta):not(.home-modalidades) {
    grid-template-columns: 1fr;
  }

  .home-cta::after {
    order: initial;
  }
}

/* Overrides finais: slide + atendimento estilo refer?ncia enviada */
.hero-peek {
  --hero-h: clamp(520px, 72vh, 720px);
  background: #dff3f2;
  border-bottom: 1px solid var(--c-line);
}

.hero-peek-stage {
  max-width: 100%;
  background: transparent;
}

.hero-slide {
  max-width: var(--max-site);
  margin: 0 auto;
}

.hero-slide-media {
  top: 0;
  bottom: 0;
  width: min(49%, 560px);
}

.hero-layout-left .hero-slide-panel {
  left: 0;
  right: auto;
  width: 50%;
  justify-content: flex-start;
}

.hero-layout-left .hero-slide-media {
  left: auto;
  right: 1.25rem;
}

.hero-layout-right .hero-slide-panel {
  left: auto;
  right: 0;
  width: 50%;
  justify-content: flex-end;
}

.hero-layout-right .hero-slide-media {
  left: 1.25rem;
  right: auto;
}

.hero-layout-center .hero-slide-panel {
  left: 50%;
  right: auto;
  width: min(560px, 90vw);
  transform: translateX(-50%);
  justify-content: center;
}

.hero-layout-center .hero-slide-media {
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0.22;
}

.hero-slide-media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-slide-media .hero-img,
.hero-slide-media picture .hero-img {
  height: min(620px, var(--hero-h));
  object-fit: cover;
}

.hero-slide-copy {
  display: flex;
  flex-direction: column;
  max-width: 560px;
  color: var(--c-text);
}

.hero-title {
  font-family: var(--font-body);
  color: #111b20;
  font-size: clamp(2rem, 4.1vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.hero-sub {
  order: -1;
  color: var(--c-primary);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-desc {
  color: #34474f;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(63, 86, 96, 0.38);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, background 0.2s ease;
}

.hero-arrow span {
  display: block;
  line-height: 1;
  font-size: 2rem;
  margin-top: -2px;
}

.hero-arrow-prev {
  left: 1.5rem;
}

.hero-arrow-next {
  right: 1.5rem;
}

.hero-peek:hover .hero-arrow,
.hero-arrow:focus-visible {
  opacity: 1;
}

.hero-arrow:hover {
  background: var(--c-primary);
}

.home-action-cards {
  max-width: var(--max-site);
  margin: clamp(2rem, 4vw, 3rem) auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.6rem);
}

.home-action-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  background: #eef9f4;
  border: 1px solid var(--c-line);
  overflow: hidden;
}

.home-action-card:nth-child(2) {
  background: #f6efe4;
}

.home-action-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
}

.home-action-card-copy {
  padding: clamp(1.2rem, 3vw, 2rem);
  align-self: center;
}

.home-action-card h2 {
  margin: 0 0 0.65rem;
  color: #111b20;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
  font-weight: 800;
}

.home-action-card p {
  margin: 0 0 1rem;
  color: #445861;
  line-height: 1.5;
}

.home-action-card .button {
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .hero-slide-media,
  .hero-layout-left .hero-slide-media,
  .hero-layout-right .hero-slide-media,
  .hero-layout-center .hero-slide-media {
    left: auto;
    right: auto;
    opacity: 1;
  }

  .hero-layout-center .hero-slide-panel {
    left: auto;
    width: auto;
    transform: none;
  }

  .hero-arrow {
    display: none;
  }

  .home-action-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .home-action-card {
    grid-template-columns: 1fr;
  }
}

/* FINAL SERVICES EDITOR ROUNDING - real end override */
:root {
  --soft-radius: 14px;
}

.button,
.home-action-card,
.home-action-card img,
.home-service-link,
.input,
.support-panel-inner {
  border-radius: var(--soft-radius);
}

.home-services-carousel {
  position: relative;
}

.home-services-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 6rem) / 5);
  grid-template-columns: none !important;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.2rem 0.15rem 0.8rem;
}

.home-services-grid::-webkit-scrollbar {
  display: none;
}

.home-service-card {
  scroll-snap-align: start;
}

.home-service-link {
  min-height: auto;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  color: var(--c-primary);
  text-decoration: none;
}

.home-service-link:hover,
.home-service-link:focus-visible {
  color: var(--c-secondary);
  background: transparent !important;
  text-decoration: underline;
}

.home-services-arrow {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--c-primary);
  box-shadow: 0 10px 24px rgba(63, 86, 96, 0.14);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.home-services-prev {
  left: -0.35rem;
}

.home-services-next {
  right: -0.35rem;
}

.home-about-copy,
.home-about-copy p,
.prose-site p {
  text-align: justify;
}

@media (max-width: 1020px) {
  .home-services-grid {
    grid-auto-columns: calc((100% - 3rem) / 3);
  }
}

@media (max-width: 680px) {
  .home-services-grid {
    grid-auto-columns: calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 420px) {
  .home-services-grid {
    grid-auto-columns: 100%;
  }
}

/* FINAL CTA AND FORMATS */
.home-schedule-cta {
  max-width: var(--max-site);
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: 0 1.25rem;
}

.home-schedule-cta-inner {
  min-height: 260px;
  border-radius: 18px;
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  background:
    linear-gradient(90deg, rgba(246, 248, 248, 0.94), rgba(246, 248, 248, 0.70)),
    url('/img/atendimento-default.svg') right center / contain no-repeat,
    #eef6f6;
  overflow: hidden;
}

.home-schedule-cta.has-parallax .home-schedule-cta-inner {
  background-attachment: scroll, fixed, scroll;
}

.home-schedule-cta-text {
  max-width: 720px;
}

.home-schedule-cta-text p {
  margin: 0;
  color: #1e2e35;
  font-size: clamp(1.45rem, 3.2vw, 2.6rem);
  line-height: 1.18;
  font-weight: 800;
  text-align: left;
}

.home-formats-section {
  max-width: var(--max-site);
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: 0 1.25rem;
}

.home-formats-section h2 {
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  color: #111b20;
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
}

.home-formats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.4rem);
}

.home-format-card {
  min-height: 150px;
  border-radius: 18px;
  padding: 1.35rem;
  background: #f3f8f8;
  border: 1px solid rgba(63, 86, 96, 0.10);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.8rem;
}

.home-format-card:nth-child(2n) {
  background: #f8f1e9;
}

.home-format-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--c-primary);
  background: rgba(255, 255, 255, 0.78);
}

.home-format-icon svg {
  width: 24px;
  height: 24px;
}

.home-format-card h3 {
  margin: 0;
  color: #1e2e35;
  font-size: 1.05rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .home-schedule-cta-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .home-formats-grid {
    grid-template-columns: 1fr;
  }
}

/* FINAL CTA REFINEMENT AND BRAND VARIATION */
.home-action-card:nth-child(2) {
  background: #8f5f62 !important;
  border-color: #8f5f62 !important;
}

.home-action-card:nth-child(2) h2,
.home-action-card:nth-child(2) p {
  color: #fff !important;
}

.home-action-card:nth-child(2) .button {
  background: #fff;
  border-color: #fff;
  color: #8f5f62;
}

.home-action-card:nth-child(2) .button:hover,
.home-action-card:nth-child(2) .button:focus-visible {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.home-schedule-cta-inner {
  min-height: 420px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(247, 242, 238, 0.98) 0%, rgba(247, 242, 238, 0.94) 46%, rgba(247, 242, 238, 0.12) 70%),
    var(--cta-img) right center / contain no-repeat,
    #f7f2ee;
}

.home-schedule-cta.has-parallax .home-schedule-cta-inner {
  background-attachment: scroll, fixed, scroll;
}

.home-schedule-cta-copy {
  max-width: 620px;
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.home-schedule-cta-eyebrow p,
.home-schedule-cta-title p,
.home-schedule-cta-description p {
  margin: 0;
  text-align: left;
}

.home-schedule-cta-eyebrow {
  color: #111b20;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-schedule-cta-title {
  color: #111b20;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home-schedule-cta-title p {
  font-size: inherit;
  line-height: inherit;
}

.home-schedule-cta-description {
  max-width: 520px;
  color: #33464e;
  line-height: 1.65;
}

.home-schedule-cta-description p {
  font-size: inherit;
  line-height: inherit;
}

.home-schedule-cta .button {
  margin-top: 0.35rem;
}

.home-formats-grid {
  gap: 1.15rem;
}

.home-format-card {
  min-height: 170px;
  border: 1px solid rgba(63, 86, 96, 0.10);
  box-shadow: 0 18px 42px rgba(63, 86, 96, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-format-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(63, 86, 96, 0.11);
}

.home-format-card:nth-child(2n) {
  background: #8f5f62 !important;
  color: #fff;
}

.home-format-card:nth-child(2n) h3,
.home-format-card:nth-child(2n) .home-format-icon {
  color: #fff;
}

.home-format-card:nth-child(2n) .home-format-icon {
  background: rgba(255, 255, 255, 0.16);
}

.home-format-card:nth-child(2n + 1) {
  background: #eef6f6 !important;
}

.home-format-icon {
  width: 52px;
  height: 52px;
  color: var(--c-primary);
  box-shadow: 0 10px 22px rgba(63, 86, 96, 0.08);
}

.home-format-icon svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 900px) {
  .home-schedule-cta-inner {
    grid-template-columns: 1fr;
    min-height: 360px;
    background:
      linear-gradient(90deg, rgba(247, 242, 238, 0.97), rgba(247, 242, 238, 0.76)),
      var(--cta-img) right bottom / min(70%, 420px) no-repeat,
      #f7f2ee;
  }
}

/* FINAL FORMAT CARDS WITH IMAGES */
.home-formats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

.home-format-card,
.home-format-card:nth-child(2n),
.home-format-card:nth-child(2n + 1) {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #fff !important;
  border: 1px solid rgba(63, 86, 96, 0.10);
  box-shadow: 0 18px 45px rgba(63, 86, 96, 0.08);
  display: grid;
  align-content: stretch;
  gap: 0;
}

.home-format-image {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #eef6f6;
}

.home-format-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.25s ease;
}

.home-format-card:hover .home-format-image img {
  transform: scale(1.08);
}

.home-format-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(63, 86, 96, 0.02), rgba(63, 86, 96, 0.36));
}

.home-format-icon {
  position: absolute;
  left: 1rem;
  bottom: -22px;
  z-index: 2;
  width: 52px;
  height: 52px;
  background: #fff !important;
  color: var(--c-primary) !important;
  border: 1px solid rgba(63, 86, 96, 0.08);
  box-shadow: 0 12px 28px rgba(32, 49, 57, 0.14);
}

.home-format-copy {
  padding: 2.2rem 1.1rem 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.home-format-card h3,
.home-format-card:nth-child(2n) h3 {
  color: #1e2e35;
  font-size: 1.08rem;
}

.home-format-card p {
  margin: 0;
  color: #526970;
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: left;
}

.home-format-card:nth-child(4n + 2) .home-format-copy,
.home-format-card:nth-child(4n + 4) .home-format-copy {
  border-top: 4px solid #8f5f62;
}

.home-format-card:nth-child(4n + 2) .home-format-icon,
.home-format-card:nth-child(4n + 4) .home-format-icon {
  color: #8f5f62 !important;
}

.admin-format-preview {
  border-radius: 12px;
  overflow: hidden;
  background: #eef3f4;
  border: 1px solid var(--adm-border);
}

.admin-format-preview img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1100px) {
  .home-formats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-formats-grid {
    grid-template-columns: 1fr;
  }
}

/* FINAL PUBLIC FORMAT MEDIA MODE */
.home-format-icon-only {
  min-height: 150px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eef6f6, #f7f2ee);
}

.home-format-icon-only .home-format-icon {
  position: static;
  width: 64px;
  height: 64px;
}

.home-format-card:not(:has(.home-format-image)):not(:has(.home-format-icon-only)) .home-format-copy {
  padding-top: 1.2rem;
}

/* FINAL FORMATS IMAGE FIT AND CTA */
.home-format-card {
  overflow: hidden !important;
}

.home-format-image {
  width: 100%;
  height: 150px;
  margin: 0;
  border: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0;
}

.home-format-image img {
  width: 100% !important;
  height: 100% !important;
  min-width: 100%;
  object-fit: cover;
  object-position: center;
}

.home-format-image::after {
  display: none;
}

.home-format-card:nth-child(4n + 2) .home-format-copy,
.home-format-card:nth-child(4n + 4) .home-format-copy {
  border-top: 0 !important;
}

.home-format-copy {
  border-top: 0 !important;
}

.home-formats-action {
  margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
  text-align: center !important;
}

.home-formats-action .button {
  min-width: 190px;
}

/* FINAL BUTTON HOVER CONTRAST */
.home-schedule-cta .button:hover,
.home-schedule-cta .button:focus-visible,
.home-formats-action .button:hover,
.home-formats-action .button:focus-visible {
  background: transparent !important;
  border-color: var(--c-primary) !important;
  color: var(--c-primary) !important;
}

/* FINAL FORMAT TEXT ALIGNMENT */
.home-format-copy {
  min-height: 168px;
  padding: 1rem 1.1rem 1.25rem !important;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 0.65rem;
}

.home-format-card h3 {
  margin: 0 !important;
  min-height: 1.35em;
  line-height: 1.25;
}

.home-format-card p {
  margin: 0 !important;
  align-self: start;
  line-height: 1.6;
}

.home-format-image + .home-format-copy {
  padding-top: 0.95rem !important;
}

/* FINAL MODERN FAQ PAGE */
.faq-page {
  max-width: var(--max-site);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) 1.25rem;
}

.faq-hero {
  border-radius: 22px;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, #eef6f6, #f7f2ee);
  border: 1px solid rgba(63, 86, 96, 0.10);
}

.faq-kicker {
  margin: 0 0 0.75rem;
  color: var(--c-primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.faq-hero h1 {
  margin: 0 0 1.25rem;
  color: #111b20;
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.faq-intro {
  max-width: 860px;
}

.faq-intro p,
.faq-intro li,
.faq-modern-answer p,
.faq-modern-answer li {
  text-align: justify;
}

.faq-category-grid {
  margin: clamp(1.5rem, 4vw, 2.5rem) 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-category-grid a {
  border-radius: 16px;
  padding: 1rem 1.15rem;
  background: #fff;
  color: var(--c-primary);
  border: 1px solid rgba(63, 86, 96, 0.12);
  box-shadow: 0 16px 38px rgba(63, 86, 96, 0.06);
  text-decoration: none;
  font-weight: 900;
}

.faq-category-list {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.faq-category-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.faq-category-heading span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #8f5f62;
  color: #fff;
  font-weight: 900;
}

.faq-category-heading h2 {
  margin: 0;
  color: #111b20;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.faq-accordion {
  display: grid;
  gap: 0.8rem;
}

.faq-modern-item {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(63, 86, 96, 0.10);
  box-shadow: 0 14px 34px rgba(63, 86, 96, 0.055);
  overflow: hidden;
}

.faq-modern-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.25rem;
  color: #1e2e35;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-modern-item summary::after {
  content: "+";
  color: var(--c-primary);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-modern-item[open] summary::after {
  content: "-";
}

.faq-modern-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--c-text-soft);
}

@media (max-width: 780px) {
  .faq-category-grid {
    grid-template-columns: 1fr;
  }
}

/* FINAL FAQ ADMIN */
.admin-faq-category {
  display: grid;
  gap: 1rem;
}

.admin-faq-item {
  background: #fff;
  border: 1px solid var(--adm-border);
  border-radius: 14px;
  overflow: hidden;
}

/* FINAL FAQ INTRO WITH TOPIC CARDS */
.faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: #fff !important;
  box-shadow: 0 20px 55px rgba(63, 86, 96, 0.07);
}

.faq-hero-image {
  margin: 0;
  align-self: stretch;
  border-radius: 18px;
  overflow: hidden;
  background: #eef6f6;
}

.faq-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.faq-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.15rem 0 1.5rem;
}

.faq-topic-grid span {
  border: 1px solid rgba(63, 86, 96, 0.12);
  border-radius: 999px;
  padding: 0.68rem 0.85rem;
  background: #fff;
  color: #31454e;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 12px 28px rgba(63, 86, 96, 0.075);
  text-align: center;
}

.faq-intro-lead p {
  margin-bottom: 0;
  text-align: left;
}

.faq-intro p,
.faq-intro li {
  text-align: justify;
}

@media (max-width: 900px) {
  .faq-hero {
    grid-template-columns: 1fr;
  }

  .faq-hero-image {
    order: -1;
  }

  .faq-hero-image img {
    min-height: 260px;
  }

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

@media (max-width: 520px) {
  .faq-topic-grid {
    grid-template-columns: 1fr;
  }
}

/* FINAL FAQ CLICKABLE IMAGE */
.faq-hero-image a {
  display: block;
  height: 100%;
  color: inherit;
}

.faq-hero-image a:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 4px;
}

/* FINAL FAQ NAV AND TOPIC POLISH */
.faq-hero {
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.faq-topic-grid span {
  border-radius: 14px !important;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  line-height: 1.25;
  padding: 0.7rem 0.9rem !important;
}

.faq-category-grid {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  transition: padding 0.2s ease;
}

.faq-category-grid.is-compact {
  padding: 0.35rem 0;
}

.faq-category-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 16px;
  background: #eef6f6;
  color: #31454e;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, min-height 0.2s ease, transform 0.2s ease;
}

.faq-category-grid.is-compact a {
  min-height: 42px;
  padding-block: 0.65rem;
  font-size: 0.9rem;
}

.faq-category-grid a:hover,
.faq-category-grid a:focus-visible,
.faq-category-grid a.is-active {
  background: #8f5f62;
  color: #fff;
  transform: translateY(-1px);
}

.faq-category {
  scroll-margin-top: 110px;
}

@media (max-width: 780px) {
  .faq-category-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr)) !important;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .faq-category-grid::-webkit-scrollbar {
    display: none;
  }

  .faq-category-grid a {
    white-space: normal;
    min-height: 48px;
    font-size: 0.86rem;
  }

  .faq-category-grid.is-compact a {
    min-height: 38px;
    font-size: 0.78rem;
  }
}

/* FINAL STICKY HEADER AND FAQ NAV OFFSET */
:root {
  --header-sticky-offset: 86px;
}

.site-header {
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-inner {
  transition: padding 0.22s ease;
}

.brand img {
  transition: max-height 0.22s ease;
}

.site-body.is-scrolled {
  --header-sticky-offset: 58px;
}

.site-body.is-scrolled .site-header {
  box-shadow: 0 10px 28px rgba(32, 49, 57, 0.08);
}

.site-body.is-scrolled .header-inner {
  padding-top: 0.48rem !important;
  padding-bottom: 0.48rem !important;
}

.site-body.is-scrolled .brand img {
  max-height: 40px !important;
}

.faq-category-grid {
  top: var(--header-sticky-offset) !important;
  z-index: 90 !important;
  padding: 0.6rem 0 !important;
}

.site-body.is-scrolled .faq-category-grid,
.faq-category-grid.is-compact {
  padding: 0.25rem 0 !important;
}

.site-body.is-scrolled .faq-category-grid a,
.faq-category-grid.is-compact a {
  min-height: 34px !important;
  padding: 0.45rem 0.8rem !important;
  font-size: 0.82rem !important;
  border-radius: 12px !important;
}

.faq-category {
  scroll-margin-top: calc(var(--header-sticky-offset) + 74px) !important;
}

@media (max-width: 900px) {
  :root {
    --header-sticky-offset: 74px;
  }

  .site-body.is-scrolled {
    --header-sticky-offset: 52px;
  }

  .site-body.is-scrolled .brand img {
    max-height: 34px !important;
  }

  .site-body.is-scrolled .faq-category-grid a,
  .faq-category-grid.is-compact a {
    min-height: 32px !important;
    padding: 0.38rem 0.7rem !important;
    font-size: 0.74rem !important;
  }
}

/* FINAL FAQ NAV SIZE STATES */
.faq-category-grid {
  top: calc(var(--header-sticky-offset) + 10px) !important;
  padding: 0.9rem 0 !important;
}

.faq-category-grid a {
  min-height: 64px !important;
  padding: 1rem 1.2rem !important;
  font-size: 0.96rem !important;
  border-radius: 16px !important;
}

.site-body.is-scrolled .faq-category-grid,
.faq-category-grid.is-compact {
  padding: 0.3rem 0 !important;
}

.site-body.is-scrolled .faq-category-grid a,
.faq-category-grid.is-compact a {
  min-height: 38px !important;
  padding: 0.48rem 0.8rem !important;
  font-size: 0.8rem !important;
  border-radius: 12px !important;
}

@media (max-width: 900px) {
  .faq-category-grid {
    top: calc(var(--header-sticky-offset) + 8px) !important;
  }

  .faq-category-grid a {
    min-height: 54px !important;
    padding: 0.8rem 0.9rem !important;
    font-size: 0.86rem !important;
  }

  .site-body.is-scrolled .faq-category-grid a,
  .faq-category-grid.is-compact a {
    min-height: 34px !important;
    padding: 0.38rem 0.68rem !important;
    font-size: 0.72rem !important;
  }
}

/* FINAL FAQ NAV COMPACT ONLY WHEN STICKY */
.site-body.is-scrolled .faq-category-grid:not(.is-compact),
.faq-category-grid:not(.is-compact) {
  padding: 0.95rem 0 !important;
}

.site-body.is-scrolled .faq-category-grid:not(.is-compact) a,
.faq-category-grid:not(.is-compact) a {
  min-height: 68px !important;
  padding: 1.05rem 1.25rem !important;
  font-size: 1rem !important;
  border-radius: 16px !important;
}

.faq-category-grid.is-compact {
  padding: 0.3rem 0 !important;
}

.faq-category-grid.is-compact a {
  min-height: 38px !important;
  padding: 0.48rem 0.8rem !important;
  font-size: 0.8rem !important;
  border-radius: 12px !important;
}

@media (max-width: 900px) {
  .site-body.is-scrolled .faq-category-grid:not(.is-compact) a,
  .faq-category-grid:not(.is-compact) a {
    min-height: 56px !important;
    padding: 0.85rem 0.95rem !important;
    font-size: 0.88rem !important;
  }

  .faq-category-grid.is-compact a {
    min-height: 34px !important;
    padding: 0.38rem 0.68rem !important;
    font-size: 0.72rem !important;
  }
}

/* FINAL FAQ TOP SPACING */
.faq-page {
  padding-top: clamp(1rem, 2.5vw, 2rem) !important;
}

/* FINAL ABOUT PAGE */
.about-page {
  max-width: var(--max-site);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) 1.25rem clamp(4rem, 8vw, 6rem);
  display: grid;
  gap: clamp(3rem, 7vw, 5rem);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.about-kicker,
.about-section-head span {
  display: inline-block;
  margin: 0 0 0.75rem;
  color: var(--c-primary);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.about-hero h1,
.about-section-head h2,
.about-cta-copy h2 {
  margin: 0 0 1rem;
  color: #111b20;
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.about-hero-copy p,
.about-demands-text p,
.about-cta-copy p {
  text-align: justify;
}

.about-hero-image,
.about-demands-image,
.about-cta-image {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #eef6f6;
  box-shadow: 0 22px 55px rgba(63, 86, 96, 0.10);
}

.about-hero-image img,
.about-demands-image img,
.about-cta-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.about-section-head {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.about-credential-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-credential-card {
  border-radius: 18px;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid rgba(63, 86, 96, 0.10);
  box-shadow: 0 16px 38px rgba(63, 86, 96, 0.07);
  text-align: center;
}

.about-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef6f6;
  color: var(--c-primary);
}

.about-card-icon svg {
  width: 28px;
  height: 28px;
}

.about-credential-card h3 {
  margin: 0 0 0.55rem;
  color: #1e2e35;
  font-size: 1rem;
}

.about-credential-card p {
  margin: 0;
  color: #526970;
  line-height: 1.55;
}

.about-demands {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.about-demand-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.about-demand-list li {
  border-radius: 999px;
  padding: 0.7rem 0.85rem;
  background: #fff;
  border: 1px solid rgba(63, 86, 96, 0.12);
  box-shadow: 0 10px 24px rgba(63, 86, 96, 0.055);
  color: #31454e;
  font-weight: 800;
  text-align: center;
  text-transform: capitalize;
}

.about-cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  border-radius: 24px;
  padding: clamp(1.2rem, 4vw, 2rem);
  background: linear-gradient(135deg, #eef6f6, #f7f2ee);
}

.about-cta-image img {
  min-height: 300px;
}

.about-cta-copy .button {
  margin-top: 0.6rem;
}

.admin-about-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 1020px) {
  .about-credential-grid,
  .about-demand-list,
  .admin-about-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero,
  .about-demands,
  .about-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .about-credential-grid,
  .about-demand-list,
  .admin-about-topic-grid {
    grid-template-columns: 1fr;
  }
}

/* FINAL ABOUT REFINEMENTS */
.about-hero {
  align-items: stretch;
}

.about-hero-image {
  height: 100%;
}

.about-hero-image img {
  min-height: 100%;
  height: 100%;
}

.about-credentials {
  margin-inline: calc(50% - 50vw);
  padding: clamp(2.5rem, 6vw, 4.5rem) calc(50vw - 50% + 1.25rem);
  background: linear-gradient(135deg, rgba(238, 246, 246, 0.72), rgba(247, 242, 238, 0.58));
}

.about-credential-card {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.about-card-icon {
  margin-bottom: 0.45rem;
}

.about-credential-card h3 {
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.about-credential-card p {
  text-align: justify;
  line-height: 1.42;
}

.about-demand-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.1rem;
}

.about-demand-list li {
  border-radius: 0;
  padding: 0.25rem 0 0.25rem 2.2rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: left;
  position: relative;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.about-demand-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #eef6f6;
  box-shadow: inset 0 0 0 1px rgba(63, 86, 96, 0.10);
}

.about-demand-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 50% 50% 50% 0;
  background: var(--c-primary);
  rotate: -45deg;
}

@media (max-width: 1020px) {
  .about-hero {
    align-items: start;
  }

  .about-hero-image img {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .about-demand-list {
    grid-template-columns: 1fr;
  }
}

/* FINAL ABOUT REQUEST ENFORCED */
.about-page .about-hero {
  align-items: stretch !important;
}

.about-page .about-hero-image {
  align-self: stretch !important;
  height: auto !important;
  min-height: 0 !important;
  display: flex !important;
}

.about-page .about-hero-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
}

.about-page .about-credentials {
  margin-inline: calc(50% - 50vw) !important;
  padding: clamp(2rem, 5vw, 3.5rem) calc(50vw - 50% + 1.25rem) !important;
  background: linear-gradient(135deg, rgba(238, 246, 246, 0.82), rgba(247, 242, 238, 0.64)) !important;
}

.about-page .about-credential-grid {
  align-items: stretch !important;
}

.about-page .about-credential-card {
  min-height: 0 !important;
  padding: 1.05rem 1rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0.25rem !important;
  text-align: center !important;
}

.about-page .about-card-icon {
  margin: 0 auto 0.35rem !important;
  width: 48px !important;
  height: 48px !important;
}

.about-page .about-credential-card h3 {
  margin: 0 0 0.2rem !important;
  line-height: 1.18 !important;
}

.about-page .about-credential-card p {
  margin: 0 !important;
  text-align: justify !important;
  line-height: 1.34 !important;
  font-size: 0.95rem !important;
}

.about-page .about-demand-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.55rem 1.35rem !important;
  margin-top: 1.2rem !important;
}

.about-page .about-demand-list li {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0.18rem 0 0.18rem 2.05rem !important;
  min-height: 30px !important;
  text-align: left !important;
  justify-content: flex-start !important;
  color: #31454e !important;
  position: relative !important;
}

.about-page .about-demand-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 23px !important;
  height: 23px !important;
  transform: translateY(-50%) !important;
  border-radius: 50% !important;
  background: rgba(63, 86, 96, 0.10) !important;
  box-shadow: inset 0 0 0 1px rgba(63, 86, 96, 0.12) !important;
}

.about-page .about-demand-list li::after {
  content: "" !important;
  position: absolute !important;
  left: 7px !important;
  top: 50% !important;
  width: 9px !important;
  height: 9px !important;
  transform: translateY(-50%) rotate(-45deg) !important;
  border-radius: 50% 50% 50% 0 !important;
  background: var(--c-primary) !important;
}

@media (max-width: 1020px) {
  .about-page .about-hero {
    align-items: start !important;
  }

  .about-page .about-hero-image img {
    min-height: 340px !important;
  }
}

@media (max-width: 640px) {
  .about-page .about-demand-list {
    grid-template-columns: 1fr !important;
  }
}

/* FINAL ABOUT CREDENTIALS CENTER TEXT */
.about-page .about-credential-card p {
  text-align: center !important;
}

/* FINAL OVERFLOW AND ADMIN RECOVERY */
html,
body.site-body {
  max-width: 100%;
  overflow-x: clip;
}

.about-page .about-credentials {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: clamp(1.25rem, 4vw, 2rem) !important;
  padding-right: clamp(1.25rem, 4vw, 2rem) !important;
  border-radius: 24px !important;
}

/* FINAL ABOUT DEMANDS IMAGE AND ICON */
.about-page .about-demands {
  align-items: stretch !important;
}

.about-page .about-demands-image {
  align-self: stretch !important;
  display: flex !important;
  height: auto !important;
}

.about-page .about-demands-image a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  color: inherit !important;
}

.about-page .about-demands-image a:focus-visible {
  outline: var(--focus-ring) !important;
  outline-offset: 4px !important;
}

.about-page .about-demands-image img {
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
}

.about-page .about-demand-list li::before {
  display: grid !important;
  place-items: center !important;
  background: rgba(63, 86, 96, 0.11) !important;
}

.about-page .about-demand-list li::after {
  width: 11px !important;
  height: 11px !important;
  left: 6px !important;
  border-radius: 50% !important;
  transform: translateY(-50%) !important;
  background: radial-gradient(circle at 50% 50%, var(--c-primary) 0 32%, transparent 34% 100%), var(--c-primary) !important;
  clip-path: path('M5.5 0C2.5 0 0 2.5 0 5.5S2.5 11 5.5 11 11 8.5 11 5.5 8.5 0 5.5 0Zm0 2.2a3.3 3.3 0 1 1 0 6.6 3.3 3.3 0 0 1 0-6.6Z') !important;
}

@media (max-width: 1020px) {
  .about-page .about-demands {
    align-items: start !important;
  }

  .about-page .about-demands-image img {
    min-height: 320px !important;
  }
}

/* FINAL ABOUT DEMANDS ARROW ICON */
.about-page .about-demand-list li {
  padding-left: 2rem !important;
}

.about-page .about-demand-list li::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 1rem !important;
  height: 2px !important;
  transform: translateY(-50%) !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--c-primary) !important;
  box-shadow: none !important;
  clip-path: none !important;
}

.about-page .about-demand-list li::after {
  content: "" !important;
  left: 0.58rem !important;
  top: 50% !important;
  width: 0.45rem !important;
  height: 0.45rem !important;
  transform: translateY(-50%) rotate(45deg) !important;
  border-top: 2px solid var(--c-primary) !important;
  border-right: 2px solid var(--c-primary) !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  clip-path: none !important;
  box-shadow: none !important;
}

/* FINAL ABOUT CTA IMAGE FILL */
.about-page .about-cta {
  align-items: stretch !important;
  gap: clamp(1.8rem, 5vw, 4rem) !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.about-page .about-cta-image {
  align-self: stretch !important;
  display: flex !important;
  height: auto !important;
  border-radius: 22px 0 0 22px !important;
  box-shadow: none !important;
}

.about-page .about-cta-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
}

.about-page .about-cta-copy {
  padding: clamp(1.6rem, 5vw, 3rem) clamp(1.4rem, 5vw, 3rem) clamp(1.6rem, 5vw, 3rem) 0 !important;
}

@media (max-width: 860px) {
  .about-page .about-cta {
    gap: 0 !important;
  }

  .about-page .about-cta-image {
    border-radius: 22px 22px 0 0 !important;
  }

  .about-page .about-cta-image img {
    min-height: 260px !important;
  }

  .about-page .about-cta-copy {
    padding: clamp(1.4rem, 6vw, 2rem) !important;
  }
}

/* FINAL ABOUT DEMANDS SVG ARROW ICON */
.about-page .about-demand-list li {
  padding-left: 2.15rem !important;
}

.about-page .about-demand-list li::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 1.1rem !important;
  height: 1.1rem !important;
  transform: translateY(-50%) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--c-primary) !important;
  box-shadow: none !important;
  clip-path: none !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.2 5.2 20 12l-6.8 6.8-1.4-1.4L16.2 13H4v-2h12.2l-4.4-4.4 1.4-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.2 5.2 20 12l-6.8 6.8-1.4-1.4L16.2 13H4v-2h12.2l-4.4-4.4 1.4-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.about-page .about-demand-list li::after {
  display: none !important;
}

/* FINAL HOME ABOUT IMAGE HEIGHT */
.home-about-section {
  align-items: stretch !important;
}

.home-about-image {
  display: flex !important;
  align-self: stretch !important;
  height: auto !important;
}

.home-about-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
}

@media (max-width: 860px) {
  .home-about-image img {
    min-height: 320px !important;
  }
}

/* HOME ATTENDANCE STRIP */
.home-attendance-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--attendance-count, 8), minmax(0, 1fr));
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.home-attendance-item {
  min-height: clamp(86px, 8vw, 124px);
  display: grid;
  place-items: center;
  padding: 1rem;
  color: #fff;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-transform: uppercase;
  background: var(--attendance-color, #3f5660);
}

.home-attendance-item span {
  position: relative;
  z-index: 1;
}

.home-attendance-lead {
  position: relative;
  margin-right: -28px;
  padding-right: 2.3rem;
  background: var(--attendance-color, #263d47);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%);
  z-index: 2;
}

@media (max-width: 860px) {
  .home-attendance-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-attendance-item {
    min-height: 86px;
  }

  .home-attendance-lead {
    grid-column: 1 / -1;
    margin-right: 0;
    padding-right: 1rem;
    clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 50%, calc(100% - 32px) 100%, 0 100%);
  }
}

/* FINAL HOME ATTENDANCE STRIP ADJUSTMENTS */
.hero-peek + .home-attendance-strip {
  margin-top: -1px !important;
}

.hero-peek {
  margin-bottom: 0 !important;
}

.home-attendance-strip {
  margin-top: 0 !important;
  position: relative !important;
  top: -1px !important;
}

.home-attendance-item {
  min-height: clamp(58px, 5.6vw, 82px) !important;
  padding: 0.55rem 0.8rem !important;
  font-size: clamp(0.78rem, 0.92vw, 0.95rem) !important;
}

.home-attendance-lead {
  background: var(--attendance-color, #263d47) !important;
  color: #fff !important;
  font-size: clamp(0.86rem, 1vw, 1.05rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08) !important;
}

.home-attendance-lead::before,
.home-attendance-lead::after {
  content: "" !important;
  position: absolute !important;
  border: 0 !important;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%) !important;
  pointer-events: none !important;
}

.home-attendance-lead::before {
  inset: 5px 7px 5px 5px !important;
  background: #fff !important;
  z-index: 0 !important;
}

.home-attendance-lead::after {
  inset: 6px 8px 6px 6px !important;
  background: var(--attendance-color, #263d47) !important;
  z-index: 0 !important;
}

@media (max-width: 860px) {
  .home-attendance-item {
    min-height: 66px !important;
  }

  .home-attendance-lead {
    clip-path: none !important;
  }

  .home-attendance-lead::before,
  .home-attendance-lead::after {
    display: none !important;
  }
}

/* ATTENDANCES PAGE + MEGAMENU */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
}

.header-inner {
  position: relative;
}

.site-nav-mega-item {
  position: static;
}

.site-megamenu {
  position: absolute;
  left: 50%;
  top: calc(100% - 0.05rem);
  width: min(1040px, calc(100vw - 2rem));
  transform: translateX(-50%) translateY(0);
  padding-top: 0.35rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 1200;
}

.site-nav-mega-item:hover .site-megamenu,
.site-nav-mega-item:focus-within .site-megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-megamenu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(63, 86, 96, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(30, 46, 53, 0.16);
  backdrop-filter: blur(14px);
}

.site-megamenu-card {
  display: flex !important;
  align-items: center;
  gap: 0.72rem;
  padding: 0.62rem !important;
  border: 0 !important;
  border-radius: 16px;
  color: #203139 !important;
  text-decoration: none;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 800 !important;
  transition: background 0.18s ease, transform 0.18s ease;
}

.site-megamenu-card:hover,
.site-megamenu-card:focus-visible {
  background: #eef6f6 !important;
  transform: translateY(-1px);
}

.site-megamenu-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #eef6f6;
  flex: 0 0 auto;
}

.attendances-page,
.attendance-detail-page {
  width: min(var(--max-site), calc(100% - 2.5rem));
  margin: clamp(2.2rem, 6vw, 5rem) auto;
}

.attendances-hero {
  max-width: 820px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.attendances-kicker {
  margin: 0 0 0.6rem;
  color: var(--c-secondary);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.attendances-hero h1,
.attendance-detail-copy h1 {
  margin: 0 0 1rem;
  color: #111b20;
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.96;
}

.attendances-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.3vw, 1.6rem);
}

.attendance-card {
  overflow: hidden;
  border: 1px solid rgba(63, 86, 96, 0.10);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(63, 86, 96, 0.08);
  display: flex;
  flex-direction: column;
}

.attendance-card-image {
  display: block;
  height: 180px;
  overflow: hidden;
  background: #eef6f6;
}

.attendance-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.attendance-card:hover .attendance-card-image img {
  transform: scale(1.04);
}

.attendance-card-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.attendance-card-copy h2 {
  margin: 0 0 0.45rem;
  color: #203139;
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 800;
}

.attendance-card-copy p {
  margin: 0 0 0.9rem;
  color: var(--c-text-soft);
  font-size: 0.96rem;
  line-height: 1.48;
}

.attendance-card-link,
.attendance-back-link {
  color: var(--c-primary);
  font-weight: 900;
  text-decoration: none;
}

.attendance-card-link {
  margin-top: auto;
  display: inline-flex;
  align-self: flex-start;
  padding-top: 0.35rem;
}

.attendance-detail-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  margin-top: 1.2rem;
}

.attendance-detail-image {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  background: #eef6f6;
}

.attendance-detail-image img {
  width: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

@media (max-width: 1020px) {
  .attendances-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-nav-mega-item {
    position: relative;
  }

  .site-megamenu {
    position: static;
    width: auto;
    padding-top: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .site-nav-mega-item:hover .site-megamenu,
  .site-nav-mega-item:focus-within .site-megamenu {
    transform: none;
  }

  .site-nav-mega-item.is-open .site-megamenu,
  .site-nav-mega-item:hover .site-megamenu,
  .site-nav-mega-item:focus-within .site-megamenu {
    display: block;
  }

  .site-megamenu-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.35rem 0 0.7rem 0.8rem;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-megamenu-card {
    padding: 0.55rem 0.2rem !important;
    border-bottom: 0 !important;
    font-size: 0.88rem !important;
  }

  .site-megamenu-card img {
    width: 34px;
    height: 34px;
  }

  .attendance-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .attendances-grid {
    grid-template-columns: 1fr;
  }

  .attendance-card-image {
    height: 220px;
  }
}

/* FINAL HEADER FOOTER CONTACT WIDGET */
.top-contact-inner {
  justify-content: space-between !important;
  gap: 1rem !important;
}

.top-social-links,
.footer-social-links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.top-social-links a,
.footer-social-links a {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
}

.top-social-links a {
  background: rgba(255, 255, 255, 0.13);
}

.footer-social-links a {
  background: rgba(255, 255, 255, 0.12);
}

.top-social-links svg,
.footer-social-links svg {
  width: 17px;
  height: 17px;
}

.top-contact-copy {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-left: auto;
}

.footer-col-brand {
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.footer-logo-wrap img {
  width: min(340px, 100%) !important;
  max-width: 340px !important;
  max-height: 130px !important;
}

@media (min-width: 768px) {
  .floating-actions {
    left: auto !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    width: auto !important;
    background: transparent !important;
    padding: 0 !important;
    flex-direction: column !important;
  }

  .floating-actions .fab-wa,
  .floating-actions .fab-ig {
    display: none !important;
  }

  .floating-actions .fab-help {
    display: inline-flex !important;
  }

  .support-panel {
    left: auto !important;
    right: 1rem !important;
    bottom: 5.25rem !important;
  }
}

@media (max-width: 767px) {
  .floating-actions {
    left: auto !important;
    right: 1rem !important;
    bottom: calc(1rem + env(safe-area-inset-bottom)) !important;
    width: auto !important;
    background: transparent !important;
    padding: 0 !important;
  }

  .floating-actions .fab-wa,
  .floating-actions .fab-ig {
    display: none !important;
  }

  body.site-body {
    padding-bottom: 0 !important;
  }
}

.fab-help {
  width: 62px !important;
  height: 62px !important;
  background: #6f8a91 !important;
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(32, 49, 57, 0.18) !important;
}

.fab-help span {
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.support-panel {
  z-index: 2200 !important;
}

.support-panel-inner {
  width: min(420px, calc(100vw - 5rem)) !important;
  max-height: min(78vh, 680px) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  padding: 1.25rem !important;
  border: 1px solid rgba(63, 86, 96, 0.12) !important;
  border-radius: 24px !important;
  box-shadow: 0 24px 70px rgba(32, 49, 57, 0.18) !important;
}

.support-panel-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding-right: 2rem;
}

.support-whatsapp-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #2f6f58;
  color: #fff;
}

.support-whatsapp-icon svg {
  width: 25px;
  height: 25px;
}

.support-intro {
  margin: 0 0 0.55rem !important;
  color: #203139;
  font-size: 1.15rem;
  font-weight: 900;
}

.support-contact-link {
  display: block;
  color: var(--c-primary);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.45;
}

.support-message {
  margin: 1rem 0 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: #eef6f6;
  color: var(--c-text-soft);
  line-height: 1.45;
}

.support-wa-big,
.support-hr {
  display: none !important;
}

@media (max-width: 900px) {
  .top-contact-inner {
    justify-content: center !important;
  }

  .top-contact-copy {
    justify-content: center;
    margin-left: 0;
  }
}

/* FINAL CONTACT WIDGET REFINEMENT */
.footer-col-brand {
  align-items: center !important;
  text-align: center !important;
  justify-content: flex-start !important;
  gap: 0.35rem !important;
}

.footer-logo-wrap img {
  width: min(460px, 100%) !important;
  max-width: 460px !important;
  max-height: 190px !important;
}

.footer-logo-wrap img {
  margin-bottom: 0.12rem !important;
}

.footer-social-links {
  justify-content: center !important;
  width: 100% !important;
  margin-top: -0.2rem !important;
}

.top-social-links a,
.footer-social-links a {
  background: transparent !important;
}

.top-social-links svg,
.footer-social-links svg {
  width: 22px !important;
  height: 22px !important;
}

.fab-help svg {
  width: 32px !important;
  height: 32px !important;
}

@media (min-width: 768px) {
  .floating-actions {
    right: 1.45rem !important;
    bottom: 1.45rem !important;
  }

  .support-panel {
    right: 4.7rem !important;
    bottom: 6.8rem !important;
  }
}

.support-panel-inner::after {
  content: "" !important;
  position: absolute !important;
  right: 0.65rem !important;
  bottom: -22px !important;
  width: 56px !important;
  height: 44px !important;
  background: #fff !important;
  border-right: 1px solid rgba(63, 86, 96, 0.12) !important;
  border-bottom: 1px solid rgba(63, 86, 96, 0.12) !important;
  clip-path: polygon(0 0, 100% 100%, 0 72%) !important;
  transform: none !important;
  z-index: 0 !important;
}

.support-panel-inner > * {
  position: relative;
  z-index: 1;
}

.support-panel-head {
  display: block !important;
  padding-right: 1.7rem !important;
  text-align: center !important;
}

.support-whatsapp-icon {
  display: none !important;
}

.support-intro {
  text-align: center !important;
  margin-bottom: 0.85rem !important;
}

.support-contact-list {
  display: grid !important;
  gap: 0.45rem !important;
  justify-items: center !important;
}

.support-contact-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
}

.support-contact-link::before {
  content: "" !important;
  width: 1.05rem !important;
  height: 1.05rem !important;
  display: inline-block !important;
  background: currentColor !important;
  flex: 0 0 auto !important;
}

.support-contact-link:first-of-type::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2C10.7 21.4 2.6 13.3 2.6 3.4c0-.7.5-1.2 1.2-1.2h3.5c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.6 4 .1.4 0 .9-.3 1.2l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2C10.7 21.4 2.6 13.3 2.6 3.4c0-.7.5-1.2 1.2-1.2h3.5c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.6 4 .1.4 0 .9-.3 1.2l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.support-contact-link:last-of-type::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Zm0 4-8 5-8-5V6l8 5 8-5v2Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Zm0 4-8 5-8-5V6l8 5 8-5v2Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

/* PSICANALISE PAGE */
.psy-page {
  overflow: hidden;
}

.psy-hero,
.psy-wave-section,
.psy-benefits,
.psy-stages,
.psy-closing {
  width: min(var(--max-site), calc(100% - 2.5rem));
  margin-inline: auto;
}

.psy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.psy-kicker,
.psy-section-head span {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--c-secondary);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.psy-hero h1,
.psy-section-head h2,
.psy-closing h2 {
  margin: 0 0 1rem;
  color: #111b20;
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.96;
}

.psy-hero h2 {
  margin: 0 0 1rem;
  color: #8f5f62;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
}

.psy-hero-image {
  position: relative;
  margin: 0;
  min-height: 460px;
  border-radius: 42px;
  background: radial-gradient(circle at 20% 20%, #eef6f6, #f7f2ee 65%);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(63, 86, 96, 0.12);
}

.psy-hero-image::before {
  content: "";
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  border: 34px solid rgba(63, 86, 96, 0.14);
  border-radius: 50%;
  right: -18%;
  top: -22%;
}

.psy-hero-image img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.psy-floating-icon,
.psy-benefit-card span,
.psy-stage-icon {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #eef6f6;
  color: var(--c-primary);
}

.psy-floating-icon {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  width: 78px;
  height: 78px;
  box-shadow: 0 16px 42px rgba(32, 49, 57, 0.14);
}

.psy-floating-icon svg,
.psy-benefit-card svg,
.psy-stage-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.psy-wave-section {
  position: relative;
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: 38px;
  background: linear-gradient(135deg, #eef6f6, #fff 58%, #f7f2ee);
  box-shadow: 0 22px 70px rgba(63, 86, 96, 0.08);
}

.psy-section-head {
  max-width: 820px;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.psy-cloud-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.psy-cloud-grid h3 {
  margin: 0 0 1rem;
  color: #203139;
}

.psy-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.psy-pill-grid span {
  padding: 0.68rem 0.9rem;
  border: 1px solid rgba(63, 86, 96, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #31454e;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(63, 86, 96, 0.06);
}

.psy-pill-grid.is-warm span {
  background: rgba(143, 95, 98, 0.10);
}

.psy-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 6vw, 4rem);
}

.psy-benefit-card {
  padding: 1.3rem;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(63, 86, 96, 0.08);
  text-align: center;
}

.psy-benefit-card span {
  width: 62px;
  height: 62px;
  margin-bottom: 0.9rem;
}

.psy-benefit-card h3,
.psy-stage-card h3 {
  margin: 0 0 0.55rem;
  color: #203139;
}

.psy-benefit-card p {
  margin: 0;
  color: var(--c-text-soft);
  line-height: 1.55;
}

.psy-stages {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.psy-stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.7rem);
}

.psy-stage-card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 1.1rem;
  align-items: stretch;
  padding: 1rem;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(63, 86, 96, 0.08);
}

.psy-stage-card figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #eef6f6;
}

.psy-stage-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
}

.psy-stage-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 0.8rem;
}

.psy-closing {
  margin-top: clamp(3rem, 7vw, 5rem);
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.psy-closing-card {
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: 38px;
  background: linear-gradient(135deg, #31454e, #3f5660);
  color: #fff;
}

.psy-closing-card h2,
.psy-closing-card .prose-site,
.psy-closing-card .prose-site p {
  color: #fff;
}

@media (max-width: 1040px) {
  .psy-benefits,
  .psy-stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .psy-hero,
  .psy-cloud-grid,
  .psy-stage-card {
    grid-template-columns: 1fr;
  }

  .psy-hero-image,
  .psy-hero-image img {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .psy-benefits,
  .psy-stage-grid {
    grid-template-columns: 1fr;
  }
}

/* PSICANALISE REFINEMENTS */
.psy-hero {
  align-items: stretch !important;
}

.psy-hero h1 {
  font-size: clamp(2.15rem, 4.4vw, 4rem) !important;
  line-height: 1.02 !important;
}

.psy-section-head h2,
.psy-closing h2 {
  font-size: clamp(2rem, 4vw, 3.7rem) !important;
  line-height: 1.04 !important;
}

.psy-hero-image {
  min-height: 0 !important;
  height: 100% !important;
}

.psy-hero-image img {
  min-height: 0 !important;
  height: 100% !important;
}

.psy-wave-section {
  width: auto !important;
  max-width: none !important;
  margin-inline: calc(50% - 50vw) !important;
  padding: clamp(2.2rem, 5vw, 4.2rem) max(1.25rem, calc((100vw - var(--max-site)) / 2)) !important;
  border-radius: 0 !important;
  background: linear-gradient(105deg, rgba(238, 246, 246, 0.94), #fff 56%, rgba(247, 242, 238, 0.9)) !important;
  box-shadow: none !important;
}

.psy-pill-grid {
  gap: 0.8rem !important;
}

.psy-pill-grid span {
  min-width: 132px !important;
  padding: 0.78rem 1rem !important;
  border-radius: 16px !important;
  text-align: center !important;
  box-shadow: 0 12px 28px rgba(63, 86, 96, 0.075) !important;
}

.psy-benefits {
  width: auto !important;
  max-width: none !important;
  margin-inline: calc(50% - 50vw) !important;
  padding: clamp(2rem, 5vw, 3.5rem) max(1.25rem, calc((100vw - var(--max-site)) / 2)) !important;
  background: linear-gradient(135deg, rgba(238, 246, 246, 0.82), rgba(247, 242, 238, 0.64)) !important;
  gap: 1rem !important;
}

.psy-benefit-card {
  min-height: 0 !important;
  padding: 1.05rem 1rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0.25rem !important;
  text-align: center !important;
  border-radius: 22px !important;
}

.psy-benefit-card span {
  width: 48px !important;
  height: 48px !important;
  margin: 0 auto 0.35rem !important;
}

.psy-benefit-card svg {
  width: 25px !important;
  height: 25px !important;
}

.psy-benefit-card h3 {
  margin: 0 0 0.2rem !important;
  line-height: 1.18 !important;
}

.psy-benefit-card p {
  margin: 0 !important;
  text-align: justify !important;
  line-height: 1.34 !important;
  font-size: 0.95rem !important;
}

.psy-closing-card {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr) !important;
  gap: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #31454e, #3f5660) !important;
}

.psy-closing-image {
  margin: 0 !important;
  min-height: 360px !important;
}

.psy-closing-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 360px !important;
  object-fit: cover !important;
  display: block !important;
}

.psy-closing-copy {
  padding: clamp(2rem, 5vw, 4rem) !important;
}

.psy-closing-card .button-primary {
  background: #eef6f6 !important;
  color: #31454e !important;
  border-color: #eef6f6 !important;
}

.psy-closing-card .button-primary:hover,
.psy-closing-card .button-primary:focus-visible {
  background: #fff !important;
  color: #203139 !important;
}

@media (max-width: 860px) {
  .psy-closing-card {
    grid-template-columns: 1fr !important;
  }

  .psy-closing-image,
  .psy-closing-image img {
    min-height: 260px !important;
  }
}

/* ATTENDANCE DETAIL PAGES */
.attendance-detail-page {
  margin-top: clamp(2rem, 5vw, 4rem) !important;
}

.attendance-detail-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(1.3rem, 4vw, 2.5rem);
  align-items: start;
}

.attendance-detail-nav {
  position: sticky;
  top: 92px;
  display: grid;
  overflow: hidden;
  border-radius: 24px;
  background: var(--c-primary);
  box-shadow: 0 20px 54px rgba(63, 86, 96, 0.16);
}

.attendance-detail-nav span,
.attendance-detail-nav a {
  padding: 0.88rem 1rem;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.attendance-detail-nav span {
  background: rgba(255, 255, 255, 0.10);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.attendance-detail-nav a {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.attendance-detail-nav a:hover,
.attendance-detail-nav a:focus-visible,
.attendance-detail-nav a.is-active {
  background: rgba(255, 255, 255, 0.20);
  padding-left: 1.25rem;
}

.attendance-detail-content {
  min-width: 0;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 22px 70px rgba(63, 86, 96, 0.08);
  overflow: hidden;
}

.attendance-detail-hero-image {
  margin: 0;
  background: #eef6f6;
}

.attendance-detail-hero-image img {
  width: 100%;
  height: clamp(280px, 36vw, 460px);
  display: block;
  object-fit: cover;
}

.attendance-detail-copy {
  padding: clamp(1.4rem, 4vw, 2.8rem);
}

.attendance-detail-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.8rem) !important;
  line-height: 1.04 !important;
}

.attendance-detail-copy h2 {
  margin-top: 1.4rem;
  color: #203139;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1.18;
}

.attendance-detail-copy p,
.attendance-detail-copy li {
  text-align: justify;
}

.attendance-detail-lead {
  color: #8f5f62 !important;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.55;
}

.attendance-mobile-detail {
  display: none;
}

.attendance-detail-content,
.attendance-mobile-detail {
  scroll-margin-top: 96px;
}

@media (max-width: 900px) {
  .attendance-detail-shell {
    grid-template-columns: 1fr;
  }

  .attendance-detail-nav {
    position: static;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .attendance-detail-nav span {
    grid-column: auto;
  }

  .attendance-detail-nav a {
    font-size: 1.05rem;
    padding: 1.05rem 1.25rem;
  }

  .attendance-detail-nav a.is-active {
    background: rgba(255, 255, 255, 0.22);
  }

  .attendance-detail-content {
    display: none;
  }

  .attendance-mobile-detail {
    display: block;
    padding: 1rem 1.25rem 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: #fff;
    color: #203139;
  }

  .attendance-mobile-detail figure {
    margin: 0 0 1rem;
    overflow: hidden;
    border-radius: 18px;
    background: #eef6f6;
  }

  .attendance-mobile-detail img {
    width: 100%;
    height: 230px;
    display: block;
    object-fit: cover;
  }

  .attendance-mobile-detail h2 {
    color: #203139;
    font-size: 1.35rem;
    line-height: 1.15;
  }

  .attendance-mobile-detail p,
  .attendance-mobile-detail li {
    color: #42565f;
    text-align: justify;
  }
}

@media (max-width: 560px) {
  .attendance-detail-nav {
    grid-template-columns: 1fr;
  }
}

/* MEGAMENU HOVER BRIDGE */
@media (min-width: 901px) {
  .site-nav-mega-item::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 100% !important;
    height: 1.25rem !important;
    z-index: 1190 !important;
  }

  .site-megamenu {
    top: calc(100% - 0.55rem) !important;
    padding-top: 0.95rem !important;
  }
}

/* MOBILE HERO FULL WIDTH */
@media (max-width: 767px) {
  .hero-peek,
  .hero-peek-stage {
    min-height: auto !important;
  }

  .hero-slide {
    position: static !important;
    display: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .hero-slide.is-active {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .hero-slide-media,
  .hero-layout-left .hero-slide-media,
  .hero-layout-right .hero-slide-media,
  .hero-layout-center .hero-slide-media {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    display: block !important;
  }

  .hero-slide-media picture,
  .hero-slide-media .hero-img,
  .hero-slide-media picture .hero-img {
    width: 100% !important;
    max-width: none !important;
  }

  .hero-slide-media .hero-img,
  .hero-slide-media picture .hero-img {
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
  }

  .hero-slide-panel,
  .hero-layout-left .hero-slide-panel,
  .hero-layout-right .hero-slide-panel,
  .hero-layout-center .hero-slide-panel {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
    padding: 1.7rem 1.25rem 2rem !important;
    display: flex !important;
  }

  .hero-slide-copy {
    width: 100% !important;
    max-width: none !important;
  }
}

/* HOME MOBILE SERVICES AND CTA IMAGE FIT */
.home-schedule-cta-inner {
  position: relative !important;
  overflow: hidden !important;
  background: #f7f2ee !important;
}

.home-schedule-cta-inner::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(90deg, rgba(247, 242, 238, 0.98) 0%, rgba(247, 242, 238, 0.94) 46%, rgba(247, 242, 238, 0.18) 72%) !important;
  pointer-events: none !important;
}

.home-schedule-cta-inner::after {
  content: "" !important;
  position: absolute !important;
  top: -8% !important;
  right: 0 !important;
  bottom: -8% !important;
  z-index: 0 !important;
  width: 45% !important;
  background: var(--cta-img) center center / cover no-repeat !important;
  transform: translate3d(0, var(--cta-parallax-y, 0px), 0) scale(1.06) !important;
  transition: transform 0.08s linear !important;
}

.home-schedule-cta-copy {
  position: relative !important;
  z-index: 2 !important;
}

@media (max-width: 680px) {
  .home-services-grid {
    grid-auto-columns: calc((100% - 0.85rem) / 2) !important;
    gap: 0.85rem !important;
  }

  .home-service-card {
    min-width: 0 !important;
  }

  .home-schedule-cta-inner {
    padding: 2rem 1.5rem !important;
  }

  .home-schedule-cta-inner::before {
    background: linear-gradient(90deg, rgba(247, 242, 238, 0.98) 0%, rgba(247, 242, 238, 0.86) 48%, rgba(247, 242, 238, 0.44) 100%) !important;
  }

  .home-schedule-cta-inner::after {
    left: 0 !important;
    width: 100% !important;
    background-position: center right !important;
  }
}

@media (max-width: 420px) {
  .home-services-grid {
    grid-auto-columns: calc((100% - 0.75rem) / 2) !important;
    gap: 0.75rem !important;
  }
}

/* MOBILE MENU SCROLL FIX */
body.is-menu-open {
  overflow: hidden !important;
}

@media (max-width: 900px) {
  .site-nav {
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 2rem !important;
  }

  .site-nav ul {
    min-height: 0 !important;
  }

  .site-nav-mega-item.is-open .site-megamenu {
    max-height: none !important;
  }
}

/* MOBILE FIXED CONTACT BAR */
@media (max-width: 767px) {
  .floating-actions {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: auto !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    border-top: 1px solid rgba(63, 86, 96, 0.16) !important;
    box-shadow: 0 -10px 28px rgba(32, 49, 57, 0.10) !important;
    z-index: 1600 !important;
  }

  .floating-actions .fab-link,
  .floating-actions .fab-help,
  .floating-actions .fab-wa,
  .floating-actions .fab-ig {
    display: inline-flex !important;
    width: 100% !important;
    height: 58px !important;
    min-height: 58px !important;
    border-radius: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.24) !important;
    background: var(--c-primary) !important;
    color: #fff !important;
  }

  .floating-actions .fab-ig {
    background: #8f5f62 !important;
  }

  .floating-actions .fab-help {
    background: #6f8d96 !important;
  }

  .floating-actions .fab-link:last-child {
    border-right: 0 !important;
  }

  .floating-actions svg {
    width: 25px !important;
    height: 25px !important;
  }

  body.site-body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom)) !important;
  }

  .support-panel {
    left: 0.75rem !important;
    right: 0.75rem !important;
    bottom: calc(4.4rem + env(safe-area-inset-bottom)) !important;
    width: auto !important;
    z-index: 1700 !important;
  }
}

/* SUPPORT PANEL WHATSAPP BUTTON AND MOBILE WIDTH */
.support-whatsapp-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: -0.25rem auto 0.9rem !important;
  padding: 0.48rem 0.82rem !important;
  border-radius: 999px !important;
  background: rgba(47, 111, 88, 0.10) !important;
  color: #2f6f58 !important;
  font-size: 0.86rem !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.support-whatsapp-button svg {
  width: 18px !important;
  height: 18px !important;
}

.support-whatsapp-button:hover,
.support-whatsapp-button:focus-visible {
  background: #2f6f58 !important;
  color: #fff !important;
}

@media (max-width: 767px) {
  .support-panel {
    left: 1rem !important;
    right: 1rem !important;
    bottom: calc(4.7rem + env(safe-area-inset-bottom)) !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }

  .support-panel-inner {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
    padding: 1rem !important;
  }

  .support-panel-inner::after {
    display: none !important;
  }

  .support-panel-head {
    padding-right: 1.35rem !important;
  }
}

/* Painel de contato: nunca ultrapassar a margem direita; alinhado com mais respiro (desktop) */
.support-panel {
  box-sizing: border-box !important;
  overflow-x: clip !important;
  align-items: stretch !important;
}

.support-panel-inner {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}

@media (min-width: 768px) {
  .support-panel {
    left: auto !important;
    right: max(6.75rem, calc(1.25rem + env(safe-area-inset-right, 0px))) !important;
    width: min(380px, calc(100vw - 8.5rem - env(safe-area-inset-right, 0px))) !important;
    max-width: min(380px, calc(100vw - 2.5rem)) !important;
  }
}

@media (max-width: 767px) {
  .support-panel {
    overflow-x: visible !important;
  }
}

/* Painel de formul?rio: anima??o ao abrir e ao fechar */
.support-panel {
  transition:
    opacity 0.32s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.34s linear !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(14px) scale(0.96) !important;
  pointer-events: none !important;
}

.support-panel.support-panel--open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}

@media (prefers-reduced-motion: reduce) {
  .support-panel {
    transition-duration: 0.01ms !important;
  }
}

/* FULLSCREEN SUPPORT FORM */
.support-panel {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2600 !important;
  width: 100vw !important;
  max-width: none !important;
  height: 100dvh !important;
  max-height: none !important;
  right: auto !important;
  bottom: auto !important;
  left: 0 !important;
  top: 0 !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  overflow: hidden !important;
  background: rgba(32, 49, 57, 0.10) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateX(-100%) !important;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    visibility 0.42s linear !important;
  pointer-events: none !important;
}

.support-panel.support-panel--open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
  pointer-events: auto !important;
}

.support-panel-inner {
  width: 100% !important;
  max-width: none !important;
  min-height: 100dvh !important;
  max-height: none !important;
  display: grid !important;
  align-content: center !important;
  justify-items: center !important;
  padding: clamp(1.25rem, 4vw, 3rem) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 246, 0.95)),
    radial-gradient(circle at 86% 12%, rgba(143, 95, 98, 0.10), transparent 30%) !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.support-panel-inner::after {
  display: none !important;
}

.support-close {
  position: fixed !important;
  top: clamp(1rem, 3vw, 2rem) !important;
  right: clamp(1rem, 3vw, 2rem) !important;
  z-index: 2 !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 12px 26px rgba(32, 49, 57, 0.12) !important;
}

.support-panel-head,
.support-message,
.support-whatsapp-button,
.support-form {
  width: min(620px, 100%) !important;
}

.support-panel-head {
  padding-right: 0 !important;
  margin-bottom: 0.9rem !important;
}

.support-message {
  margin: 0 0 1rem !important;
}

.support-form {
  display: grid !important;
  gap: 0.65rem !important;
}

.support-form .input {
  min-height: 48px !important;
}

.support-form textarea.input {
  min-height: 108px !important;
}

@media (max-width: 767px) {
  .support-panel {
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    bottom: auto !important;
  }

  .support-panel-inner {
    min-height: 100dvh !important;
    padding: 1rem !important;
    align-content: start !important;
    padding-top: 4.75rem !important;
  }

  .support-close {
    top: 1rem !important;
    right: 1rem !important;
  }

  .support-panel-head,
  .support-message,
  .support-whatsapp-button,
  .support-form {
    width: min(100%, 520px) !important;
  }

  .support-intro {
    font-size: 1rem !important;
  }
}

/* RIGHT SIDE SUPPORT DRAWER */
.support-panel {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2600 !important;
  width: 100vw !important;
  height: 100dvh !important;
  display: block !important;
  overflow: hidden !important;
  background: rgba(32, 49, 57, 0.10) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: none !important;
  transition: opacity 0.24s ease, visibility 0.34s linear !important;
  pointer-events: none !important;
}

.support-panel.support-panel--open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  pointer-events: auto !important;
}

.support-panel-inner {
  width: min(430px, calc(100vw - 5.2rem)) !important;
  max-width: none !important;
  height: 100dvh !important;
  min-height: 100dvh !important;
  max-height: none !important;
  margin-left: auto !important;
  padding: clamp(4.5rem, 8vh, 5.75rem) clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.25rem) !important;
  display: grid !important;
  align-content: center !important;
  justify-items: stretch !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: linear-gradient(160deg, #fff, #eef6f6) !important;
  box-shadow: -24px 0 70px rgba(32, 49, 57, 0.18) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  transform: translateX(100%) !important;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.support-panel.support-panel--open .support-panel-inner {
  transform: translateX(0) !important;
}

.support-panel-social-rail {
  position: absolute !important;
  top: 50% !important;
  right: min(430px, calc(100vw - 5.2rem)) !important;
  z-index: 3 !important;
  display: grid !important;
  gap: 0.7rem !important;
  transform: translate(0, -50%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease 0.12s, transform 0.3s ease 0.12s !important;
}

.support-panel.support-panel--open .support-panel-social-rail {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translate(0, -50%) !important;
}

.support-panel-social-link {
  width: 46px !important;
  height: 46px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 14px !important;
  background: #fff !important;
  color: var(--c-primary) !important;
  box-shadow: 0 12px 26px rgba(32, 49, 57, 0.14) !important;
  text-decoration: none !important;
}

.support-close {
  border: 0 !important;
  background: #fff !important;
  box-shadow: 0 12px 26px rgba(32, 49, 57, 0.14) !important;
  cursor: pointer !important;
  color: var(--c-primary) !important;
  font-size: 1.7rem !important;
  line-height: 1 !important;
}

.support-panel-social-link {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.support-panel-social-link.is-whatsapp {
  color: #2f6f58 !important;
}

.support-panel-social-link svg {
  width: 24px !important;
  height: 24px !important;
}

.support-whatsapp-button {
  display: none !important;
}

.support-close {
  position: static !important;
  top: auto !important;
  right: auto !important;
  transform: none !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 14px 0 0 14px !important;
  z-index: 2605 !important;
  color: var(--c-primary) !important;
  display: grid !important;
  place-items: center !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transition: opacity 0.2s ease 0.12s !important;
}

.support-panel-head,
.support-message,
.support-form {
  width: 100% !important;
}

@media (max-width: 767px) {
  .support-panel-inner {
    width: calc(100vw - 4.25rem) !important;
    padding: 5.35rem 1rem 1.25rem !important;
    align-content: start !important;
  }

  .support-panel-social-rail {
    right: calc(100vw - 4.25rem) !important;
  }

  .support-panel-social-link {
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px 0 0 12px !important;
  }

  .support-close {
    top: auto !important;
    right: auto !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px 0 0 12px !important;
  }
}

/* CLEAN COMPACT SUPPORT FORM */
.support-panel-inner {
  align-content: start !important;
  padding-top: clamp(3.75rem, 6vh, 4.6rem) !important;
}

.support-panel-head {
  margin-bottom: 0.65rem !important;
}

.support-intro {
  margin-bottom: 0.5rem !important;
  font-size: 1.08rem !important;
  line-height: 1.15 !important;
}

.support-contact-link {
  font-size: 0.98rem !important;
  line-height: 1.35 !important;
}

.support-message {
  margin: 0 0 0.85rem !important;
  padding: 0.74rem 0.9rem !important;
  border-radius: 18px !important;
  font-size: 0.98rem !important;
  line-height: 1.35 !important;
}

.support-form {
  gap: 0.58rem !important;
}

.support-form .form-label {
  display: block !important;
  margin: 0 !important;
}

.support-form .form-label > span {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.support-form .input {
  min-height: 45px !important;
  padding: 0.72rem 0.9rem !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.86) !important;
  box-shadow: 0 10px 24px rgba(32, 49, 57, 0.045) !important;
}

.support-form .input::placeholder {
  color: rgba(63, 86, 96, 0.72) !important;
}

.support-form textarea.input {
  min-height: 100px !important;
  resize: vertical !important;
}

.support-form .button {
  min-height: 48px !important;
  margin-top: 0.25rem !important;
  border-radius: 16px !important;
}

@media (max-width: 767px) {
  .support-panel-inner {
    padding-top: 4.35rem !important;
  }

  .support-message {
    font-size: 0.95rem !important;
  }

  .support-form textarea.input {
    min-height: 92px !important;
  }
}

/* CONTACT AND BLOG 2026 */
.contact-page,
.blog-page,
.blog-post-page {
  max-width: var(--max-site);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem) 1.25rem clamp(3.5rem, 7vw, 6rem);
}

.contact-hero,
.contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.contact-hero {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 18%, rgba(111, 138, 145, 0.18), transparent 32%),
    linear-gradient(135deg, #f8fbfb 0%, #eef5f5 100%);
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: auto -6rem -7rem auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(63, 86, 96, 0.1);
}

.contact-hero-copy,
.contact-info-card {
  position: relative;
  z-index: 1;
}

.contact-eyebrow {
  margin: 0 0 0.75rem;
  color: var(--c-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-hero h1,
.blog-hero h1,
.blog-post-article h1 {
  margin: 0;
  color: var(--c-primary);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.95;
}

.contact-hero h1 {
  font-size: clamp(2.25rem, 4.4vw, 4.4rem);
}

.contact-hero-copy > p:not(.contact-eyebrow),
.blog-hero > p:not(.contact-eyebrow),
.blog-post-article .post-header > p {
  max-width: 680px;
  color: var(--c-text-soft);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.contact-hero-text {
  margin-top: 1.4rem;
}

.contact-info-card {
  display: grid;
  gap: 1rem;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(32, 49, 57, 0.12);
}

.contact-info-kicker {
  color: var(--c-secondary);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-info-card a:not(.button),
.contact-info-card div {
  display: grid;
  gap: 0.12rem;
  padding: 1rem;
  border: 1px solid var(--c-line);
  border-radius: 18px;
  color: var(--c-text);
  text-decoration: none;
  background: #fff;
}

.contact-info-card span {
  color: var(--c-text-soft);
}

.contact-form-section {
  margin-top: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-form-section h2,
.blog-related h2 {
  margin: 0;
  color: var(--c-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.contact-page-form {
  display: grid;
  gap: 1rem;
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(32, 49, 57, 0.09);
}

.contact-page-form .input {
  border-radius: 16px;
  min-height: 48px;
}

.blog-hero {
  max-width: 900px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(32, 49, 57, 0.08);
}

.blog-card-img-link {
  display: block;
  overflow: hidden;
  background: var(--c-soft);
}

.blog-card-img-link img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-img-link img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 1.35rem;
}

.blog-card-title {
  margin: 0.35rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.blog-card-title a {
  color: var(--c-primary);
  text-decoration: none;
}

.blog-card-excerpt {
  color: var(--c-text-soft);
}

.blog-read-more {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--c-primary);
  font-weight: 800;
  text-decoration: none;
}

.blog-post-article {
  max-width: 920px;
  margin: 0 auto;
}

.blog-post-article .post-header {
  text-align: center;
}

.post-featured {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(32, 49, 57, 0.12);
}

.post-featured img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-post-content {
  max-width: 780px;
  margin: 2rem auto 0;
  text-align: justify;
}

.blog-post-content p,
.blog-post-content li {
  font-size: 1.08rem;
}

.blog-post-cta {
  margin: 2rem auto 0;
  max-width: 780px;
}

.blog-related {
  margin-top: clamp(3rem, 7vw, 5rem);
}

@media (max-width: 980px) {
  .contact-hero,
  .contact-form-section {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .contact-page,
  .blog-page,
  .blog-post-page {
    padding-top: 1.25rem;
  }
  .contact-hero {
    padding: 1.35rem;
    border-radius: 22px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card,
  .contact-info-card,
  .contact-page-form,
  .post-featured {
    border-radius: 20px;
  }
}

/* BLOG COMPACT ADJUSTMENTS */
.button-primary:hover,
.button-primary:focus-visible {
  color: #fff !important;
}

.blog-page {
  max-width: 1320px;
}

.blog-hero {
  max-width: 760px;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.blog-hero h1 {
  font-size: clamp(2.25rem, 4.4vw, 4.1rem);
  line-height: 1;
}

.blog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.6vw, 1.25rem);
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
}

.blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.05rem;
}

.blog-card-title {
  min-height: 2.5em;
  font-size: clamp(1.18rem, 1.55vw, 1.48rem);
  line-height: 1.12;
}

.blog-card-excerpt {
  font-size: 0.94rem;
}

.blog-read-more {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.92rem;
  white-space: nowrap;
}

.blog-post-article {
  max-width: 980px;
}

.blog-post-article .post-header {
  max-width: 780px;
  margin: 1.75rem auto 0;
  text-align: left;
}

.blog-post-article h1 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1;
}

.blog-post-content {
  margin-top: 1.5rem;
}

.blog-related {
  margin-top: clamp(4rem, 8vw, 6rem);
}

.blog-related > div:first-child {
  margin-bottom: 1.4rem;
}

.blog-related h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.blog-related-carousel {
  display: flex;
  gap: clamp(0.8rem, 1.6vw, 1.25rem);
  overflow-x: auto;
  padding: 0.25rem 0 1.25rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.blog-related-carousel .blog-card {
  flex: 0 0 calc((100% - 3.75rem) / 4);
  min-width: 240px;
  scroll-snap-align: start;
  box-shadow: none;
}

.contact-form-card {
  position: relative;
  z-index: 1;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--c-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(32, 49, 57, 0.12);
}

.contact-form-card h2 {
  margin: 0;
  color: var(--c-primary);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  line-height: 1;
}

.contact-form-card > p:not(.contact-eyebrow) {
  color: var(--c-text-soft);
}

.contact-form-card .contact-page-form {
  margin-top: 1rem;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.contact-form-card .form-label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-inline-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

.contact-inline-channels .contact-info-kicker {
  grid-column: 1 / -1;
}

.contact-inline-channels a:not(.button),
.contact-inline-channels div {
  display: grid;
  gap: 0.12rem;
  padding: 0 0 0.75rem;
  border-bottom: 1px solid rgba(63, 86, 96, 0.2);
  color: var(--c-text);
  text-decoration: none;
  background: transparent;
}

.contact-inline-channels span {
  color: var(--c-text-soft);
}

.contact-inline-channels .button {
  grid-column: 1 / -1;
  justify-self: start;
}

.contact-form-section {
  display: none;
}

@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .blog-related-carousel .blog-card {
    flex-basis: calc((100% - 2.5rem) / 3);
  }
}

@media (max-width: 780px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-related-carousel .blog-card {
    flex-basis: min(78vw, 320px);
  }
}

@media (max-width: 780px) {
  .contact-inline-channels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }
}
