:root {
  --color-primary: #e16d00;
  --color-secondary: #15a495;
  --color-accent: #edb414;
  --color-accent-2: #e8654a;
  --color-text: #424242;
  --color-white: #ffffff;
  --color-black: #121212;
  --color-ice: #f8f9fa;
  --color-border: rgba(255, 255, 255, 0.12);

  --gradient-main: linear-gradient(
    135deg,
    #e16d00 0%,
    #e8654a 22%,
    #edb414 50%,
    #15a495 100%
  );


/* NOVO DEGRADÊ AZUL PARA BOTÕES */
  --gradient-button-blue: linear-gradient(
    135deg,
    #20679b 0%,
    #0163ae 100%
  );

  --gradient-soft: linear-gradient(
    135deg,
    rgba(225, 109, 0, 0.24) 0%,
    rgba(232, 101, 74, 0.2) 28%,
    rgba(237, 180, 20, 0.18) 56%,
    rgba(21, 164, 149, 0.2) 100%
  );

  --overlay-top: rgba(8, 10, 14, 0.2);
  --overlay-bottom: rgba(8, 10, 14, 0.72);

  --shadow-soft: 0 12px 36px rgba(10, 18, 28, 0.12);
  --shadow-card: 0 20px 55px rgba(11, 18, 31, 0.18);
  --shadow-cta:
    0 18px 34px rgba(225, 109, 0, 0.22),
    0 0 28px rgba(21, 164, 149, 0.18);

  --radius-pill: 999px;
  --radius-card: 24px;
  --radius-lg: 30px;

  --container: 1240px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  background: var(--color-white);
  color: var(--color-text);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  border: 0;
  background: transparent;
}

ul {
  list-style: none;
}

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



/* =========================================
   MODIFICADOR | BOTÃO COM DEGRADÊ AZUL
   Altera somente o fundo do botão
========================================= */
.ctr-button-blue,
.ctr-button-blue:link,
.ctr-button-blue:visited,
.ctr-button-blue:hover,
.ctr-button-blue:focus,
.ctr-button-blue:focus-visible,
.ctr-button-blue:active {
  background-color: #0163ae !important;
  background-image: var(--gradient-button-blue) !important;
}


/* =========================================
   NAVBAR
========================================= */
.site-header {
  position: relative;
  isolation: auto;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
  padding: 18px 0;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    padding var(--transition),
    backdrop-filter var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition),
    opacity var(--transition);
}

.navbar.is-scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(10, 18, 28, 0.16);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  flex-shrink: 0;
}

.brand__logo {
  max-height: 46px;
  width: auto;
  object-fit: contain;
}

.brand__fallback {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 46px;
  border-radius: 16px;
  padding: 0 18px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.brand__logo[src=""],
.brand__logo:not([src]) {
  display: none;
}

.brand__logo[src=""] + .brand__fallback,
.brand__logo:not([src]) + .brand__fallback {
  display: inline-flex;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: nowrap;
  min-width: 0;
}

.nav-list li {
  flex: 0 0 auto;
}

.nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    color var(--transition),
    text-shadow var(--transition),
    opacity var(--transition);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--color-white);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  transform: scaleX(1);
}

.navbar.is-scrolled .nav-list a {
  color: #1f2734;
  text-shadow: none;
}

.navbar.is-scrolled .nav-list a:hover,
.navbar.is-scrolled .nav-list a:focus-visible {
  color: #15a495;
}

.navbar.is-scrolled .brand__fallback {
  color: #1f2734;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 39, 52, 0.08);
  box-shadow: 0 12px 28px rgba(10, 18, 28, 0.08);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-pill);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.04)
  );
  z-index: -1;
}

.btn::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -20%;
  width: 34%;
  height: 320%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.34),
    transparent
  );
  transform: rotate(18deg);
  transition: transform 0.7s ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(360%) rotate(18deg);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--nav,
.btn--hero {
  background: var(--gradient-main);
  color: var(--color-white);
  box-shadow: var(--shadow-cta);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--nav {
  min-width: 166px;
  min-height: 52px;
  padding: 14px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.btn--hero {
  min-width: 230px;
  min-height: 62px;
  padding: 16px 30px;
  font-size: 1rem;
  font-weight: 700;
}

.btn--hero:hover,
.btn--hero:focus-visible,
.btn--nav:hover,
.btn--nav:focus-visible {
  box-shadow:
    0 22px 44px rgba(225, 109, 0, 0.26),
    0 0 36px rgba(21, 164, 149, 0.24);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  flex-shrink: 0;
}

.nav-toggle span {
  width: 22px;
  height: 2.4px;
  border-radius: 999px;
  background: var(--color-white);
  transition:
    transform var(--transition),
    opacity var(--transition),
    background var(--transition);
}

.navbar.is-scrolled .nav-toggle {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(31, 39, 52, 0.08);
  box-shadow: 0 10px 24px rgba(10, 18, 28, 0.08);
}

.navbar.is-scrolled .nav-toggle span {
  background: #1f2734;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Offset das âncoras da navbar */
#topo,
#a-ctr,
#exames,
#corpo-clinico,
#especialidades,
#ctr-educacional,
#convenios,
#depoimentos,
#ouvidoria {
  scroll-margin-top: 120px;
}

/* =========================================
   RESPONSIVO
========================================= */
@media (max-width: 1380px) {
  .navbar__container {
    gap: 14px;
  }

  .nav-wrapper {
    gap: 14px;
  }

  .nav-list {
    gap: 14px;
  }

  .nav-list a {
    font-size: 0.84rem;
  }

  .btn--nav {
    min-width: 154px;
    padding: 14px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1200px) {
  .nav-wrapper {
    gap: 12px;
  }

  .nav-list {
    gap: 12px;
  }

  .nav-list a {
    font-size: 0.8rem;
  }

  .btn--nav {
    min-width: 148px;
    padding: 13px 16px;
    font-size: 0.88rem;
  }
}

@media (max-width: 992px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-wrapper {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(12, 16, 24, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
    z-index: 10002;
    min-width: unset;
  }

  .nav-wrapper.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-wrapper .nav-list a,
  .navbar.is-scrolled .nav-wrapper .nav-list a {
    color: rgba(255, 255, 255, 0.94);
    text-shadow: none;
    font-size: 0.96rem;
  }

  .btn--nav {
    width: 100%;
    min-width: 100%;
  }

  #topo,
  #a-ctr,
  #exames,
  #corpo-clinico,
  #especialidades,
  #ctr-educacional,
  #convenios,
  #depoimentos,
  #ouvidoria {
    scroll-margin-top: 108px;
  }

  .hero-slider {
    height: 560px;
  }

  .hero__content {
    padding-top: 124px;
    padding-bottom: 82px;
  }

  .hero__eyebrow {
    font-size: 0.84rem;
  }
}

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

  .hero-slider {
    height: 600px;
  }

  .hero__title-gradient {
    font-size: clamp(1.86rem, 8vw, 3rem);
  }

  .hero__description {
    font-size: 0.98rem;
  }

  .btn--hero {
    min-width: 100%;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 14px 0;
  }

  .brand__logo {
    max-height: 38px;
  }

  #topo,
  #a-ctr,
  #exames,
  #corpo-clinico,
  #especialidades,
  #ctr-educacional,
  #convenios,
  #depoimentos,
  #ouvidoria {
    scroll-margin-top: 96px;
  }

  .hero-slider {
    height: 620px;
  }

  .hero__content {
    padding-top: 112px;
    padding-bottom: 72px;
  }

  .hero__eyebrow {
    width: 100%;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .hero-dots {
    bottom: 22px;
    gap: 8px;
  }

  .hero-dot {
    width: 12px;
    height: 12px;
  }

  .hero-dot.is-active {
    width: 34px;
  }
}

@media (max-width: 480px) {
  .nav-wrapper {
    left: 13px;
    right: 13px;
    padding: 18px;
    border-radius: 20px;
  }

  .hero-slider {
    height: 640px;
  }

  .hero__title-gradient {
    font-size: 1.72rem;
  }

  .hero__description {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .btn--hero {
    min-height: 58px;
    font-size: 0.95rem;
  }
}

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

  .hero-slider {
    height: 650px;
  }

  .hero__content {
    padding-top: 104px;
  }

  .hero__title-gradient {
    font-size: 1.58rem;
  }

  .hero__description {
    font-size: 0.9rem;
  }

  .btn--hero {
    min-height: 56px;
    padding: 14px 20px;
  }
}

/* =========================================
   HERO
========================================= */
.hero {
  position: relative;
}

.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #0e1219;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    transform 0.9s ease;
  transform: scale(1.02);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transform: scale(1);
}

.hero-slide__bg,
.hero-slide__overlay {
  position: absolute;
  inset: 0;
}

.hero-slide__bg {
  background-image: var(--hero-bg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.04);
  animation: heroZoom 9s ease-in-out infinite alternate;
}

.hero-slide__overlay {
  background:
    linear-gradient(180deg, var(--overlay-top) 0%, var(--overlay-bottom) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.28) 100%);
}

.hero-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(62px);
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}

.hero-ambient--1 {
  top: 40px;
  left: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.26) 0%, transparent 68%);
  animation: ambientFloat 7s ease-in-out infinite alternate;
}

.hero-ambient--2 {
  right: -40px;
  bottom: 14px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.24) 0%, transparent 70%);
  animation: ambientFloat 8s ease-in-out infinite alternate-reverse;
}

.hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: 112px;
  padding-bottom: 76px;
}

.hero__text {
  width: min(100%, 980px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 22px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.hero__title {
  margin-bottom: 18px;
  line-height: 1;
}

.hero__title-gradient {
  display: block;
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
  filter: drop-shadow(0 4px 20px rgba(225, 109, 0, 0.12));
}

.hero__description {
  width: min(100%, 800px);
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 300;
  line-height: 1.65;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition:
    width var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.hero-dot:hover {
  transform: translateY(-1px);
}

.hero-dot.is-active {
  width: 40px;
  background: var(--gradient-main);
  box-shadow:
    0 10px 20px rgba(225, 109, 0, 0.24),
    0 0 18px rgba(21, 164, 149, 0.22);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 78px;
  transform: translateX(-50%);
  z-index: 5;
  width: 34px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.hero-scroll span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 12px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: var(--color-white);
  animation: scrollDot 1.8s ease-in-out infinite;
}

/* =========================================
   RESPONSIVO
========================================= */
@media (max-width: 1200px) {
  .nav-list {
    gap: 18px;
  }

  .nav-list a {
    font-size: 0.89rem;
  }

  .btn--nav {
    min-width: 156px;
  }
}

@media (max-width: 992px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-wrapper {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(12, 16, 24, 0.94);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  .nav-wrapper.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .btn--nav {
    width: 100%;
  }

  .hero-slider {
    height: 560px;
  }

  .hero__content {
    padding-top: 124px;
    padding-bottom: 82px;
  }

  .hero__eyebrow {
    font-size: 0.84rem;
  }
}

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

  .hero-slider {
    height: 600px;
  }

  .hero__title-gradient {
    font-size: clamp(1.86rem, 8vw, 3rem);
  }

  .hero__description {
    font-size: 0.98rem;
  }

  .btn--hero {
    min-width: 100%;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 14px 0;
  }

  .brand__logo {
    max-height: 38px;
  }

  .hero-slider {
    height: 620px;
  }

  .hero__content {
    padding-top: 112px;
    padding-bottom: 72px;
  }

  .hero__eyebrow {
    width: 100%;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .hero-dots {
    bottom: 22px;
    gap: 8px;
  }

  .hero-dot {
    width: 12px;
    height: 12px;
  }

  .hero-dot.is-active {
    width: 34px;
  }
}

@media (max-width: 480px) {
  .nav-wrapper {
    left: 13px;
    right: 13px;
    padding: 18px;
    border-radius: 20px;
  }

  .hero-slider {
    height: 640px;
  }

  .hero__title-gradient {
    font-size: 1.72rem;
  }

  .hero__description {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .btn--hero {
    min-height: 58px;
    font-size: 0.95rem;
  }
}

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

  .hero-slider {
    height: 650px;
  }

  .hero__content {
    padding-top: 104px;
  }

  .hero__title-gradient {
    font-size: 1.58rem;
  }

  .hero__description {
    font-size: 0.9rem;
  }

  .btn--hero {
    min-height: 56px;
    padding: 14px 20px;
  }
}

/* =========================================
   ANIMAÇÕES
========================================= */
@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes ambientFloat {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(18px, -14px, 0);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

/* =========================================
   CORREÇÃO | HERO X FLOATING CARDS X NAVBAR
========================================= */
.navbar {
  z-index: 99999 !important;
}

.hero,
.hero-slider,
.hero-slide {
  position: relative;
  z-index: 1;
}

.floating-cards-section {
  position: relative;
  z-index: 2;
}











/* =========================================
   SESSÃO | CARDS FLUTUANTES CTR
   Cole este bloco no lugar do CSS antigo
========================================= */

:root {
  --floating-overlap-desktop: 70px;
  --floating-overlap-tablet: 60px;
  --floating-overlap-mobile: 48px;
}

.floating-cards-section {
  position: relative;
  z-index: 30;
  margin-top: calc(var(--floating-overlap-desktop) * -1);
  padding-bottom: 42px;
}

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

.feature-card {
  position: relative;
  display: block;
  min-height: 230px;
  padding: 26px 22px 22px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(249, 251, 252, 0.98) 100%
  );
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow:
    0 24px 55px rgba(10, 18, 28, 0.14),
    0 10px 24px rgba(21, 164, 149, 0.06);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(21, 164, 149, 0.1), transparent 38%),
    radial-gradient(circle at bottom right, rgba(225, 109, 0, 0.08), transparent 34%);
  opacity: 0.9;
  z-index: -2;
}

.feature-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #15a495 0%, #e16d00 50%, #edb414 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.feature-card__glow {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.22) 0%, transparent 70%);
  filter: blur(16px);
  pointer-events: none;
  z-index: -1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  transform: translateY(-10px);
  border-color: rgba(21, 164, 149, 0.22);
  box-shadow:
    0 30px 65px rgba(10, 18, 28, 0.18),
    0 0 0 1px rgba(21, 164, 149, 0.08),
    0 0 28px rgba(21, 164, 149, 0.12);
  outline: none;
}

.feature-card:hover::after,
.feature-card:focus-visible::after {
  transform: scaleX(1);
}

.feature-card:hover .feature-card__glow,
.feature-card:focus-visible .feature-card__glow {
  transform: scale(1.18);
  opacity: 1;
}

.feature-card__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(21, 164, 149, 0.1) 0%,
    rgba(225, 109, 0, 0.08) 100%
  );
  color: #15a495;
  box-shadow:
    inset 0 0 0 1px rgba(21, 164, 149, 0.1),
    0 12px 28px rgba(21, 164, 149, 0.08);
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.feature-card__icon svg {
  width: 40px;
  height: 40px;
}

.feature-card__title {
  margin: 0 0 10px;
  color: #15a495;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: color 0.35s ease;
}

.feature-card__text {
  margin: 0;
  color: #5e6877;
  font-size: 0.94rem;
  line-height: 1.7;
  font-weight: 400;
}

.feature-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #e16d00;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.35s ease, transform 0.35s ease;
}

.feature-card__cta i {
  font-size: 1rem;
  transition: transform 0.35s ease;
}

.feature-card:hover .feature-card__icon,
.feature-card:focus-visible .feature-card__icon {
  transform: translateY(-4px) scale(1.04);
  color: #ffffff;
  background: var(--gradient-main);
  box-shadow:
    0 18px 34px rgba(225, 109, 0, 0.18),
    0 0 24px rgba(21, 164, 149, 0.18);
}

.feature-card:hover .feature-card__title,
.feature-card:focus-visible .feature-card__title {
  color: #0f8e81;
}

.feature-card:hover .feature-card__cta,
.feature-card:focus-visible .feature-card__cta {
  color: #15a495;
}

.feature-card:hover .feature-card__cta i,
.feature-card:focus-visible .feature-card__cta i {
  transform: translateX(4px);
}

.feature-card--highlight {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(247, 252, 251, 1) 100%
  );
  box-shadow:
    0 28px 60px rgba(10, 18, 28, 0.16),
    0 0 0 1px rgba(21, 164, 149, 0.08),
    0 0 34px rgba(21, 164, 149, 0.08);
}

.feature-card--highlight .feature-card__icon {
  color: #e16d00;
  background: linear-gradient(
    135deg,
    rgba(225, 109, 0, 0.12) 0%,
    rgba(21, 164, 149, 0.1) 100%
  );
}

.feature-card--highlight .feature-card__title {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-card--highlight .feature-card__glow {
  background: radial-gradient(circle, rgba(225, 109, 0, 0.2) 0%, transparent 70%);
}

@media (max-width: 1080px) {
  .floating-cards-section {
    margin-top: calc(var(--floating-overlap-tablet) * -1);
    padding-bottom: 34px;
  }

  .floating-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .floating-cards-section {
    margin-top: calc(var(--floating-overlap-mobile) * -1);
    padding-bottom: 28px;
  }

  .floating-cards__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    min-height: 208px;
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  .feature-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .feature-card__icon svg {
    width: 34px;
    height: 34px;
  }

  .feature-card__title {
    font-size: 1rem;
  }

  .feature-card__text {
    font-size: 0.92rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .floating-cards-section {
    margin-top: -42px;
    padding-bottom: 24px;
  }
}
















/* =========================================
   SESSÃO | EXAMES INLINE PREMIUM
========================================= */
.ctr-exams-inline-section {
  position: relative;
  padding: 36px 0 30px;
  background: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.ctr-exams-inline-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ctr-exams-inline-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.ctr-exams-inline-group {
  display: flex;
  align-items: center;
  gap: 34px;
}

.ctr-exam-inline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 208px;
  min-width: 208px;
  min-height: 166px;
  padding: 22px 18px;
  text-align: center;
  text-decoration: none;
  border-radius: 28px;
  isolation: isolate;
  transition: transform 0.35s ease, color 0.35s ease;
}

.ctr-exam-inline-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,251,0.98) 100%);
  border: 1px solid rgba(80, 160, 255, 0.24);
  box-shadow:
    0 18px 36px rgba(10, 18, 28, 0.08),
    inset 0 0 0 1px rgba(255,255,255,0.4);
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  z-index: 0;
}

.ctr-exam-inline-item::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 34%, rgba(24, 209, 201, 0.22) 0%, rgba(24, 209, 201, 0.12) 26%, transparent 54%),
    radial-gradient(circle at 22% 76%, rgba(225, 109, 0, 0.14) 0%, transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(80, 160, 255, 0.16) 0%, transparent 34%);
  filter: blur(18px);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
  z-index: -1;
  pointer-events: none;
}

.ctr-exam-inline-item:hover,
.ctr-exam-inline-item:focus-visible {
  transform: translateY(-4px);
  outline: none;
}

.ctr-exam-inline-item:hover::before,
.ctr-exam-inline-item:focus-visible::before {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(80, 160, 255, 0.34);
  box-shadow:
    0 22px 42px rgba(10, 18, 28, 0.1),
    0 0 0 1px rgba(80, 160, 255, 0.08),
    inset 0 0 0 1px rgba(255,255,255,0.5);
}

.ctr-exam-inline-item:hover::after,
.ctr-exam-inline-item:focus-visible::after {
  opacity: 1;
  transform: scale(1);
  filter: blur(20px);
}

.ctr-exam-inline-item__icon-wrap {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.ctr-exam-inline-item__icon {
  position: absolute;
  inset: 0;
  width: 64px;
  height: 64px;
  margin: auto;
  display: block;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
  filter: drop-shadow(0 0 10px rgba(225, 109, 0, 0.12));
}

.ctr-exam-inline-item__icon-gradient {
  position: absolute;
  inset: 0;
  width: 64px;
  height: 64px;
  margin: auto;
  display: none;
  pointer-events: none;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

.ctr-exams-inline-section.has-mask-support .ctr-exam-inline-item__icon {
  opacity: 0;
}

.ctr-exams-inline-section.has-mask-support .ctr-exam-inline-item__icon-gradient {
  display: block;
  opacity: 1;
  background: linear-gradient(
    135deg,
    #e16d00 0%,
    #15a495 36%,
    #edb414 70%,
    #e8654a 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  filter: drop-shadow(0 0 12px rgba(24, 209, 201, 0.14));
}

.ctr-exam-inline-item:hover .ctr-exam-inline-item__icon,
.ctr-exam-inline-item:focus-visible .ctr-exam-inline-item__icon {
  transform: scale(1.04) translateY(-1px);
  filter: drop-shadow(0 0 14px rgba(225, 109, 0, 0.18));
}

.ctr-exam-inline-item:hover .ctr-exam-inline-item__icon-gradient,
.ctr-exam-inline-item:focus-visible .ctr-exam-inline-item__icon-gradient {
  transform: scale(1.04) translateY(-1px);
  filter: drop-shadow(0 0 14px rgba(24, 209, 201, 0.18));
}

.ctr-exam-inline-item__title {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 180px;
  color: #424242;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
  transition: color 0.35s ease, transform 0.35s ease, text-shadow 0.35s ease;
}

.ctr-exam-inline-item:hover .ctr-exam-inline-item__title,
.ctr-exam-inline-item:focus-visible .ctr-exam-inline-item__title {
  color: #15a495;
  transform: translateY(1px);
  text-shadow: 0 0 16px rgba(24, 209, 201, 0.08);
}

@media (max-width: 992px) {
  .ctr-exams-inline-track,
  .ctr-exams-inline-group {
    gap: 22px;
  }

  .ctr-exam-inline-item {
    width: 190px;
    min-width: 190px;
    min-height: 156px;
  }

  .ctr-exam-inline-item__icon-wrap {
    width: 88px;
    height: 88px;
  }

  .ctr-exam-inline-item__icon,
  .ctr-exam-inline-item__icon-gradient {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 768px) {
  .ctr-exams-inline-section {
    padding: 26px 0 22px;
  }

  .ctr-exams-inline-track,
  .ctr-exams-inline-group {
    gap: 16px;
  }

  .ctr-exam-inline-item {
    width: 170px;
    min-width: 170px;
    min-height: 142px;
    padding: 18px 14px;
    border-radius: 24px;
  }

  .ctr-exam-inline-item::before {
    border-radius: 24px;
  }

  .ctr-exam-inline-item__icon-wrap {
    width: 78px;
    height: 78px;
    margin-bottom: 12px;
  }

  .ctr-exam-inline-item__icon,
  .ctr-exam-inline-item__icon-gradient {
    width: 52px;
    height: 52px;
  }

  .ctr-exam-inline-item__title {
    max-width: 150px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .ctr-exam-inline-item {
    width: 156px;
    min-width: 156px;
    min-height: 134px;
  }

  .ctr-exam-inline-item__icon-wrap {
    width: 72px;
    height: 72px;
  }

  .ctr-exam-inline-item__icon,
  .ctr-exam-inline-item__icon-gradient {
    width: 48px;
    height: 48px;
  }

  .ctr-exam-inline-item__title {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ctr-exams-inline-marquee {
    overflow-x: auto;
    scroll-behavior: auto;
  }

  .ctr-exams-inline-track {
    transform: none !important;
    width: max-content;
  }
}























/* =========================================
   SESSÃO | A CTR MEDICINA DIAGNÓSTICA
========================================= */
.about-ctr-section {
  position: relative;
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
  isolation: isolate;
}

.about-ctr-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.about-ctr-bg--left {
  top: 80px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.12) 0%, transparent 72%);
}

.about-ctr-bg--right {
  right: -110px;
  bottom: 60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.14) 0%, transparent 72%);
}

.about-ctr-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 54px;
}

.about-ctr-content {
  max-width: 640px;
}

.about-ctr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-bottom: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(21, 164, 149, 0.08);
  border: 1px solid rgba(21, 164, 149, 0.14);
  color: #15a495;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 34px rgba(10, 18, 28, 0.06);
}

.about-ctr-eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-main);
  box-shadow:
    0 0 0 6px rgba(21, 164, 149, 0.08),
    0 0 18px rgba(225, 109, 0, 0.22);
}

.about-ctr-title {
  margin: 0 0 20px;
  color: #1e2430;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.about-ctr-title span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-ctr-description {
  margin: 0 0 16px;
  color: #4f5968;
  font-size: 1.02rem;
  line-height: 1.8;
  font-weight: 300;
}

.about-ctr-description strong {
  color: #e16d00;
  font-weight: 800;
}

.about-ctr-description--soft {
  color: #5c6676;
}

.about-ctr-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.about-ctr-point {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 164, 149, 0.1);
  box-shadow:
    0 20px 40px rgba(10, 18, 28, 0.08),
    0 8px 18px rgba(21, 164, 149, 0.04);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.about-ctr-point:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 164, 149, 0.18);
  box-shadow:
    0 24px 50px rgba(10, 18, 28, 0.1),
    0 0 24px rgba(21, 164, 149, 0.08);
}

.about-ctr-point__icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--gradient-main);
  box-shadow:
    0 16px 28px rgba(225, 109, 0, 0.18),
    0 0 22px rgba(21, 164, 149, 0.12);
}

.about-ctr-point__icon svg {
  width: 28px;
  height: 28px;
}

.about-ctr-point h3 {
  margin: 0 0 6px;
  color: #1f2734;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.about-ctr-point p {
  margin: 0;
  color: #647082;
  font-size: 0.94rem;
  line-height: 1.7;
}

.about-ctr-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-ctr-highlight {
  min-width: 168px;
  padding: 14px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafb 100%);
  border: 1px solid rgba(225, 109, 0, 0.08);
  box-shadow: 0 16px 34px rgba(10, 18, 28, 0.06);
}

.about-ctr-highlight strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-ctr-highlight span {
  display: block;
  color: #667284;
  font-size: 0.85rem;
  line-height: 1.5;
}

.about-ctr-media {
  position: relative;
  min-height: 610px;
}

.about-ctr-media__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.about-ctr-media__shape--1 {
  top: 38px;
  right: 48px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(237, 180, 20, 0.18) 0%, transparent 70%);
}

.about-ctr-media__shape--2 {
  left: 18px;
  bottom: 66px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.16) 0%, transparent 70%);
}

.about-ctr-card {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 28px 70px rgba(10, 18, 28, 0.16),
    0 0 0 1px rgba(21, 164, 149, 0.05);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  will-change: transform;
}

.about-ctr-card:hover {
  box-shadow:
    0 34px 80px rgba(10, 18, 28, 0.18),
    0 0 32px rgba(21, 164, 149, 0.1);
}

.about-ctr-card__glow {
  position: absolute;
  top: -50px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.22) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 1;
  pointer-events: none;
}

.about-ctr-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-ctr-card--main {
  top: 0;
  right: 0;
  width: min(100%, 540px);
  height: 540px;
}

.about-ctr-card--secondary {
  left: 0;
  bottom: 0;
  width: min(100%, 280px);
  height: 250px;
}

.about-ctr-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 164, 149, 0.1);
  backdrop-filter: blur(14px);
  box-shadow:
    0 22px 44px rgba(10, 18, 28, 0.12),
    0 0 24px rgba(21, 164, 149, 0.06);
  animation: aboutCtrFloat 4.8s ease-in-out infinite;
}

.about-ctr-floating-badge--top {
  top: 52px;
  left: -18px;
}

.about-ctr-floating-badge--bottom {
  right: -14px;
  bottom: 34px;
  animation-delay: 0.9s;
}

.about-ctr-floating-badge__icon {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 16px;
  display: block;
  color: #ffffff;
  background: var(--gradient-main);
  box-shadow:
    0 14px 28px rgba(225, 109, 0, 0.16),
    0 0 20px rgba(21, 164, 149, 0.14);
  flex-shrink: 0;
}

.about-ctr-floating-badge__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  color: #ffffff;
  transform: translate(-50%, -50%);
  transform-box: fill-box;
  transform-origin: center;
  display: block;
  overflow: visible;
}

.about-ctr-floating-badge strong {
  display: block;
  color: #1f2734;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-ctr-floating-badge span {
  display: block;
  margin-top: 3px;
  color: #647082;
  font-size: 0.82rem;
  line-height: 1.5;
}

.about-ctr-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.about-ctr-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes aboutCtrFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1200px) {
  .about-ctr-container {
    gap: 38px;
  }

  .about-ctr-card--main {
    width: min(100%, 430px);
    height: 500px;
  }

  .about-ctr-card--secondary {
    width: min(100%, 250px);
    height: 220px;
  }

  .about-ctr-floating-badge--top {
    left: 0;
  }

  .about-ctr-floating-badge--bottom {
    right: 0;
  }
}

@media (max-width: 992px) {
  .about-ctr-section {
    padding: 78px 0 86px;
  }

  .about-ctr-container {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-ctr-content {
    max-width: 100%;
  }

  .about-ctr-media {
    min-height: 580px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-ctr-section {
    padding: 68px 0 78px;
  }

  .about-ctr-title {
    font-size: clamp(1.8rem, 7vw, 2.7rem);
  }

  .about-ctr-description {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .about-ctr-media {
    min-height: 430px;
  }

  .about-ctr-card--main {
    position: relative;
    width: 100%;
    height: 370px;
    right: auto;
    top: auto;
  }

  .about-ctr-card--secondary {
    display: none;
  }

  .about-ctr-floating-badge {
    min-width: 190px;
    padding: 12px 14px;
  }

  .about-ctr-floating-badge--top {
    top: 18px;
    left: 12px;
  }

  .about-ctr-floating-badge--bottom {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 576px) {
  .about-ctr-point {
    grid-template-columns: 52px 1fr;
    padding: 16px;
    border-radius: 20px;
  }

  .about-ctr-point__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .about-ctr-highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-ctr-highlight {
    min-width: 0;
  }

  .about-ctr-media {
    min-height: 360px;
  }

  .about-ctr-card--main {
    height: 300px;
    border-radius: 26px;
  }

  .about-ctr-floating-badge {
    min-width: 0;
    width: 182px;
    border-radius: 18px;
  }

  .about-ctr-floating-badge__icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border-radius: 14px;
  }

  .about-ctr-floating-badge__icon svg {
    width: 20px;
    height: 20px;
  }

  .about-ctr-floating-badge strong {
    font-size: 0.86rem;
  }

  .about-ctr-floating-badge span {
    font-size: 0.76rem;
  }
}

@media (max-width: 480px) {
  .about-ctr-section {
    padding: 60px 0 72px;
  }

  .about-ctr-eyebrow {
    min-height: 40px;
    font-size: 0.82rem;
  }

  .about-ctr-media {
    min-height: 320px;
  }

  .about-ctr-card--main {
    height: 270px;
  }

  .about-ctr-floating-badge {
    width: 168px;
    gap: 10px;
    padding: 10px 12px;
  }
}

@media (max-width: 360px) {
  .about-ctr-title {
    font-size: 1.72rem;
  }

  .about-ctr-description {
    font-size: 0.92rem;
  }

  .about-ctr-media {
    min-height: 300px;
  }

  .about-ctr-card--main {
    height: 245px;
  }

  .about-ctr-floating-badge {
    width: 154px;
  }

  .about-ctr-floating-badge strong {
    font-size: 0.8rem;
  }

  .about-ctr-floating-badge span {
    font-size: 0.72rem;
  }
}














/* =========================================
   SESSÃO | CTR EDUCACIONAL
========================================= */
:root {
  --ctr-edu-primary: #e16d00;
  --ctr-edu-secondary: #15a495;
  --ctr-edu-accent: #edb414;
  --ctr-edu-accent-2: #e8654a;
  --ctr-edu-text: #424242;
  --ctr-edu-white: #ffffff;
  --ctr-edu-ice: #f8f9fa;
  --ctr-edu-gradient: linear-gradient(
    135deg,
    #e16d00 0%,
    #e8654a 22%,
    #edb414 50%,
    #15a495 100%
  );
}

/* Seção */
.ctr-educacional-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(225, 109, 0, 0.08), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(21, 164, 149, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
  isolation: isolate;
}

.ctr-educacional-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0%, transparent 68%);
  pointer-events: none;
  z-index: -2;
}

.ctr-educacional-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(21, 164, 149, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.18;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 0, 0, 1) 18%,
    rgba(0, 0, 0, 1) 82%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 0, 0, 1) 18%,
    rgba(0, 0, 0, 1) 82%,
    transparent
  );
  pointer-events: none;
  z-index: -1;
}

/* Glow do fundo */
.ctr-educacional__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  opacity: 0.9;
}

.ctr-educacional__bg-glow--1 {
  top: 34px;
  left: -52px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.18) 0%, transparent 70%);
  animation: ctrEduAmbientFloat 9s ease-in-out infinite alternate;
}

.ctr-educacional__bg-glow--2 {
  top: 115px;
  right: -40px;
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.16) 0%, transparent 72%);
  animation: ctrEduAmbientFloat 10s ease-in-out infinite alternate-reverse;
}

.ctr-educacional__bg-glow--3 {
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 190px;
  background: radial-gradient(circle, rgba(237, 180, 20, 0.12) 0%, transparent 72%);
  animation: ctrEduPulseGlow 7s ease-in-out infinite;
}

/* Cabeçalho */
.ctr-educacional__header {
  position: relative;
  max-width: 860px;
  margin: 0 auto 46px;
  text-align: center;
}

.ctr-educacional__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 164, 149, 0.10);
  box-shadow: 0 12px 30px rgba(10, 18, 28, 0.06);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ctr-edu-secondary);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ctr-educacional__eyebrow i {
  font-size: 0.95rem;
  color: var(--ctr-edu-primary);
  filter: drop-shadow(0 0 10px rgba(225, 109, 0, 0.20));
}

.ctr-educacional__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: var(--ctr-edu-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 24px rgba(225, 109, 0, 0.10));
}

.ctr-educacional__subtitle {
  width: min(100%, 760px);
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  color: var(--ctr-edu-text);
}

/* Grid */
.ctr-educacional__grid {
  display: grid;
  grid-template-columns: repeat(5, 198px);
  justify-content: center;
  gap: 22px;
}

/* Card */
.ctr-educacional-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 8px 0 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
  transform: translateY(0);
  transition: transform 0.38s ease;
}

.ctr-educacional-card:hover,
.ctr-educacional-card:focus-visible {
  transform: translateY(-10px);
  outline: none;
}

/* Glow atrás da imagem */
.ctr-educacional-card__glow {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  transform: translateX(-50%) scale(0.88);
  background:
    radial-gradient(circle,
      rgba(225, 109, 0, 0.22) 0%,
      rgba(21, 164, 149, 0.14) 38%,
      transparent 72%);
  filter: blur(30px);
  opacity: 0;
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
  z-index: -1;
  pointer-events: none;
}

.ctr-educacional-card:hover .ctr-educacional-card__glow,
.ctr-educacional-card:focus-visible .ctr-educacional-card__glow {
  opacity: 1;
  transform: translateX(-50%) scale(1.12);
}

/* Faixa de brilho */
.ctr-educacional-card__shine {
  position: absolute;
  top: -92px;
  left: 50%;
  width: 72px;
  height: 430px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.58),
    transparent
  );
  transform: translateX(-220%) rotate(18deg);
  opacity: 0;
  transition:
    transform 0.85s ease,
    opacity 0.30s ease;
  pointer-events: none;
  z-index: 2;
}

.ctr-educacional-card:hover .ctr-educacional-card__shine,
.ctr-educacional-card:focus-visible .ctr-educacional-card__shine {
  opacity: 1;
  transform: translateX(120%) rotate(18deg);
}

/* Apenas a imagem tem borda */
.ctr-educacional-card__media {
  position: relative;
  width: 198px;
  height: 250px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(21, 164, 149, 0.10);
  box-shadow:
    0 20px 40px rgba(10, 18, 28, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    border-color 0.38s ease,
    box-shadow 0.38s ease,
    transform 0.38s ease;
}

.ctr-educacional-card:hover .ctr-educacional-card__media,
.ctr-educacional-card:focus-visible .ctr-educacional-card__media {
  border-color: var(--ctr-edu-primary);
  box-shadow:
    0 26px 48px rgba(10, 18, 28, 0.12),
    0 0 0 1px rgba(225, 109, 0, 0.12),
    0 0 22px rgba(225, 109, 0, 0.12);
}

.ctr-educacional-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.ctr-educacional-card:hover .ctr-educacional-card__media img,
.ctr-educacional-card:focus-visible .ctr-educacional-card__media img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

/* Título */
.ctr-educacional-card__title {
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.42;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #27313f;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.ctr-educacional-card:hover .ctr-educacional-card__title,
.ctr-educacional-card:focus-visible .ctr-educacional-card__title {
  color: var(--ctr-edu-primary);
  transform: translateY(-1px);
}

/* Entrada */
.ctr-educacional-card.is-visible {
  animation: ctrEduCardReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes ctrEduCardReveal {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ctrEduAmbientFloat {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(18px, -14px, 0);
  }
}

@keyframes ctrEduPulseGlow {
  0%, 100% {
    opacity: 0.55;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}

/* Responsivo */
@media (max-width: 1200px) {
  .ctr-educacional__grid {
    grid-template-columns: repeat(3, 198px);
  }
}

@media (max-width: 768px) {
  .ctr-educacional-section {
    padding: 86px 0;
  }

  .ctr-educacional__header {
    margin-bottom: 34px;
  }

  .ctr-educacional__subtitle {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .ctr-educacional__grid {
    grid-template-columns: repeat(2, 198px);
    gap: 18px;
  }

  .ctr-educacional__eyebrow {
    font-size: 0.82rem;
    padding: 10px 14px;
  }
}

@media (max-width: 520px) {
  .ctr-educacional__grid {
    grid-template-columns: 198px;
  }

  .ctr-educacional__title {
    font-size: 1.9rem;
  }

  .ctr-educacional__eyebrow {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}













/* =========================================
   SESSÃO | NÓS TEMOS O MAIOR CARINHO POR VOCÊ
========================================= */
.ctr-care-section {
  position: relative;
  padding: 92px 0 96px;
  background: #f8f9fa;
  overflow: hidden;
  isolation: isolate;
}

.ctr-care-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.ctr-care-bg--left {
  top: 30px;
  left: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.12) 0%, transparent 72%);
}

.ctr-care-bg--right {
  right: -120px;
  bottom: 10px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.14) 0%, transparent 72%);
}

.ctr-care-container {
  position: relative;
  z-index: 1;
}

.ctr-care-header {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.ctr-care-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(21, 164, 149, 0.08);
  border: 1px solid rgba(21, 164, 149, 0.14);
  color: #15a495;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 34px rgba(10, 18, 28, 0.06);
}

.ctr-care-eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-main);
  box-shadow:
    0 0 0 6px rgba(21, 164, 149, 0.08),
    0 0 18px rgba(225, 109, 0, 0.2);
}

.ctr-care-title {
  margin: 0 0 18px;
  color: #1e2430;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.ctr-care-title span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ctr-care-subtitle {
  margin: 0 auto;
  max-width: 820px;
  color: #5f6978;
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 300;
}

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

.ctr-care-card {
  position: relative;
  min-height: 320px;
  padding: 30px 24px 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,252,252,0.98) 100%);
  border: 1px solid rgba(21, 164, 149, 0.1);
  box-shadow:
    0 22px 50px rgba(10, 18, 28, 0.08),
    0 10px 24px rgba(21, 164, 149, 0.04);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ctr-care-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(21, 164, 149, 0.1), transparent 38%),
    radial-gradient(circle at bottom right, rgba(225, 109, 0, 0.1), transparent 36%);
  z-index: -2;
}

.ctr-care-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 5px;
  border-radius: 999px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.ctr-care-card__glow {
  position: absolute;
  top: -40px;
  right: -20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.2) 0%, transparent 72%);
  filter: blur(18px);
  z-index: -1;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.ctr-care-card:hover,
.ctr-care-card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(21, 164, 149, 0.18);
  box-shadow:
    0 30px 65px rgba(10, 18, 28, 0.12),
    0 0 30px rgba(21, 164, 149, 0.08);
}

.ctr-care-card:hover::after,
.ctr-care-card:focus-within::after {
  transform: scaleX(1);
}

.ctr-care-card:hover .ctr-care-card__glow,
.ctr-care-card:focus-within .ctr-care-card__glow {
  transform: scale(1.16);
}

.ctr-care-card__icon {
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: #15a495;
  background:
    linear-gradient(135deg, rgba(21, 164, 149, 0.1) 0%, rgba(225, 109, 0, 0.08) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(21, 164, 149, 0.1),
    0 14px 30px rgba(21, 164, 149, 0.08);
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.ctr-care-card__icon svg {
  width: 42px;
  height: 42px;
}

.ctr-care-card:hover .ctr-care-card__icon,
.ctr-care-card:focus-within .ctr-care-card__icon {
  transform: translateY(-4px) scale(1.04);
  color: #ffffff;
  background: var(--gradient-main);
  box-shadow:
    0 18px 34px rgba(225, 109, 0, 0.18),
    0 0 26px rgba(21, 164, 149, 0.16);
}

.ctr-care-card__title {
  margin: 0 0 14px;
  color: #1f2734;
  font-size: 1.2rem;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.ctr-care-card__text {
  margin: 0;
  color: #637082;
  font-size: 0.96rem;
  line-height: 1.8;
  font-weight: 400;
}

.ctr-care-card--featured {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(247,252,251,1) 100%);
  box-shadow:
    0 30px 65px rgba(10, 18, 28, 0.12),
    0 0 0 1px rgba(21, 164, 149, 0.08),
    0 0 34px rgba(21, 164, 149, 0.06);
}

.ctr-care-card__title {
  margin: 0 0 14px;
  font-size: 1.2rem;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.035em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ctr-care-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.ctr-care-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1200px) {
  .ctr-care-grid {
    gap: 18px;
  }

  .ctr-care-card {
    min-height: 300px;
  }
}

@media (max-width: 992px) {
  .ctr-care-section {
    padding: 78px 0 86px;
  }

  .ctr-care-grid {
    grid-template-columns: 1fr;
  }

  .ctr-care-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .ctr-care-section {
    padding: 68px 0 78px;
  }

  .ctr-care-title {
    font-size: clamp(1.8rem, 7vw, 2.9rem);
  }

  .ctr-care-subtitle {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .ctr-care-card {
    padding: 24px 20px 22px;
    border-radius: 24px;
  }

  .ctr-care-card__icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    margin-bottom: 18px;
  }

  .ctr-care-card__icon svg {
    width: 36px;
    height: 36px;
  }

  .ctr-care-card__title {
    font-size: 1.08rem;
  }

  .ctr-care-card__text {
    font-size: 0.93rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .ctr-care-section {
    padding: 60px 0 72px;
  }

  .ctr-care-eyebrow {
    min-height: 40px;
    font-size: 0.82rem;
  }

  .ctr-care-card {
    padding: 22px 18px 20px;
  }
}

@media (max-width: 360px) {
  .ctr-care-title {
    font-size: 1.72rem;
  }

  .ctr-care-subtitle,
  .ctr-care-card__text {
    font-size: 0.9rem;
  }
}





























/* =========================================
   SESSÃO | CORPO CLÍNICO CTR
========================================= */
.ctr-medical-team-section {
  position: relative;
  padding: 92px 0 98px;
  background: #f8f9fa;
  overflow: hidden;
  isolation: isolate;
}

.ctr-medical-team-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(82px);
  pointer-events: none;
  z-index: 0;
}

.ctr-medical-team-bg--left {
  top: 42px;
  left: -150px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.12) 0%, transparent 72%);
}

.ctr-medical-team-bg--right {
  right: -140px;
  bottom: 16px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.14) 0%, transparent 72%);
}

.ctr-medical-team-container {
  position: relative;
  z-index: 2;
}

.ctr-medical-team-header {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.ctr-medical-team-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(21, 164, 149, 0.08);
  border: 1px solid rgba(21, 164, 149, 0.14);
  color: #15a495;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 34px rgba(10, 18, 28, 0.06);
}

.ctr-medical-team-eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-main);
  box-shadow:
    0 0 0 6px rgba(21, 164, 149, 0.08),
    0 0 18px rgba(225, 109, 0, 0.2);
}

.ctr-medical-team-title {
  margin: 0 0 18px;
  color: #1f2734;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.ctr-medical-team-title span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ctr-medical-team-subtitle {
  margin: 0 auto;
  max-width: 800px;
  color: #5f6978;
  font-size: 1rem;
  line-height: 1.82;
  font-weight: 300;
}

.ctr-medical-team-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 18px;
}

.ctr-medical-team-marquee::before,
.ctr-medical-team-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 4;
  pointer-events: none;
}

.ctr-medical-team-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f8f9fa 0%, rgba(248, 249, 250, 0) 100%);
}

.ctr-medical-team-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f8f9fa 0%, rgba(248, 249, 250, 0) 100%);
}

.ctr-medical-team-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.ctr-medical-team-group {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

/* CARD */
.ctr-doctor-card {
  position: relative;
  width: 300px;
  min-width: 300px;
  border-radius: 30px;
  flex: 0 0 auto;
  isolation: isolate;
  transition: transform 0.38s ease;
}

.ctr-doctor-card::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 24%, rgba(21, 164, 149, 0.52) 0%, rgba(21, 164, 149, 0.36) 18%, transparent 40%),
    radial-gradient(circle at 24% 76%, rgba(225, 109, 0, 0.42) 0%, rgba(225, 109, 0, 0.24) 16%, transparent 34%),
    radial-gradient(circle at 78% 78%, rgba(237, 180, 20, 0.46) 0%, rgba(237, 180, 20, 0.24) 18%, transparent 36%);
  filter: blur(18px);
  opacity: 0;
  transform: scale(0.94);
  z-index: 0;
  pointer-events: none;
  transition:
    opacity 0.42s ease,
    transform 0.42s ease,
    filter 0.42s ease;
}

.ctr-doctor-card::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.92) 0 3px, transparent 7px),
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.36) 0 8px, transparent 13px),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.72) 0 3px, transparent 7px),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.24) 0 8px, transparent 13px);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition:
    opacity 0.42s ease,
    transform 0.42s ease;
}

.ctr-doctor-card:hover,
.ctr-doctor-card:focus-within {
  transform: translateY(-10px);
}

.ctr-doctor-card:hover::before,
.ctr-doctor-card:focus-within::before {
  opacity: 1;
  transform: scale(1);
  filter: blur(20px);
}

.ctr-doctor-card:hover::after,
.ctr-doctor-card:focus-within::after {
  opacity: 1;
  transform: scale(1.02);
}

/* SUPERFÍCIE TOTAL DO CARD */
.ctr-doctor-card__surface {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.995) 0%, rgba(248, 250, 251, 0.995) 100%);
  border: 1px solid rgba(21, 164, 149, 0.1);
  box-shadow:
    0 22px 50px rgba(10, 18, 28, 0.08),
    0 10px 24px rgba(21, 164, 149, 0.04);
  transition:
    border-color 0.38s ease,
    box-shadow 0.38s ease;
}

.ctr-doctor-card__surface::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    #15a495 0%,
    #7ee168 18%,
    #e16d00 55%,
    #edb414 82%,
    #15a495 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.38s ease;
}

.ctr-doctor-card__surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(21, 164, 149, 0.1), transparent 38%),
    radial-gradient(circle at bottom right, rgba(225, 109, 0, 0.08), transparent 36%);
  opacity: 0.92;
  z-index: -1;
}

.ctr-doctor-card:hover .ctr-doctor-card__surface,
.ctr-doctor-card:focus-within .ctr-doctor-card__surface {
  border-color: rgba(21, 164, 149, 0.14);
  box-shadow:
    0 30px 72px rgba(10, 18, 28, 0.14),
    0 0 30px rgba(21, 164, 149, 0.08);
}

.ctr-doctor-card:hover .ctr-doctor-card__surface::before,
.ctr-doctor-card:focus-within .ctr-doctor-card__surface::before {
  opacity: 1;
}

/* IMAGEM */
.ctr-doctor-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #dde6e7;
}

.ctr-doctor-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 15, 22, 0) 0%, rgba(9, 15, 22, 0.08) 48%, rgba(9, 15, 22, 0.4) 100%);
  z-index: 2;
  pointer-events: none;
}

.ctr-doctor-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.55) 0 4px, transparent 10px),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.16) 0 12px, transparent 18px),
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.24) 0 5px, transparent 10px),
    radial-gradient(circle at 76% 14%, rgba(255, 255, 255, 0.14) 0 12px, transparent 18px);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
}

.ctr-doctor-card__image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.ctr-doctor-card:hover .ctr-doctor-card__image,
.ctr-doctor-card:focus-within .ctr-doctor-card__image {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.02);
}

.ctr-doctor-card:hover .ctr-doctor-card__media::after,
.ctr-doctor-card:focus-within .ctr-doctor-card__media::after {
  opacity: 1;
  transform: scale(1.02);
}

/* CONTEÚDO */
.ctr-doctor-card__content {
  position: relative;
  padding: 22px 22px 24px;
}

.ctr-doctor-card__name {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ctr-doctor-card__specialty {
  margin: 0 0 10px;
  color: #39cb45;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ctr-doctor-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ctr-doctor-card__crm {
  margin: 0;
  color: #7a8394;
  font-size: 0.93rem;
  line-height: 1.45;
  font-weight: 500;
}

.ctr-doctor-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ctr-doctor-card__action {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(21, 164, 149, 0.08);
  color: #5f6980;
  box-shadow: 0 10px 20px rgba(10, 18, 28, 0.06);
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.ctr-doctor-card__action:hover,
.ctr-doctor-card__action:focus-visible {
  transform: translateY(-3px);
  color: #ffffff;
  background: var(--gradient-main);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 16px 30px rgba(225, 109, 0, 0.16),
    0 0 22px rgba(21, 164, 149, 0.12);
  outline: none;
}

.ctr-doctor-card__action i {
  font-size: 1rem;
  line-height: 1;
}

/* REVEAL */
.ctr-medical-team-reveal {
  opacity: 0;
  transform: translateY(26px);
}

.ctr-medical-team-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* RESPONSIVO */
@media (max-width: 1200px) {
  .ctr-doctor-card {
    width: 286px;
    min-width: 286px;
  }

  .ctr-doctor-card__image {
    height: 320px;
  }
}

@media (max-width: 992px) {
  .ctr-medical-team-section {
    padding: 78px 0 86px;
  }

  .ctr-medical-team-header {
    margin-bottom: 34px;
  }

  .ctr-medical-team-marquee::before,
  .ctr-medical-team-marquee::after {
    width: 70px;
  }

  .ctr-doctor-card {
    width: 268px;
    min-width: 268px;
    border-radius: 26px;
  }

  .ctr-doctor-card__surface {
    border-radius: 26px;
  }

  .ctr-doctor-card__image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .ctr-medical-team-section {
    padding: 68px 0 78px;
  }

  .ctr-medical-team-title {
    font-size: clamp(1.8rem, 7vw, 2.9rem);
  }

  .ctr-medical-team-subtitle {
    font-size: 0.98rem;
    line-height: 1.74;
  }

  .ctr-medical-team-track,
  .ctr-medical-team-group {
    gap: 18px;
  }

  .ctr-medical-team-marquee::before,
  .ctr-medical-team-marquee::after {
    width: 36px;
  }

  .ctr-doctor-card {
    width: 248px;
    min-width: 248px;
    border-radius: 24px;
  }

  .ctr-doctor-card__surface {
    border-radius: 24px;
  }

  .ctr-doctor-card__image {
    height: 280px;
  }

  .ctr-doctor-card__content {
    padding: 18px 18px 20px;
  }

  .ctr-doctor-card__name {
    font-size: 1.02rem;
  }

  .ctr-doctor-card__specialty,
  .ctr-doctor-card__crm {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .ctr-medical-team-section {
    padding: 60px 0 72px;
  }

  .ctr-medical-team-eyebrow {
    min-height: 40px;
    font-size: 0.82rem;
  }

  .ctr-doctor-card {
    width: 230px;
    min-width: 230px;
  }

  .ctr-doctor-card__image {
    height: 258px;
  }

  .ctr-doctor-card__action {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ctr-medical-team-marquee {
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-behavior: auto;
  }

  .ctr-medical-team-marquee::before,
  .ctr-medical-team-marquee::after {
    display: none;
  }

  .ctr-medical-team-track {
    transform: none !important;
    width: max-content;
  }
}































/* =========================================
   SESSÃO | GALERIA DE UNIDADES CTR
========================================= */
.ctr-units-gallery-section {
  position: relative;
  padding: 96px 0 104px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08) 0%, transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(21, 164, 149, 0.16) 0%, transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(237, 180, 20, 0.14) 0%, transparent 26%),
    linear-gradient(180deg, #e16d00 0%, #cf6200 100%);
}

.ctr-units-gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 0;
}

.ctr-units-gallery-section .container {
  position: relative;
  z-index: 2;
}

.ctr-units-gallery-section__header {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.ctr-units-gallery-section__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 4.35rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.ctr-units-gallery-section__subtitle {
  max-width: 780px;
  margin: 0 auto;
  color: #d8fff9;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ctr-units-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 178px);
  justify-content: center;
  gap: 18px 18px;
}

.ctr-units-gallery-card {
  position: relative;
  width: 178px;
  height: 205px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
  box-shadow:
    0 14px 34px rgba(30, 10, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.ctr-units-gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 8, 0, 0) 0%, rgba(22, 8, 0, 0.16) 100%);
  z-index: 1;
  pointer-events: none;
}

.ctr-units-gallery-card::after {
  content: "";
  position: absolute;
  inset: -10px;
  background:
    radial-gradient(circle, rgba(21, 164, 149, 0.24) 0%, transparent 62%);
  filter: blur(20px);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: -1;
  pointer-events: none;
}

.ctr-units-gallery-card:hover,
.ctr-units-gallery-card:focus-visible {
  transform: translateY(-6px);
  filter: saturate(1.05);
  box-shadow:
    0 18px 40px rgba(30, 10, 0, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  outline: none;
}

.ctr-units-gallery-card:hover::after,
.ctr-units-gallery-card:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.ctr-units-gallery-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.ctr-units-gallery-card:hover .ctr-units-gallery-card__image,
.ctr-units-gallery-card:focus-visible .ctr-units-gallery-card__image {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.02);
}

/* REVEAL */
.ctr-units-gallery-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.ctr-units-gallery-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* LIGHTBOX */
.ctr-units-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ctr-units-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ctr-units-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 20, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ctr-units-lightbox__dialog {
  position: relative;
  width: min(100%, 960px);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(21, 164, 149, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(225, 109, 0, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(246,248,250,0.99) 100%);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255,255,255,0.14);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s ease;
}

.ctr-units-lightbox.is-open .ctr-units-lightbox__dialog {
  transform: translateY(0) scale(1);
}

.ctr-units-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 14, 24, 0.68);
  backdrop-filter: blur(8px);
  cursor: pointer;
  z-index: 6;
}

.ctr-units-lightbox__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.ctr-units-lightbox__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.ctr-units-lightbox__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ctr-units-lightbox__media-wrap {
  position: relative;
  width: 100%;
  background: #eef3f6;
}

.ctr-units-lightbox__image {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.ctr-units-lightbox__content {
  padding: 28px 30px 30px;
  text-align: center;
}

.ctr-units-lightbox__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ctr-units-lightbox__text {
  margin: 0 0 20px;
  color: #495263;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 600;
}

.ctr-units-lightbox__map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 230px;
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  box-shadow:
    0 18px 34px rgba(225, 109, 0, 0.22),
    0 0 24px rgba(21, 164, 149, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ctr-units-lightbox__map-btn:hover,
.ctr-units-lightbox__map-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 24px 44px rgba(225, 109, 0, 0.28),
    0 0 28px rgba(21, 164, 149, 0.22);
  outline: none;
}

.ctr-units-lightbox__map-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .ctr-units-gallery-grid {
    grid-template-columns: repeat(4, 178px);
  }
}

@media (max-width: 992px) {
  .ctr-units-gallery-grid {
    grid-template-columns: repeat(3, 178px);
  }
}

@media (max-width: 768px) {
  .ctr-units-gallery-section {
    padding: 74px 0 82px;
  }

  .ctr-units-gallery-grid {
    grid-template-columns: repeat(2, 178px);
  }

  .ctr-units-lightbox {
    padding: 18px;
  }

  .ctr-units-lightbox__dialog {
    border-radius: 24px;
  }

  .ctr-units-lightbox__content {
    padding: 22px 20px 24px;
  }

  .ctr-units-lightbox__image {
    max-height: 420px;
  }
}

@media (max-width: 480px) {
  .ctr-units-gallery-grid {
    grid-template-columns: 178px;
  }

  .ctr-units-lightbox__map-btn {
    width: 100%;
    min-width: 0;
  }
}







































/* =========================================
   SESSÃO | ESTATÍSTICAS / AUTORIDADE CTR
========================================= */
.ctr-authority-section {
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: relative;
  padding: 96px 0 92px;
  overflow: hidden;
  isolation: isolate;
  background: #15a495;
}

.ctr-authority-section::before {
  content: "";
  position: absolute;
  inset: -8%;
  background-image: url("assets/images/autoridade-parallax.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0) scale(1.08);
  will-change: transform;
  z-index: 0;
}

.ctr-authority-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(21, 164, 149, 0.82) 0%, rgba(21, 164, 149, 0.82) 100%),
    linear-gradient(135deg, rgba(16, 143, 131, 0.32) 0%, rgba(21, 164, 149, 0.22) 100%);
}

.ctr-authority-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(55px);
}

.ctr-authority-bg-shape--1 {
  top: -90px;
  left: -90px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.18) 0%, transparent 70%);
}

.ctr-authority-bg-shape--2 {
  right: -100px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.18) 0%, transparent 72%);
}

.ctr-authority-container {
  position: relative;
  z-index: 2;
}

.ctr-authority-content {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.ctr-authority-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(7, 20, 26, 0.14);
}

.ctr-authority-eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #7ef7e6 100%);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.08),
    0 0 18px rgba(255, 255, 255, 0.22);
}

.ctr-authority-title {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4.8vw, 4.7rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.07em;
  color: #ffffff;
  text-wrap: balance;
}

.ctr-authority-title span {
  color: #ffffff;
}

.ctr-authority-subtitle {
  max-width: 760px;
  margin: 0 auto 46px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.06rem;
  line-height: 1.72;
  font-weight: 600;
  text-wrap: balance;
}

.ctr-authority-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.ctr-authority-stat {
  position: relative;
  padding: 18px 12px 10px;
  text-align: center;
  border-radius: 26px;
  background: transparent;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.ctr-authority-stat::before {
  content: "";
  position: absolute;
  inset: 12px 14px auto;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 255, 227, 0.16) 0%, transparent 72%);
  filter: blur(24px);
  opacity: 0;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  pointer-events: none;
}

.ctr-authority-stat:hover,
.ctr-authority-stat:focus-within {
  transform: translateY(-6px);
}

.ctr-authority-stat:hover::before,
.ctr-authority-stat:focus-within::before {
  opacity: 1;
  transform: scale(1.04);
}

.ctr-authority-stat__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow:
    0 14px 30px rgba(6, 18, 24, 0.12),
    inset 0 0 0 1px rgba(255,255,255,0.03);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.ctr-authority-stat__icon svg {
  width: 30px;
  height: 30px;
}

.ctr-authority-stat:hover .ctr-authority-stat__icon,
.ctr-authority-stat:focus-within .ctr-authority-stat__icon {
  transform: translateY(-4px) scale(1.04);
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 34px rgba(6, 18, 24, 0.16),
    0 0 20px rgba(61, 255, 227, 0.12);
}

.ctr-authority-stat__number {
  position: relative;
  display: block;
  margin-bottom: 10px;
  color: #39f2d5;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.08em;
  text-shadow:
    0 0 10px rgba(57, 242, 213, 0.35),
    0 0 22px rgba(57, 242, 213, 0.22),
    0 0 42px rgba(57, 242, 213, 0.16);
  filter: drop-shadow(0 0 12px rgba(57, 242, 213, 0.18));
}

.ctr-authority-stat__number::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 150px;
  height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(57, 242, 213, 0.24) 0%, transparent 72%);
  filter: blur(16px);
  z-index: -1;
  pointer-events: none;
}

.ctr-authority-stat__label {
  margin: 0 auto;
  max-width: 240px;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.ctr-authority-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.ctr-authority-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1200px) {
  .ctr-authority-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }
}

@media (max-width: 768px) {
  .ctr-authority-section {
    padding: 78px 0 78px;
  }

  .ctr-authority-title {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .ctr-authority-subtitle {
    font-size: 0.98rem;
    line-height: 1.68;
    margin-bottom: 34px;
  }

  .ctr-authority-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ctr-authority-stat {
    padding: 12px 6px 6px;
  }

  .ctr-authority-stat__icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    margin-bottom: 14px;
  }

  .ctr-authority-stat__icon svg {
    width: 26px;
    height: 26px;
  }

  .ctr-authority-stat__number {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .ctr-authority-stat__label {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .ctr-authority-section {
    padding: 64px 0 68px;
  }

  .ctr-authority-eyebrow {
    min-height: 40px;
    font-size: 0.82rem;
  }

  .ctr-authority-subtitle {
    font-size: 0.92rem;
  }

  .ctr-authority-stat__label {
    font-size: 0.84rem;
  }
}
































/* =========================================
   SESSÃO | LABORATÓRIOS CTR
========================================= */
.ctr-locations-section {
  position: relative;
  padding: 96px 0 104px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 18%, rgba(225, 109, 0, 0.12) 0%, transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(21, 164, 149, 0.16) 0%, transparent 26%),
    linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);

  --ctr-loc-font-title: inherit;
  --ctr-loc-font-subtitle: inherit;
  --ctr-loc-font-eyebrow: inherit;
  --ctr-loc-font-overlay-title: inherit;
  --ctr-loc-font-unit-name: inherit;
  --ctr-loc-font-unit-meta: inherit;

  --ctr-loc-title-size: clamp(2rem, 4vw, 3.9rem);
  --ctr-loc-subtitle-size: 1rem;
  --ctr-loc-eyebrow-size: 0.86rem;

  --ctr-loc-title-weight: 800;
  --ctr-loc-subtitle-weight: 400;
  --ctr-loc-eyebrow-weight: 800;
  --ctr-loc-overlay-title-weight: 800;
  --ctr-loc-unit-name-weight: 800;
  --ctr-loc-unit-meta-weight: 600;

  --ctr-loc-title-line: 0.98;
  --ctr-loc-subtitle-line: 1.8;
  --ctr-loc-eyebrow-line: 1;
  --ctr-loc-overlay-title-line: 1.1;
  --ctr-loc-unit-name-line: 1.2;
  --ctr-loc-unit-meta-line: 1.45;

  --ctr-loc-overlay-scale: 0.60;

  --ctr-loc-overlay-top: calc(22px * var(--ctr-loc-overlay-scale));
  --ctr-loc-overlay-left: calc(22px * var(--ctr-loc-overlay-scale));
  --ctr-loc-overlay-right: auto;
  --ctr-loc-overlay-bottom: auto;

  --ctr-loc-overlay-translate-x: 80px;
  --ctr-loc-overlay-translate-y: 30px;

  --ctr-loc-overlay-mobile-top: auto;
  --ctr-loc-overlay-mobile-left: 14px;
  --ctr-loc-overlay-mobile-right: 14px;
  --ctr-loc-overlay-mobile-bottom: 14px;

  --ctr-loc-overlay-mobile-translate-x: 0px;
  --ctr-loc-overlay-mobile-translate-y: 0px;

  --ctr-loc-overlay-width-min: calc(280px * var(--ctr-loc-overlay-scale));
  --ctr-loc-overlay-width-fluid: calc(28vw * var(--ctr-loc-overlay-scale));
  --ctr-loc-overlay-width-max: calc(280px * var(--ctr-loc-overlay-scale));

  --ctr-loc-overlay-padding: calc(18px * var(--ctr-loc-overlay-scale));
  --ctr-loc-overlay-radius: calc(24px * var(--ctr-loc-overlay-scale));
  --ctr-loc-overlay-max-height: calc(100% - (44px * var(--ctr-loc-overlay-scale)));

  --ctr-loc-overlay-mobile-width: auto;
  --ctr-loc-overlay-mobile-max-height: 220px;
  --ctr-loc-overlay-mobile-padding: 14px;
  --ctr-loc-overlay-mobile-radius: 20px;

  --ctr-loc-overlay-title-margin-bottom: calc(14px * var(--ctr-loc-overlay-scale));
  --ctr-loc-overlay-list-gap: calc(10px * var(--ctr-loc-overlay-scale));
  --ctr-loc-overlay-item-gap: calc(12px * var(--ctr-loc-overlay-scale));
  --ctr-loc-overlay-item-padding: calc(12px * var(--ctr-loc-overlay-scale));
  --ctr-loc-overlay-item-radius: calc(18px * var(--ctr-loc-overlay-scale));

  --ctr-loc-overlay-icon-size: calc(42px * var(--ctr-loc-overlay-scale));
  --ctr-loc-overlay-icon-radius: calc(14px * var(--ctr-loc-overlay-scale));
  --ctr-loc-overlay-icon-svg-size: calc(18px * var(--ctr-loc-overlay-scale));

  --ctr-loc-overlay-title-size: calc(1.05rem * var(--ctr-loc-overlay-scale));
  --ctr-loc-unit-name-size: calc(0.85rem * var(--ctr-loc-overlay-scale));
  --ctr-loc-unit-meta-size: calc(0.8rem * var(--ctr-loc-overlay-scale));
  --ctr-loc-unit-name-margin-bottom: calc(4px * var(--ctr-loc-overlay-scale));

  /* =====================================================
     ALTERE AQUI | ALTURA DO MAPA
     AUMENTE OU DIMINUA ESTES VALORES QUANDO QUISER
  ===================================================== */
  --ctr-loc-map-height-desktop: 390px;
  --ctr-loc-map-min-height-desktop: 550px;

  --ctr-loc-map-height-tablet: 430px;
  --ctr-loc-map-min-height-tablet: 430px;

  --ctr-loc-map-height-mobile: 460px;
  --ctr-loc-map-min-height-mobile: 460px;

  /* =====================================================
     ALTERE AQUI | TAMANHO GERAL DO POPUP
  ===================================================== */
  --ctr-loc-popup-width: 300px;

  /* =====================================================
     ALTERE AQUI | TAMANHO DA IMAGEM DO POPUP
  ===================================================== */
  --ctr-loc-popup-image-width: 270px;
  --ctr-loc-popup-image-height: 180px;

  /* =====================================================
     ALTERE AQUI | MARGENS E ESPAÇAMENTOS DO POPUP
  ===================================================== */
  --ctr-loc-popup-side-padding: 14px;
  --ctr-loc-popup-media-top-padding: 14px;
  --ctr-loc-popup-content-top-padding: 10px;
  --ctr-loc-popup-content-bottom-padding: 14px;

  /* =====================================================
     ALTERE AQUI | ESPAÇOS ENTRE TÍTULO / TELEFONE / ENDEREÇO
  ===================================================== */
  --ctr-loc-popup-title-gap: 4px;
  --ctr-loc-popup-phone-gap: 6px;
  --ctr-loc-popup-text-gap: 10px;
}

.ctr-locations-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.ctr-locations-section .container {
  position: relative;
  z-index: 2;
}

.ctr-locations-section__header {
  max-width: 840px;
  margin: 0 auto 42px;
  text-align: center;
}

.ctr-locations-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(21, 164, 149, 0.08);
  border: 1px solid rgba(21, 164, 149, 0.12);
  color: #15a495;
  font-family: var(--ctr-loc-font-eyebrow);
  font-size: var(--ctr-loc-eyebrow-size);
  font-weight: var(--ctr-loc-eyebrow-weight);
  line-height: var(--ctr-loc-eyebrow-line);
  letter-spacing: -0.01em;
}

.ctr-locations-section__eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  box-shadow:
    0 0 0 6px rgba(21, 164, 149, 0.08),
    0 0 18px rgba(225, 109, 0, 0.18);
}

.ctr-locations-section__title {
  margin: 0 0 18px;
  color: #1f2734;
  font-family: var(--ctr-loc-font-title);
  font-size: var(--ctr-loc-title-size);
  font-weight: var(--ctr-loc-title-weight);
  line-height: var(--ctr-loc-title-line);
  letter-spacing: -0.055em;
}

.ctr-locations-section__title span {
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ctr-locations-section__subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #5f6978;
  font-family: var(--ctr-loc-font-subtitle);
  font-size: var(--ctr-loc-subtitle-size);
  font-weight: var(--ctr-loc-subtitle-weight);
  line-height: var(--ctr-loc-subtitle-line);
}

.ctr-locations-map-bleed {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.ctr-locations-map-wrap {
  position: relative;
  width: 100%;
  height: var(--ctr-loc-map-height-desktop);
  min-height: var(--ctr-loc-map-min-height-desktop);
  overflow: hidden;
  background: #edf1f4;
  border-top: 1px solid rgba(21, 164, 149, 0.08);
  border-bottom: 1px solid rgba(21, 164, 149, 0.08);
  box-shadow:
    0 24px 60px rgba(10, 18, 28, 0.08),
    0 8px 20px rgba(21, 164, 149, 0.04);
  overscroll-behavior: contain;
}

.ctr-locations-map {
  width: 100%;
  height: 100%;
  min-height: 100%;
  z-index: 1;
}

.ctr-locations-map .leaflet-container,
.ctr-locations-map.leaflet-container {
  background: #edf1f4;
  font: 12px/1.5 "Sora", sans-serif;
}

.ctr-locations-map .leaflet-pane,
.ctr-locations-map .leaflet-tile,
.ctr-locations-map .leaflet-marker-icon,
.ctr-locations-map .leaflet-marker-shadow,
.ctr-locations-map .leaflet-tile-container,
.ctr-locations-map .leaflet-pane > svg,
.ctr-locations-map .leaflet-pane > canvas,
.ctr-locations-map .leaflet-zoom-box,
.ctr-locations-map .leaflet-image-layer,
.ctr-locations-map .leaflet-layer {
  position: absolute !important;
  left: 0;
  top: 0;
}

.ctr-locations-map .leaflet-container img,
.ctr-locations-map .leaflet-pane img,
.ctr-locations-map .leaflet-tile,
.ctr-locations-map .leaflet-marker-icon,
.ctr-locations-map .leaflet-marker-shadow {
  max-width: none !important;
  max-height: none !important;
  width: auto !important;
  height: auto !important;
}

.ctr-locations-map .leaflet-tile {
  visibility: inherit !important;
}

.ctr-locations-map .leaflet-control-zoom {
  margin-top: 14px;
  margin-right: 14px;
  border: 0;
  box-shadow: none;
}

.ctr-locations-map .leaflet-control-zoom a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  border: 0;
  color: #1f2734;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(10, 18, 28, 0.12);
}

.ctr-locations-map .leaflet-control-zoom a:first-child {
  border-radius: 14px 14px 0 0;
}

.ctr-locations-map .leaflet-control-zoom a:last-child {
  border-radius: 0 0 14px 14px;
}

.ctr-locations-map .leaflet-control-attribution {
  font-size: 10px;
  line-height: 1.2;
  padding: 3px 8px;
  border-radius: 10px 0 0 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ctr-locations-overlay {
  position: absolute;
  top: var(--ctr-loc-overlay-top);
  left: var(--ctr-loc-overlay-left);
  right: var(--ctr-loc-overlay-right);
  bottom: var(--ctr-loc-overlay-bottom);
  transform: translate(
    var(--ctr-loc-overlay-translate-x),
    var(--ctr-loc-overlay-translate-y)
  );
  width: clamp(
    var(--ctr-loc-overlay-width-min),
    var(--ctr-loc-overlay-width-fluid),
    var(--ctr-loc-overlay-width-max)
  );
  max-height: var(--ctr-loc-overlay-max-height);
  padding: var(--ctr-loc-overlay-padding);
  border-radius: var(--ctr-loc-overlay-radius);
  z-index: 500;
  overflow: auto;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 18px 38px rgba(10, 18, 28, 0.16),
    0 0 0 1px rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  scrollbar-width: none;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.ctr-locations-overlay::-webkit-scrollbar {
  display: none;
}

.ctr-locations-overlay__list {
  display: grid;
  gap: var(--ctr-loc-overlay-list-gap);
}

.ctr-locations-side__item {
  display: flex;
  align-items: flex-start;
  gap: var(--ctr-loc-overlay-item-gap);
  width: 100%;
  padding: var(--ctr-loc-overlay-item-padding);
  border: 0;
  border-radius: var(--ctr-loc-overlay-item-radius);
  background: rgba(21, 164, 149, 0.05);
  border: 1px solid rgba(21, 164, 149, 0.08);
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.ctr-locations-side__item:hover,
.ctr-locations-side__item:focus-visible,
.ctr-locations-side__item.is-active {
  transform: translateY(-2px);
  background: rgba(21, 164, 149, 0.08);
  border-color: rgba(21, 164, 149, 0.14);
  box-shadow:
    0 12px 24px rgba(10, 18, 28, 0.08),
    0 0 18px rgba(21, 164, 149, 0.08);
  outline: none;
}

.ctr-locations-side__item:focus {
  outline: none;
}

.ctr-locations-side__icon {
  width: var(--ctr-loc-overlay-icon-size);
  height: var(--ctr-loc-overlay-icon-size);
  flex-shrink: 0;
  border-radius: var(--ctr-loc-overlay-icon-radius);
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  box-shadow:
    0 12px 24px rgba(225, 109, 0, 0.16),
    0 0 18px rgba(21, 164, 149, 0.12);
}

.ctr-locations-side__icon svg {
  width: var(--ctr-loc-overlay-icon-svg-size);
  height: var(--ctr-loc-overlay-icon-svg-size);
}

.ctr-locations-side__name {
  display: block;
  margin: 0 0 var(--ctr-loc-unit-name-margin-bottom);
  color: #1f2734;
  font-family: var(--ctr-loc-font-unit-name);
  font-size: var(--ctr-loc-unit-name-size);
  font-weight: var(--ctr-loc-unit-name-weight);
  line-height: var(--ctr-loc-unit-name-line);
}

.ctr-locations-side__meta {
  display: block;
  color: #6a7586;
  font-family: var(--ctr-loc-font-unit-meta);
  font-size: var(--ctr-loc-unit-meta-size);
  font-weight: var(--ctr-loc-unit-meta-weight);
  line-height: var(--ctr-loc-unit-meta-line);
}

.ctr-location-marker {
  width: 26px;
  height: 26px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  box-shadow:
    0 12px 24px rgba(225, 109, 0, 0.22),
    0 0 22px rgba(21, 164, 149, 0.18);
  border: 2px solid rgba(255,255,255,0.86);
  position: relative;
}

.ctr-location-marker::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 50%;
  background: #ffffff;
}

.ctr-location-marker.is-highlight {
  animation: ctrLocationMarkerPulse 1.5s ease-in-out 3;
}

@keyframes ctrLocationMarkerPulse {
  0%, 100% {
    transform: rotate(-45deg) scale(1);
  }
  50% {
    transform: rotate(-45deg) scale(1.14);
  }
}

.leaflet-popup-content-wrapper {
  border-radius: 22px !important;
  padding: 0 !important;
  overflow: hidden;
  box-shadow:
    0 28px 60px rgba(10, 18, 28, 0.18),
    0 0 0 1px rgba(255,255,255,0.16) !important;
}

.leaflet-popup-content {
  margin: 0 !important;
  width: var(--ctr-loc-popup-width) !important;
}

.leaflet-popup-tip {
  box-shadow: none !important;
}

.ctr-map-popup {
  width: var(--ctr-loc-popup-width);
  background:
    radial-gradient(circle at top left, rgba(21, 164, 149, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(225, 109, 0, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(246,248,250,0.99) 100%);
}

.leaflet-popup-content .ctr-map-popup__media {
  padding:
    var(--ctr-loc-popup-media-top-padding)
    var(--ctr-loc-popup-side-padding)
    0
    var(--ctr-loc-popup-side-padding) !important;
}

.leaflet-popup-content .ctr-map-popup__image {
  display: block;
  width: min(100%, var(--ctr-loc-popup-image-width)) !important;
  max-width: 100% !important;
  height: var(--ctr-loc-popup-image-height) !important;
  margin: 0 auto !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 16px !important;
}

.leaflet-popup-content .ctr-map-popup__content {
  padding:
    var(--ctr-loc-popup-content-top-padding)
    var(--ctr-loc-popup-side-padding)
    var(--ctr-loc-popup-content-bottom-padding)
    var(--ctr-loc-popup-side-padding) !important;
}

.leaflet-popup-content .ctr-map-popup__title {
  margin: 0 0 var(--ctr-loc-popup-title-gap) !important;
  font-size: 1.02rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.leaflet-popup-content .ctr-map-popup__phone {
  margin: 0 0 var(--ctr-loc-popup-phone-gap) !important;
  color: #495263;
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 700;
}

.leaflet-popup-content .ctr-map-popup__text {
  margin: 0 0 var(--ctr-loc-popup-text-gap) !important;
  color: #5f6978;
  font-size: 0.83rem;
  line-height: 1.45;
  font-weight: 500;
}

.ctr-map-popup__button,
.ctr-map-popup__button:link,
.ctr-map-popup__button:visited,
.ctr-map-popup__button:hover,
.ctr-map-popup__button:focus,
.ctr-map-popup__button:focus-visible,
.ctr-map-popup__button:active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  font-size: 0.82rem;
  font-weight: 800;
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  box-shadow:
    0 14px 26px rgba(225, 109, 0, 0.2),
    0 0 20px rgba(21, 164, 149, 0.14);
}

.ctr-map-popup__button span,
.ctr-map-popup__button span * {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

.ctr-map-popup__button svg,
.ctr-map-popup__button svg * {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #FFFFFF !important;
  fill: #FFFFFF !important;
  stroke: #FFFFFF !important;
}

.ctr-locations-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.ctr-locations-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.78s ease,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 992px) {
  .ctr-locations-overlay {
    width: min(340px, calc(100% - 32px));
    top: 16px;
    left: 16px;
    right: auto;
    bottom: auto;
    max-height: calc(100% - 32px);
    transform: translate(0, 0);
  }
}

@media (max-width: 768px) {
  .ctr-locations-section {
    padding: 74px 0 82px;
  }

  .ctr-locations-map-wrap {
    height: var(--ctr-loc-map-height-tablet);
    min-height: var(--ctr-loc-map-min-height-tablet);
  }

  .ctr-locations-overlay {
    top: var(--ctr-loc-overlay-mobile-top);
    left: var(--ctr-loc-overlay-mobile-left);
    right: var(--ctr-loc-overlay-mobile-right);
    bottom: var(--ctr-loc-overlay-mobile-bottom);
    width: var(--ctr-loc-overlay-mobile-width);
    max-height: var(--ctr-loc-overlay-mobile-max-height);
    padding: var(--ctr-loc-overlay-mobile-padding);
    border-radius: var(--ctr-loc-overlay-mobile-radius);
    transform: translate(
      var(--ctr-loc-overlay-mobile-translate-x),
      var(--ctr-loc-overlay-mobile-translate-y)
    );
  }
}

@media (max-width: 480px) {
  .ctr-locations-map-wrap {
    height: var(--ctr-loc-map-height-mobile);
    min-height: var(--ctr-loc-map-min-height-mobile);
  }

  .ctr-locations-section {
    --ctr-loc-popup-width: 280px;
    --ctr-loc-popup-image-width: 252px;
    --ctr-loc-popup-image-height: 160px;
  }
}












































/* =========================================
   SESSÃO | CONVÊNIOS CTR
========================================= */
.ctr-insurance-section {
  position: relative;
  padding: 92px 0 96px;
  background: #f8f9fa;
  overflow: hidden;
  isolation: isolate;
}

.ctr-insurance-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(78px);
  pointer-events: none;
  z-index: 0;
}

.ctr-insurance-bg--left {
  top: 24px;
  left: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.12) 0%, transparent 72%);
}

.ctr-insurance-bg--right {
  right: -140px;
  bottom: 10px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.14) 0%, transparent 72%);
}

.ctr-insurance-container {
  position: relative;
  z-index: 2;
}

.ctr-insurance-header {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.ctr-insurance-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(21, 164, 149, 0.08);
  border: 1px solid rgba(21, 164, 149, 0.14);
  color: #15a495;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 34px rgba(10, 18, 28, 0.06);
}

.ctr-insurance-eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  box-shadow:
    0 0 0 6px rgba(21, 164, 149, 0.08),
    0 0 18px rgba(225, 109, 0, 0.2);
}

.ctr-insurance-title {
  margin: 0 0 18px;
  color: #1f2734;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.ctr-insurance-title span {
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ctr-insurance-subtitle {
  max-width: 800px;
  margin: 0 auto;
  color: #5f6978;
  font-size: 1rem;
  line-height: 1.82;
  font-weight: 300;
}

.ctr-insurance-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  padding: 14px 0 8px;
}

.ctr-insurance-marquee::before,
.ctr-insurance-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 4;
  pointer-events: none;
}

.ctr-insurance-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f8f9fa 0%, rgba(248, 249, 250, 0) 100%);
}

.ctr-insurance-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f8f9fa 0%, rgba(248, 249, 250, 0) 100%);
}

.ctr-insurance-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.ctr-insurance-group {
  display: flex;
  align-items: stretch;
  gap: 22px;
}

.ctr-insurance-card {
  position: relative;
  width: 210px;
  min-width: 210px;
  height: 138px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 164, 149, 0.08);
  box-shadow:
    0 18px 40px rgba(10, 18, 28, 0.06),
    0 8px 20px rgba(21, 164, 149, 0.03);
  backdrop-filter: blur(10px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.ctr-insurance-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(21, 164, 149, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(225, 109, 0, 0.07), transparent 32%);
  z-index: -2;
}

.ctr-insurance-card::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 28% 30%, rgba(21, 164, 149, 0.18) 0%, transparent 38%),
    radial-gradient(circle at 72% 72%, rgba(225, 109, 0, 0.16) 0%, transparent 36%);
  filter: blur(22px);
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    filter 0.35s ease;
  z-index: -1;
  pointer-events: none;
}

.ctr-insurance-card:hover,
.ctr-insurance-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(21, 164, 149, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 26px 56px rgba(10, 18, 28, 0.1),
    0 0 22px rgba(21, 164, 149, 0.08);
}

.ctr-insurance-card:hover::after,
.ctr-insurance-card:focus-within::after {
  opacity: 1;
  transform: scale(1);
  filter: blur(24px);
}

.ctr-insurance-card__logo-wrap {
  position: relative;
  width: 168px;
  height: 92px;
  display: grid;
  place-items: center;
}

.ctr-insurance-card__logo {
  max-width: 168px;
  max-height: 92px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: saturate(1) contrast(1);
  transition:
    transform 0.35s ease,
    filter 0.35s ease,
    opacity 0.35s ease;
}

.ctr-insurance-card:hover .ctr-insurance-card__logo,
.ctr-insurance-card:focus-within .ctr-insurance-card__logo {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.03);
  animation: ctrInsurancePulse 1.4s ease-in-out infinite;
}

.ctr-insurance-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.ctr-insurance-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.78s ease,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes ctrInsurancePulse {
  0%, 100% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.09);
  }
}

@media (max-width: 992px) {
  .ctr-insurance-section {
    padding: 80px 0 86px;
  }

  .ctr-insurance-marquee::before,
  .ctr-insurance-marquee::after {
    width: 64px;
  }

  .ctr-insurance-card {
    width: 198px;
    min-width: 198px;
    height: 132px;
    border-radius: 22px;
  }

  .ctr-insurance-card__logo-wrap {
    width: 156px;
    height: 84px;
  }

  .ctr-insurance-card__logo {
    max-width: 156px;
    max-height: 84px;
  }
}

@media (max-width: 768px) {
  .ctr-insurance-section {
    padding: 70px 0 78px;
  }

  .ctr-insurance-title {
    font-size: clamp(1.85rem, 7vw, 2.9rem);
  }

  .ctr-insurance-subtitle {
    font-size: 0.98rem;
    line-height: 1.74;
  }

  .ctr-insurance-track,
  .ctr-insurance-group {
    gap: 18px;
  }

  .ctr-insurance-marquee::before,
  .ctr-insurance-marquee::after {
    width: 34px;
  }

  .ctr-insurance-card {
    width: 184px;
    min-width: 184px;
    height: 124px;
    padding: 12px;
    border-radius: 20px;
  }

  .ctr-insurance-card__logo-wrap {
    width: 144px;
    height: 78px;
  }

  .ctr-insurance-card__logo {
    max-width: 144px;
    max-height: 78px;
  }
}

@media (max-width: 480px) {
  .ctr-insurance-section {
    padding: 62px 0 70px;
  }

  .ctr-insurance-eyebrow {
    min-height: 40px;
    font-size: 0.82rem;
  }

  .ctr-insurance-card {
    width: 172px;
    min-width: 172px;
    height: 116px;
  }

  .ctr-insurance-card__logo-wrap {
    width: 132px;
    height: 72px;
  }

  .ctr-insurance-card__logo {
    max-width: 132px;
    max-height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ctr-insurance-marquee {
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-behavior: auto;
  }

  .ctr-insurance-marquee::before,
  .ctr-insurance-marquee::after {
    display: none;
  }

  .ctr-insurance-track {
    transform: none !important;
    width: max-content;
  }

  .ctr-insurance-card:hover .ctr-insurance-card__logo,
  .ctr-insurance-card:focus-within .ctr-insurance-card__logo {
    animation: none;
  }
}



















/* =========================================
   SESSÃO | DEPOIMENTOS CTR
========================================= */
.ctr-testimonials-section {
  position: relative;
  padding: 92px 0 98px;
  background: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.ctr-testimonials-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(78px);
  pointer-events: none;
  z-index: 0;
}

.ctr-testimonials-bg--left {
  top: 30px;
  left: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.12) 0%, transparent 72%);
}

.ctr-testimonials-bg--right {
  right: -140px;
  bottom: 20px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.14) 0%, transparent 72%);
}

.ctr-testimonials-container {
  position: relative;
  z-index: 2;
}

.ctr-testimonials-header {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.ctr-testimonials-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(21, 164, 149, 0.08);
  border: 1px solid rgba(21, 164, 149, 0.14);
  color: #15a495;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 34px rgba(10, 18, 28, 0.06);
}

.ctr-testimonials-eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  box-shadow:
    0 0 0 6px rgba(21, 164, 149, 0.08),
    0 0 18px rgba(225, 109, 0, 0.2);
}

.ctr-testimonials-title {
  margin: 0 0 18px;
  color: #1f2734;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.ctr-testimonials-title span {
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ctr-testimonials-subtitle {
  max-width: 800px;
  margin: 0 auto;
  color: #5f6978;
  font-size: 1rem;
  line-height: 1.82;
  font-weight: 300;
}

.ctr-testimonials-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  padding: 14px 0 10px;
}

.ctr-testimonials-marquee::before,
.ctr-testimonials-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 4;
  pointer-events: none;
}

.ctr-testimonials-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.ctr-testimonials-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.ctr-testimonials-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.ctr-testimonials-group {
  display: flex;
  align-items: stretch;
  gap: 22px;
}

.ctr-testimonial-card {
  position: relative;
  width: 360px;
  min-width: 360px;
  padding: 24px 22px 22px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(248,250,251,0.99) 100%);
  border: 1px solid rgba(21, 164, 149, 0.1);
  box-shadow:
    0 22px 50px rgba(10, 18, 28, 0.08),
    0 10px 24px rgba(21, 164, 149, 0.04);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.38s ease,
    border-color 0.38s ease,
    box-shadow 0.38s ease;
}

.ctr-testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(21, 164, 149, 0.11), transparent 36%),
    radial-gradient(circle at bottom right, rgba(225, 109, 0, 0.1), transparent 36%);
  z-index: -2;
}

.ctr-testimonial-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.38s ease;
}

.ctr-testimonial-card__glow {
  position: absolute;
  top: -34px;
  right: -20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.24) 0%, rgba(21, 164, 149, 0.12) 32%, transparent 72%);
  filter: blur(18px);
  z-index: -1;
  opacity: 0.84;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    filter 0.4s ease;
}

.ctr-testimonial-card:hover,
.ctr-testimonial-card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(21, 164, 149, 0.18);
  box-shadow:
    0 30px 66px rgba(10, 18, 28, 0.12),
    0 0 28px rgba(21, 164, 149, 0.08);
}

.ctr-testimonial-card:hover::after,
.ctr-testimonial-card:focus-within::after {
  transform: scaleX(1);
}

.ctr-testimonial-card:hover .ctr-testimonial-card__glow,
.ctr-testimonial-card:focus-within .ctr-testimonial-card__glow {
  transform: scale(1.14);
  opacity: 1;
  filter: blur(22px);
}

.ctr-testimonial-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.ctr-testimonial-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(21,164,149,0.12) 0%, rgba(225,109,0,0.1) 100%);
  box-shadow:
    0 14px 28px rgba(10, 18, 28, 0.08),
    inset 0 0 0 1px rgba(21, 164, 149, 0.08);
}

.ctr-testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ctr-testimonial-card__name {
  margin: 0 0 4px;
  color: #1f2734;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ctr-testimonial-card__role {
  margin: 0;
  color: #6a7586;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 500;
}

.ctr-testimonial-card__stars {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  color: #edb414;
}

.ctr-testimonial-card__stars i {
  font-size: 1rem;
}

.ctr-testimonial-card__quote {
  margin: 0;
  color: #4f5968;
  font-size: 0.96rem;
  line-height: 1.8;
  font-weight: 400;
}

.ctr-testimonials-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.ctr-testimonials-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.78s ease,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 992px) {
  .ctr-testimonials-section {
    padding: 80px 0 86px;
  }

  .ctr-testimonials-marquee::before,
  .ctr-testimonials-marquee::after {
    width: 64px;
  }

  .ctr-testimonial-card {
    width: 320px;
    min-width: 320px;
    border-radius: 26px;
  }
}

@media (max-width: 768px) {
  .ctr-testimonials-section {
    padding: 70px 0 78px;
  }

  .ctr-testimonials-title {
    font-size: clamp(1.85rem, 7vw, 2.9rem);
  }

  .ctr-testimonials-subtitle {
    font-size: 0.98rem;
    line-height: 1.74;
  }

  .ctr-testimonials-track,
  .ctr-testimonials-group {
    gap: 18px;
  }

  .ctr-testimonials-marquee::before,
  .ctr-testimonials-marquee::after {
    width: 34px;
  }

  .ctr-testimonial-card {
    width: 286px;
    min-width: 286px;
    border-radius: 24px;
    padding: 22px 18px 20px;
  }

  .ctr-testimonial-card__quote {
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .ctr-testimonial-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .ctr-testimonials-section {
    padding: 62px 0 70px;
  }

  .ctr-testimonials-eyebrow {
    min-height: 40px;
    font-size: 0.82rem;
  }

  .ctr-testimonial-card {
    width: 260px;
    min-width: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ctr-testimonials-marquee {
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-behavior: auto;
  }

  .ctr-testimonials-marquee::before,
  .ctr-testimonials-marquee::after {
    display: none;
  }

  .ctr-testimonials-track {
    transform: none !important;
    width: max-content;
  }
}

















/* =========================================
   SESSÃO | FAQ CTR
========================================= */
.ctr-faq-section {
  position: relative;
  padding: 96px 0 104px;
  background: #f8f9fa;
  overflow: hidden;
  isolation: isolate;
}

.ctr-faq-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(78px);
  pointer-events: none;
  z-index: 0;
}

.ctr-faq-bg--left {
  top: 60px;
  left: -140px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.12) 0%, transparent 72%);
}

.ctr-faq-bg--right {
  top: 80px;
  right: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.12) 0%, transparent 72%);
}

.ctr-faq-bg--bottom {
  left: 50%;
  bottom: -160px;
  transform: translateX(-50%);
  width: 520px;
  height: 260px;
  background: radial-gradient(circle, rgba(237, 180, 20, 0.1) 0%, transparent 72%);
}

.ctr-faq-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}

.ctr-faq-left {
  position: sticky;
  top: 110px;
}

.ctr-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(21, 164, 149, 0.08);
  border: 1px solid rgba(21, 164, 149, 0.14);
  color: #15a495;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 34px rgba(10, 18, 28, 0.06);
}

.ctr-faq-badge__icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
}

.ctr-faq-badge__icon svg {
  width: 22px;
  height: 22px;
}

.ctr-faq-title {
  margin: 0 0 18px;
  color: #1f2734;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.ctr-faq-title span {
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ctr-faq-description {
  margin: 0 0 24px;
  max-width: 520px;
  color: #5f6978;
  font-size: 1rem;
  line-height: 1.82;
  font-weight: 300;
}

/* OUVIDORIA */
.ctr-ombudsman-card {
  position: relative;
  padding: 34px 38px 40px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(21, 164, 149, 0.1), transparent 36%),
    radial-gradient(circle at bottom right, rgba(225, 109, 0, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(248,250,251,0.99) 100%);
  border: 1px solid rgba(21, 164, 149, 0.1);
  box-shadow:
    0 24px 54px rgba(10, 18, 28, 0.08),
    0 10px 24px rgba(21, 164, 149, 0.04);
  overflow: hidden;
  isolation: isolate;
}

.ctr-ombudsman-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 24%);
  pointer-events: none;
}

.ctr-ombudsman-card::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: -28px;
  width: 180px;
  height: 90px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.2) 0%, transparent 72%);
  filter: blur(22px);
  pointer-events: none;
}

.ctr-ombudsman-card__icon-wrap {
  position: absolute;
  top: 28px;
  right: 28px;
}

.ctr-ombudsman-card__icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  box-shadow:
    0 16px 30px rgba(225, 109, 0, 0.16),
    0 0 24px rgba(21, 164, 149, 0.12);
}

.ctr-ombudsman-card__icon-circle svg {
  width: 24px;
  height: 24px;
}

.ctr-ombudsman-card__title {
  margin: 0 0 18px;
  color: #1f2734;
  font-size: clamp(2rem, 2.4vw, 2.5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ctr-ombudsman-card__text {
  max-width: 520px;
  margin: 0 0 30px;
  color: #4f5968;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ctr-ombudsman-card__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 300px;
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #15a495 0%, #38d6c6 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow:
    0 20px 40px rgba(21, 164, 149, 0.28),
    0 0 28px rgba(21, 164, 149, 0.16);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease,
    background 0.35s ease;
  overflow: hidden;
}

.ctr-ombudsman-card__button::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -18%;
  width: 32%;
  height: 280%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.32) 50%,
    transparent 100%
  );
  transform: rotate(18deg);
  transition: transform 0.75s ease;
}

.ctr-ombudsman-card__button:hover,
.ctr-ombudsman-card__button:focus-visible {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  box-shadow:
    0 24px 46px rgba(225, 109, 0, 0.22),
    0 0 34px rgba(21, 164, 149, 0.2);
  filter: saturate(1.04);
  outline: none;
}

.ctr-ombudsman-card__button:hover::after,
.ctr-ombudsman-card__button:focus-visible::after {
  transform: translateX(360%) rotate(18deg);
}

.ctr-ombudsman-card__button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* FAQ LIST */
.ctr-faq-list {
  display: grid;
  gap: 14px;
}

.ctr-faq-item {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(249,251,252,0.98) 100%);
  border: 1px solid rgba(21, 164, 149, 0.08);
  box-shadow:
    0 18px 40px rgba(10, 18, 28, 0.06),
    0 8px 18px rgba(21, 164, 149, 0.03);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ctr-faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(21, 164, 149, 0.1), transparent 36%),
    radial-gradient(circle at bottom right, rgba(225, 109, 0, 0.08), transparent 34%);
  z-index: -1;
  opacity: 0.8;
}

.ctr-faq-item:hover,
.ctr-faq-item.is-active {
  transform: translateY(-2px);
  border-color: rgba(21, 164, 149, 0.14);
  box-shadow:
    0 22px 50px rgba(10, 18, 28, 0.08),
    0 0 22px rgba(21, 164, 149, 0.06);
}

.ctr-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px;
  color: #1f2734;
  font: inherit;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: left;
  cursor: pointer;
}

.ctr-faq-question__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
}

.ctr-faq-question__icon::before,
.ctr-faq-question__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ctr-faq-question__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ctr-faq-item.is-active .ctr-faq-question__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.ctr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.ctr-faq-answer__content {
  padding: 0 22px 22px;
  color: #5f6978;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 400;
}

.ctr-faq-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.ctr-faq-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.78s ease,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 992px) {
  .ctr-faq-section {
    padding: 82px 0 90px;
  }

  .ctr-faq-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ctr-faq-left {
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {
  .ctr-faq-section {
    padding: 72px 0 80px;
  }

  .ctr-faq-title {
    font-size: clamp(1.85rem, 7vw, 2.9rem);
  }

  .ctr-faq-description {
    font-size: 0.98rem;
    line-height: 1.74;
  }

  .ctr-ombudsman-card {
    padding: 28px 22px 28px;
    border-radius: 28px;
  }

  .ctr-ombudsman-card__icon-wrap {
    top: 22px;
    right: 22px;
  }

  .ctr-ombudsman-card__icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .ctr-ombudsman-card__title {
    font-size: 1.8rem;
    padding-right: 56px;
  }

  .ctr-ombudsman-card__text {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .ctr-ombudsman-card__button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .ctr-faq-item {
    border-radius: 22px;
  }

  .ctr-faq-question {
    padding: 18px 18px;
    font-size: 0.96rem;
  }

  .ctr-faq-answer__content {
    padding: 0 18px 18px;
    font-size: 0.92rem;
    line-height: 1.72;
  }
}

@media (max-width: 480px) {
  .ctr-faq-section {
    padding: 64px 0 72px;
  }

  .ctr-faq-badge {
    min-height: 40px;
    font-size: 0.82rem;
  }
}
















/* =========================================
   FOOTER PREMIUM CTR
========================================= */
.ctr-footer-premium {
  position: relative;
  padding: 64px 0 34px;
  background: #15a495;
  overflow: hidden;
  isolation: isolate;
}

.ctr-footer-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 22, 24, 0.08) 0%, rgba(12, 22, 24, 0.18) 100%);
  z-index: 0;
  pointer-events: none;
}

.ctr-footer-premium__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
  animation: ctrFooterGlowFloat 8s ease-in-out infinite;
}

.ctr-footer-premium__glow--left {
  top: -80px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.24) 0%, transparent 72%);
}

.ctr-footer-premium__glow--right {
  top: 60px;
  right: -140px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(237, 180, 20, 0.2) 0%, transparent 72%);
  animation-delay: 1.8s;
}

.ctr-footer-premium__glow--bottom {
  left: 50%;
  bottom: -180px;
  transform: translateX(-50%);
  width: 580px;
  height: 260px;
  background: radial-gradient(circle, rgba(232, 101, 74, 0.18) 0%, transparent 72%);
  animation-delay: 0.9s;
}

.ctr-footer-premium__container {
  position: relative;
  z-index: 2;
}

.ctr-footer-premium__top {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.95fr;
  gap: 44px;
  align-items: start;
}

.ctr-footer-premium__logo-link {
  display: inline-flex;
  text-decoration: none;
  margin-bottom: 22px;
}

.ctr-footer-premium__logo {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 90px;
  object-fit: contain;
}

.ctr-footer-premium__brand-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ctr-footer-premium__brand-highlight {
  margin: 0 0 22px;
  color: #c5ff56;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ctr-footer-premium__brand-text {
  margin: 0 0 30px;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.72;
  font-weight: 600;
}

.ctr-footer-premium__socials {
  display: flex;
  gap: 14px;
}

.ctr-footer-premium__social {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #19f0ce;
  background: rgba(8, 39, 64, 0.34);
  box-shadow: 0 12px 24px rgba(8, 18, 24, 0.14);
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease;
}

.ctr-footer-premium__social svg {
  width: 20px;
  height: 20px;
}

.ctr-footer-premium__social:hover,
.ctr-footer-premium__social:focus-visible {
  transform: translateY(-3px);
  color: #ffffff;
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  box-shadow:
    0 18px 30px rgba(225, 109, 0, 0.16),
    0 0 20px rgba(21, 164, 149, 0.16);
  outline: none;
}

.ctr-footer-premium__heading {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* COLUNA CONTATO - SEM FUNDO */
.ctr-footer-premium__contact-list {
  display: grid;
  gap: 18px;
}

.ctr-footer-premium__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: #ffffff;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.ctr-footer-premium__contact-item:hover,
.ctr-footer-premium__contact-item:focus-visible {
  transform: translateX(4px);
  opacity: 1;
  outline: none;
}

/* COLUNA FUNCIONAMENTO - COM FUNDO */
.ctr-footer-premium__hours {
  display: grid;
  gap: 16px;
}

.ctr-footer-premium__hours-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(8, 39, 64, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.ctr-footer-premium__hours-card:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 240, 206, 0.26);
  background: rgba(8, 39, 64, 0.42);
  box-shadow:
    0 14px 28px rgba(6, 18, 24, 0.14),
    0 0 18px rgba(25, 240, 206, 0.08);
}

.ctr-footer-premium__contact-icon,
.ctr-footer-premium__hours-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #19f0ce;
  background: rgba(7, 31, 53, 0.58);
}

.ctr-footer-premium__contact-icon svg,
.ctr-footer-premium__hours-icon svg {
  width: 20px;
  height: 20px;
}

.ctr-footer-premium__contact-item strong,
.ctr-footer-premium__hours-card strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.34;
  font-weight: 800;
}

.ctr-footer-premium__contact-item small,
.ctr-footer-premium__hours-card small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.45;
  font-weight: 700;
}

.ctr-footer-premium__hours-card small {
  color: #19f0ce;
  font-size: 0.95rem;
  font-weight: 800;
}

.ctr-footer-premium__special-box {
  position: relative;
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(25, 240, 206, 0.46);
  overflow: hidden;
  isolation: isolate;
}

.ctr-footer-premium__special-box::before {
  content: "";
  position: absolute;
  inset: -20px;
  background:
    radial-gradient(circle at top left, rgba(25, 240, 206, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(225, 109, 0, 0.12), transparent 32%);
  filter: blur(18px);
  z-index: -1;
  opacity: 0.95;
}

.ctr-footer-premium__special-box h5 {
  margin: 0 0 12px;
  color: #19f0ce;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
}

.ctr-footer-premium__special-box p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.55;
  font-weight: 700;
}

.ctr-footer-premium__divider {
  margin: 54px 0 26px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.ctr-footer-premium__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.ctr-footer-premium__copyright {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 700;
}

.ctr-footer-premium__copyright strong {
  color: #ffffff;
  font-weight: 800;
}

.ctr-footer-premium__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.ctr-footer-premium__links a,
.ctr-footer-premium__credit a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.26s ease, text-shadow 0.26s ease;
}

.ctr-footer-premium__links a::after,
.ctr-footer-premium__credit a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  transform: translateX(-50%);
  transition: width 0.28s ease;
}

.ctr-footer-premium__links a:hover,
.ctr-footer-premium__links a:focus-visible,
.ctr-footer-premium__credit a:hover,
.ctr-footer-premium__credit a:focus-visible {
  color: #ffffff;
  text-shadow:
    0 0 8px rgba(21, 164, 149, 0.18),
    0 0 16px rgba(225, 109, 0, 0.1);
  outline: none;
}

.ctr-footer-premium__links a:hover::after,
.ctr-footer-premium__links a:focus-visible::after,
.ctr-footer-premium__credit a:hover::after,
.ctr-footer-premium__credit a:focus-visible::after {
  width: 100%;
}

.ctr-footer-premium__legal {
  max-width: 860px;
  margin: 0 auto 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.94rem;
  line-height: 1.55;
  font-weight: 700;
}

.ctr-footer-premium__credit {
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 700;
}

.ctr-footer-premium__credit span {
  color: #19f0ce;
}

.ctr-footer-premium__credit-separator {
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.38) !important;
}

.ctr-footer-premium-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.ctr-footer-premium-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* BOTÃO FLUTUANTE */
.ctr-whatsapp-fixed {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 999;
  isolation: isolate;
}

.ctr-whatsapp-fixed__glow,
.ctr-whatsapp-fixed__ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ctr-whatsapp-fixed__glow {
  inset: -16px;
  background:
    radial-gradient(circle, rgba(21, 164, 149, 0.34) 0%, rgba(225, 109, 0, 0.24) 36%, transparent 72%);
  filter: blur(16px);
  animation: ctrWhatsappPulseGlow 1.7s ease-in-out infinite;
}

.ctr-whatsapp-fixed__ring {
  inset: -4px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  opacity: 0.5;
  animation: ctrWhatsappRing 1.9s ease-out infinite;
}

.ctr-whatsapp-fixed__button {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 20px 40px rgba(7, 18, 22, 0.22),
    0 0 34px rgba(21, 164, 149, 0.18);
}

.ctr-whatsapp-fixed__button svg {
  width: 34px;
  height: 34px;
}

@keyframes ctrFooterGlowFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.04);
  }
}

@keyframes ctrWhatsappPulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.88;
  }
  50% {
    transform: scale(1.14);
    opacity: 1;
  }
}

@keyframes ctrWhatsappRing {
  0% {
    transform: scale(0.9);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  .ctr-footer-premium__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ctr-footer-premium__brand-text {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .ctr-footer-premium {
    padding: 56px 0 28px;
  }

  .ctr-footer-premium__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .ctr-footer-premium__links {
    gap: 14px 18px;
  }

  .ctr-whatsapp-fixed {
    right: 16px;
    bottom: 16px;
    width: 66px;
    height: 66px;
  }

  .ctr-whatsapp-fixed__button {
    width: 66px;
    height: 66px;
  }

  .ctr-whatsapp-fixed__button svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .ctr-footer-premium__brand-title {
    font-size: 1.24rem;
  }

  .ctr-footer-premium__brand-text,
  .ctr-footer-premium__copyright,
  .ctr-footer-premium__legal,
  .ctr-footer-premium__credit {
    font-size: 0.9rem;
  }

  .ctr-footer-premium__logo {
    max-width: 220px;
    max-height: 90px;
  }
}










/* =========================================
   BOTÃO FLUTUANTE WHATSAPP
========================================= */
.ctr-whatsapp-fixed {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 9999;
  isolation: isolate;
}

.ctr-whatsapp-fixed__pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  opacity: 0.45;
  filter: blur(4px);
  animation: ctrWhatsappPulse 2s ease-out infinite;
  pointer-events: none;
}

.ctr-whatsapp-fixed__pulse--delay {
  animation-delay: 1s;
}

.ctr-whatsapp-fixed__button {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #e16d00 0%, #15a495 36%, #edb414 70%, #e8654a 100%);
  box-shadow:
    0 18px 34px rgba(225, 109, 0, 0.28),
    0 0 22px rgba(21, 164, 149, 0.24),
    0 0 44px rgba(237, 180, 20, 0.18);
  animation: ctrWhatsappFloat 2.4s ease-in-out infinite;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.ctr-whatsapp-fixed__button::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%);
  pointer-events: none;
}

.ctr-whatsapp-fixed__button svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
}

.ctr-whatsapp-fixed:hover .ctr-whatsapp-fixed__button,
.ctr-whatsapp-fixed:focus-visible .ctr-whatsapp-fixed__button {
  transform: scale(1.08);
  filter: saturate(1.08) brightness(1.03);
  box-shadow:
    0 22px 40px rgba(225, 109, 0, 0.34),
    0 0 28px rgba(21, 164, 149, 0.28),
    0 0 54px rgba(237, 180, 20, 0.22);
}

.ctr-whatsapp-fixed:focus-visible {
  outline: none;
}

@keyframes ctrWhatsappPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.42;
  }
  70% {
    transform: scale(1.45);
    opacity: 0;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

@keyframes ctrWhatsappFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .ctr-whatsapp-fixed {
    right: 16px;
    bottom: 16px;
    width: 68px;
    height: 68px;
  }

  .ctr-whatsapp-fixed__button {
    width: 68px;
    height: 68px;
  }

  .ctr-whatsapp-fixed__button svg {
    width: 30px;
    height: 30px;
  }
}




/* =========================================
   SCROLLBAR PERSONALIZADA 16px
========================================= */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 25, 35, 0.08);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #e16d00 0%,
    #15a495 36%,
    #edb414 70%,
    #e8654a 100%
  );
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 12px rgba(225, 109, 0, 0.18),
    0 0 16px rgba(21, 164, 149, 0.14);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #e8654a 0%,
    #edb414 30%,
    #15a495 65%,
    #e16d00 100%
  );
}

/* Firefox */
html {
  scrollbar-width: auto;
  scrollbar-color: #15a495 rgba(15, 25, 35, 0.08);
}
/* =========================================
   HOTFIX LIMPO | HERO + FLOATING CARDS
   sem fade, sem barra escura
========================================= */

/* neutraliza patches anteriores */
.hero::before,
.hero::after,
.hero-slider::before,
.hero-slider::after,
.floating-cards-section::before,
.floating-cards-section::after {
  content: none !important;
  display: none !important;
}

/* mantém a hero limpa e contida */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* respiro real para os controles não entrarem na área dos cards */
.hero__content {
  position: relative;
  z-index: 3;
  padding-bottom: 132px;
}

/* sobe os controles da hero */
.hero-dots {
  bottom: 64px !important;
  z-index: 6;
}

.hero-scroll {
  bottom: 112px !important;
  z-index: 6;
}

/* mantém os cards sobrepostos, mas com invasão mais equilibrada */
.floating-cards-section {
  position: relative;
  z-index: 30;
  margin-top: -54px !important;
  padding-top: 0 !important;
  background: transparent !important;
}

.floating-cards__grid {
  position: relative;
  z-index: 2;
}

/* tablet */
@media (max-width: 1080px) {
  .hero__content {
    padding-bottom: 124px;
  }

  .hero-dots {
    bottom: 58px !important;
  }

  .hero-scroll {
    bottom: 102px !important;
  }

  .floating-cards-section {
    margin-top: -48px !important;
  }
}

/* mobile */
@media (max-width: 768px) {
  .hero__content {
    padding-bottom: 108px;
  }

  .hero-dots {
    bottom: 34px !important;
  }

  .hero-scroll {
    display: none !important;
  }

  .floating-cards-section {
    margin-top: -38px !important;
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding-bottom: 98px;
  }

  .hero-dots {
    bottom: 26px !important;
  }

  .floating-cards-section {
    margin-top: -30px !important;
  }
}






/* =========================================
   HOTFIX | HERO SLIDES APARECENDO CORRETAMENTE
========================================= */

.hero {
  position: relative;
  z-index: 1;
}

.hero-slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
}

.hero-slide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0;
  visibility: hidden;
  z-index: 0 !important;
  transform: scale(1.02);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2 !important;
  transform: scale(1);
}

.hero-dots,
.hero-scroll {
  z-index: 6;
}

.floating-cards-section {
  position: relative;
  z-index: 30;
}












/* =========================================
   POPUP PREMIUM | PRIVACIDADE / COOKIES CTR
========================================= */
:root {
  --ctr-cookie-primary: #e16d00;
  --ctr-cookie-secondary: #15a495;
  --ctr-cookie-accent: #edb414;
  --ctr-cookie-accent-2: #e8654a;
  --ctr-cookie-text: #424242;
  --ctr-cookie-white: #ffffff;
  --ctr-cookie-ice: #f8f9fa;
  --ctr-cookie-border: rgba(21, 164, 149, 0.14);
  --ctr-cookie-shadow:
    0 30px 60px rgba(10, 18, 28, 0.16),
    0 12px 26px rgba(10, 18, 28, 0.08),
    0 0 0 1px rgba(21, 164, 149, 0.06);
  --ctr-cookie-gradient: linear-gradient(
    135deg,
    #e16d00 0%,
    #e8654a 22%,
    #edb414 52%,
    #15a495 100%
  );
  --ctr-cookie-radius: 28px;
  --ctr-cookie-transition: 0.35s ease;
}

.ctr-cookie-popup {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 999999;
  width: min(100% - 48px, 358px);
  border-radius: var(--ctr-cookie-radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 249, 250, 0.98) 100%
  );
  border: 1px solid var(--ctr-cookie-border);
  box-shadow: var(--ctr-cookie-shadow);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: ctrCookiePopupIn 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.ctr-cookie-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.09), transparent 38%),
    radial-gradient(circle at bottom right, rgba(21, 164, 149, 0.10), transparent 42%);
  pointer-events: none;
  z-index: -2;
}

.ctr-cookie-popup::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--ctr-cookie-gradient);
  box-shadow:
    0 8px 24px rgba(225, 109, 0, 0.18),
    0 0 24px rgba(21, 164, 149, 0.16);
  z-index: 2;
}

.ctr-cookie-popup__content {
  position: relative;
  padding: 26px 20px 18px;
}

.ctr-cookie-popup__ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
  opacity: 0.75;
}

.ctr-cookie-popup__ambient--1 {
  top: -22px;
  left: -24px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.18) 0%, transparent 72%);
}

.ctr-cookie-popup__ambient--2 {
  right: -16px;
  bottom: 48px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.16) 0%, transparent 72%);
}

.ctr-cookie-popup__title {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.32rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
  background: var(--ctr-cookie-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
}

.ctr-cookie-popup__text {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  line-height: 1.72;
  font-weight: 300;
  color: var(--ctr-cookie-text);
}

.ctr-cookie-popup__notice {
  position: relative;
  margin-bottom: 18px;
  padding: 16px 14px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(248, 249, 250, 0.98) 0%,
    rgba(243, 246, 247, 0.98) 100%
  );
  border: 1px solid rgba(21, 164, 149, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 24px rgba(10, 18, 28, 0.04);
}

.ctr-cookie-popup__notice::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--ctr-cookie-gradient);
  box-shadow: 0 0 14px rgba(21, 164, 149, 0.18);
}

.ctr-cookie-popup__notice p {
  margin: 0;
  padding-left: 12px;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  line-height: 1.78;
  font-weight: 300;
  color: rgba(66, 66, 66, 0.84);
  font-style: italic;
}

.ctr-cookie-popup__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 7px;
  margin-bottom: 20px;
}

.ctr-cookie-popup__links span {
  color: rgba(66, 66, 66, 0.36);
}

.ctr-cookie-popup__links a {
  position: relative;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ctr-cookie-secondary);
  text-decoration: none;
  transition:
    color var(--ctr-cookie-transition),
    opacity var(--ctr-cookie-transition);
}

.ctr-cookie-popup__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--ctr-cookie-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ctr-cookie-transition);
}

.ctr-cookie-popup__links a:hover,
.ctr-cookie-popup__links a:focus-visible {
  color: var(--ctr-cookie-primary);
}

.ctr-cookie-popup__links a:hover::after,
.ctr-cookie-popup__links a:focus-visible::after {
  transform: scaleX(1);
}

.ctr-cookie-popup__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ctr-cookie-popup__btn {
  position: relative;
  min-width: 106px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform var(--ctr-cookie-transition),
    box-shadow var(--ctr-cookie-transition),
    border-color var(--ctr-cookie-transition),
    color var(--ctr-cookie-transition),
    background var(--ctr-cookie-transition);
}

.ctr-cookie-popup__btn::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -20%;
  width: 34%;
  height: 320%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.34),
    transparent
  );
  transform: rotate(18deg);
  transition: transform 0.7s ease;
}

.ctr-cookie-popup__btn:hover::after,
.ctr-cookie-popup__btn:focus-visible::after {
  transform: translateX(360%) rotate(18deg);
}

.ctr-cookie-popup__btn:hover,
.ctr-cookie-popup__btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.ctr-cookie-popup__btn--ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ctr-cookie-text);
  border-color: rgba(21, 164, 149, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 22px rgba(10, 18, 28, 0.05);
}

.ctr-cookie-popup__btn--ghost:hover,
.ctr-cookie-popup__btn--ghost:focus-visible {
  border-color: rgba(225, 109, 0, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 26px rgba(10, 18, 28, 0.08);
}

.ctr-cookie-popup__btn--primary {
  color: #ffffff;
  background: var(--ctr-cookie-gradient);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 34px rgba(225, 109, 0, 0.22),
    0 0 28px rgba(21, 164, 149, 0.16);
}

.ctr-cookie-popup__btn--primary:hover,
.ctr-cookie-popup__btn--primary:focus-visible {
  box-shadow:
    0 24px 40px rgba(225, 109, 0, 0.28),
    0 0 34px rgba(21, 164, 149, 0.22);
}

.ctr-cookie-popup.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-18px, 28px, 0) scale(0.98);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease;
}

@keyframes ctrCookiePopupIn {
  from {
    opacity: 0;
    transform: translate3d(-18px, 28px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 768px) {
  .ctr-cookie-popup {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    max-width: none;
  }

  .ctr-cookie-popup__content {
    padding: 24px 16px 16px;
  }

  .ctr-cookie-popup__title {
    font-size: 1.18rem;
    line-height: 1.12;
  }

  .ctr-cookie-popup__text {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .ctr-cookie-popup__notice p {
    font-size: 0.86rem;
  }

  .ctr-cookie-popup__actions {
    gap: 10px;
  }

  .ctr-cookie-popup__btn {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .ctr-cookie-popup__links {
    gap: 6px;
  }

  .ctr-cookie-popup__links span {
    display: none;
  }

  .ctr-cookie-popup__actions {
    flex-direction: column;
  }

  .ctr-cookie-popup__btn {
    width: 100%;
  }
}








