@font-face {
	font-family: 'Avenir Next';
	src: url('../styles/fonts/avenir-next-regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root{
  --methodus-hero-h: clamp(560px, 78vh, 920px);
  --methodus-hero-h-mobile: clamp(560px, 84vh, 780px);

  --pyramid-overlap: clamp(260px, 34vh, 420px);

  /* fallback (só pra não quebrar antes do JS rodar) */
  --pyramid-overlap-mobile: 220px;
}
:root{
	--bg:#000;
	--text:#fff;
	--muted:#cfcfcf;
	--gold:#c89b1a;
}


a, a:visited, a:hover, a:focus, a:active {
  color: inherit;
  text-decoration: none;
}

body {
  font-family:'Avenir Next', 'Montserrat', "Helvetica Neue", Arial, sans-serif;
  color: #000000;
  overflow-x: hidden;
}

html, body {
  overflow-x: hidden;
  background: #000;
}

.section {
  min-height: auto;
}


#intro {
  position: relative;   /* era fixed */
  inset: auto;          /* remove efeito do inset */
  background: #E7E6E6;
  z-index: 1;           /* não precisa 9000 */
  overflow: hidden;
}

#intro::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0)
  );
  pointer-events: none;
}

#intro video {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

#intro.intro-hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}



.methodus{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  z-index: 5;
  --reveal-opacity: 0;
  opacity: 0;
  transform: translateY(calc(18px + var(--pyramid-shift, 0px)));
  transition: opacity .6s ease, transform .6s ease;
  will-change: transform;
}

.methodus-inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}

.pyramid-extend{
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: calc(var(--methodus-hero-h) + clamp(280px, 18vh, 240px));
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: stretch;
  pointer-events: none;
}

.pyramid-extend::after {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 32%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.85) 75%,
    #000 100%
  );
  z-index: 2;
}

.pyramid-extend img { z-index: 1; position: relative; }
.pyramid-content { z-index: 10; }

.pyramid-extend img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.pyramid-layer--almar h3{
  transform: translateX(-0.06em);
}

.pyramid-content{
  position: absolute;
  left: 50.4%;
  top: 36%; /* importante */
  bottom: clamp(210px, 22vh, 320px); /* sobe/ desce automático conforme altura da tela */
  transform: translateX(-50%); /* sem translateY */
  width: min(92vw, 620px);
  padding: 0 12px;
  text-align: center;
  z-index: 5;
}

.pyramid-layer h3 {
  font-size: clamp(12px, 1.5vw, 24px);
  font-weight: 400;
  letter-spacing: 0.22em;
  margin-bottom: 6px;
  color: #fff;
  text-shadow: 0 0 6px rgba(0,0,0,0.45);
  text-align: center;
}

.pyramid-layer p {
  font-size: clamp(11px, 1.2vw, 20px);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto;
  color: #fff;
  text-shadow: 0 0 6px rgba(0,0,0,0.45);
  text-align: center;
}

.pyramid-layer {
  margin-bottom: clamp(18px, 2.4vh, 34px);
}

.pyramid-layer h3,
.pyramid-layer p {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0,0,0,0.45);
}

.methodus-footer{
    position: relative;
    text-align: center;
    padding: clamp(44px, 6vh, 86px) 0 clamp(52px, 7vh, 120px);
    z-index: 5;
    overflow: visible;
    background: #cfcfcf;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    background: #E7E6E6;
    margin-top: 50px;
    margin-bottom: 30px;
}

.methodus-footer h2 {
  color: #000;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.32em;
  margin-bottom: 20px;
  text-shadow:
    0 0 8px rgba(255,255,255,0.25),
    0 0 20px rgba(255,200,80,0.35);
}

.methodus-footer p{
  max-width: 680px;
  margin: 0 auto;
  padding: 0 12px;
  font-size: 14px;
  line-height: 1.9;
  color: #000;
}



@keyframes lighthouse {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
    filter: brightness(0.45);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }
}


@media (max-width: 1024px) {
  .hero-title-main {
    font-size: 16px;
  }

  .hero-title-sub {
    font-size: 11px;
  }

  .pyramid {
    padding: 120px 36px 60px;
  }

  .pyramid-layer h3 {
    font-size: 20px;
  }

  .pyramid-layer p {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .consultants-inner,
  .invited-container,
  .methodus-inner {
    max-width: 1200px;
  }
}

.consultants {
  background: #000;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 0px;
}

.consultants-inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.consultants-inner--compact {
  padding-top: 40px;
}

/* TÍTULO E SUBTÍTULO */
.consultants-heading {
  text-align: center;
  margin-bottom: 140px;
}


.consultants-heading h2 {
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.consultants-heading p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 26px;
  color: #d3d3d3;
}

.consultants-heading hr {
  border: none;
  margin: 18px auto 22px;
  width: auto;

}

.consultants-heading h3 {
  font-size: 30px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255,255,255,0.25);
}

/* LISTA DE CONSULTORAS */
.consultants-list {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

/* CARD INDIVIDUAL */
.consultant {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

/* alternância imagem/texto */
.consultant:nth-child(even) {
  flex-direction: row-reverse;
}

.consultant-text {
  flex: 2;
  max-width: 560px;
  text-align: left;
}

.consultant-text h4 {
  font-size: 26px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.consultant:nth-of-type(1) .consultant-text h4,
.consultant:nth-of-type(1) .consultant-text p {
  text-align: right;
}


.consultant:nth-of-type(4) .consultant-text h4,
.consultant:nth-of-type(4) .consultant-text p {
  text-align: right;
}

.consultants--bottom .consultant:nth-of-type(3) .consultant-text h4,
.consultants--bottom .consultant:nth-of-type(3) .consultant-text p {
  text-align: right;
}

.invited-card:nth-of-type(1) .invited-text h3,
.invited-card:nth-of-type(1) .invited-text p {
  text-align: right;
}


.consultants--bottom .consultant:nth-of-type(3) .consultant-photo img {
  transform: scale(1.7);
  object-position: center top;
}

.consultant-text p {
  font-size: 14px;
  line-height: 1.85;
  color: #e0e0e0;
}

.consultant-photo {
    width: 240px;
    height: 400px;
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultant-photo::before {
  content: attr(data-name);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
}

.consultant-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.invited {
  background: #E7E6E6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 24px;
  border-radius: 60px 60px 0 0;
  margin-bottom: 0;
  margin-top: 96px;

}

.invited-container {
  max-width: 1100px;
  color: #000;
}

.invited-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 50px;
}

/* CARDS */
.invited-card {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 96px;
  align-items: center;
  flex-direction: row-reverse;
}

.invited-card:nth-child(even) {
  flex-direction: row;
}

.invited-text {
  flex: 2;
  max-width: 560px;
  text-align: left;
}

.invited-text h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.invited-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.invited-photo {
  flex: 1;
  width: 240px;
  height: 400px;
  overflow: hidden;
}

.invited-photo img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  transform: scale(1.08);
}

.consultant-photo img,
.invited-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%);
}

.consultants--top .consultant:first-child .consultant-photo img {
    transform: scale(1.5);
    object-position: center top;
    margin-top: 70px;
}


@media (max-width: 1024px) {

  .consultant {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .consultant-photo {
    order: 1;
    margin-bottom: 16px;
  }

  .consultant-text {
    order: 2;
  }

  .consultant-text h4 {
    order: 3;
    margin-top: 8px;
  }

  .consultant-text p {
    order: 4;
  }

  .invited-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .invited-photo {
    order: 1;
    width: 240px;
    height: 300px;
    margin-bottom: 16px;
    overflow: hidden;
  }

  .invited-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .invited-text {
    order: 2;
    max-width: 320px;
     font-size: 20px;
  }

  .invited-text h3 {
    order: 3;
    margin-bottom: 16px;
    letter-spacing: 0.32em;
  }

  .invited-text p {
    order: 4;
    font-size: 12px;
    line-height: 1.75;
  }

  /* neutraliza alternância */
  .invited-card:nth-child(even) {
    flex-direction: column;
  }


}


body.intro-last .methodus{
  margin-top: calc(var(--pyramid-overlap) * -1);
  z-index: 20;
}

body.intro-done .methodus{
  opacity: 1;
  transform: translateY(0);
}

body.intro-done .intro-track{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ÁREA DO SCROLL ANIMADO */
#introScroll {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
  z-index: 1;
}


.intro-track {
  position: absolute;   /* era fixed */
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #e7e7e9 20%, #f3f5f6 50%);;
  z-index: 2;
}


/* IMAGENS EMPILHADAS */
.intro-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;      /* mantém proporção e acompanha o viewport */
  object-position: top;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}

/* IMAGEM ATIVA */
.intro-track img.active {
  opacity: 1;
  z-index: 2;
}

.intro-track img.fading-out {
  opacity: 0;
  z-index: 1;
}




@media (max-width: 1024px) {

  :root{
    --intro-h: clamp(578px, 77vh, 207px);
    --pyramid-h: calc(var(--intro-h) + clamp(1px, 52vh, 17px));
    --pyramid-overlap-mobile: clamp(211px, 34vh, 365px);
  }

  body.intro-done #introScroll{
    height: var(--intro-h);
  }

  body.intro-last .intro-track img.active{
    object-position: center top !important;
    background: #000;
  }

  #introScroll {
    height: var(--intro-h);
    background: #000;
    overflow: hidden;
    position: relative !important;
    z-index: 1 !important;
  }

  .intro-track{
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .methodus {
    position: relative !important;
    z-index: 50 !important;
    overflow: visible !important;
  }

  .intro-track img {
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain !important;
    object-position: top !important;
    background: #000;
  }

  .methodus-inner{
    padding: 0 16px !important;
  }

  /* IMAGEM DA MULHER */
  .pyramid-extend{
    overflow: visible !important;
    height: var(--pyramid-h);
  }

  .pyramid-extend img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    -webkit-mask-image: linear-gradient(to top, transparent 2%, black 50%);
  }

  /* FEIXE ESCURO POR CIMA DA IMAGEM */
  .pyramid-extend::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0) 35%,
      rgba(0,0,0,0.6) 55%,
      rgba(0,0,0,0.85) 75%,
      #000 100%
    );
    z-index: 2;
  }

  /* BLOCO DE TEXTO DENTRO DO FEIXE */
  .pyramid-content {
    left: 51%;
    top: 46%;
    bottom: clamp(170px, 20vh, 260px);
    transform: translate(-50%, -50%) !important;
    width: min(92vw, 560px);
    text-align: center;
  }

  .pyramid-layer{
    margin-bottom: 22px !important;
  }

  .pyramid-layer h3{
    font-size: 13px !important;
    letter-spacing: 0.28em !important;
  }

  .pyramid-layer p{
    font-size: 11px !important;
    line-height: 1.6 !important;
  }


  .methodus-footer {
    position: relative;
    bottom: auto;
    padding: 44px 0 80px;
  }

  .methodus-footer h2{
    font-size: 18px !important;
    letter-spacing: 0.32em !important;
  }

  .methodus-footer p{
    font-size: 15px !important;
    line-height: 1.8 !important;
  }

  body {
    overflow: auto;
  }

  body.intro-last .methodus{
    margin-top: calc(var(--pyramid-overlap-mobile) * -1);
    z-index: 50;
  }

 .consultants-heading {
    margin-bottom: 56px;
  }

  .consultants-heading h3 {
    font-size: 15px;
    letter-spacing: 0.32em;
    text-align: center;
    position: relative;
    padding-bottom: 14px;
  }

  .consultants-heading h3::after {
    content: "";
    display: block;
    width: 325px;
    height: 2px;
    background: #f2c94c; /* amarelo */
    margin: 12px auto 0;
  }

  .consultants-heading hr {
    display: none;
  }

  .consultants-list {
    gap: 72px;
  }

  .consultant {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .consultant-photo {
    max-width: 240px;
  }

  .consultant-photo img {
    width: 100%;
    height: auto;
    border-radius: 2px;
  }

  .consultant:nth-child(even) {
    flex-direction: column;
  }

  .consultant-text,
  .consultant-photo {
    max-width: 100%;
    text-align: center;
  }

  .consultant-text h4 {
    position: relative;
    display: inline-block; /* CRÍTICO */
    font-size: 20px;
    letter-spacing: 0.32em;
    margin-bottom: 28px;
    text-align: center;
  }

  .consultant-text h4::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 250%;
    background: #f2c94c;
    bottom: -14px;
  }

  .consultant:nth-of-type(odd) .consultant-text h4::after {
    left: 40%;
  }

  /* PARES → barra começa mais à DIREITA */
  .consultant:nth-of-type(even) .consultant-text h4::after {
    right: 40%;
  }

  .consultant-text {
    max-width: 320px;
  }

  .consultant-text p {
    font-size: 12px;
    line-height: 1.75;
    color: #d9d9d9;
    text-align: left;
  }

  .consultant:nth-of-type(1) .consultant-text h4{
    text-align: center;
    font-size: 20px;
  }
  .consultant:nth-of-type(1) .consultant-text p {
    text-align: left;
  }

  .consultants--bottom .consultant:nth-of-type(3) .consultant-text h4, .consultants--bottom .consultant:nth-of-type(3) .consultant-text p {
    text-align: left; /* mantém padrão mobile */
  }

  .consultant:nth-of-type(4) .consultant-text h4,
  .consultant:nth-of-type(4) .consultant-text p {
    text-align: center;
  }

  .invited-card:nth-of-type(1) .invited-text h3{
    text-align: center;
    font-size: 20px;
  
  }
  .invited-card:nth-of-type(1) .invited-text p {
    text-align: left;
  }

  /* ===== ESPECIALISTAS ===== */

  .invited {
    padding: 80px 16px;
    border-radius: 40px 40px 0 0;
  }

  .invited-title {
    font-size: 18px;
    letter-spacing: 0.28em;
    margin-bottom: 48px;
  }

  .invited-card {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 72px;
  }


  .invited-card:nth-child(even) {
    flex-direction: column;
  }

  .invited-text,
  .invited-photo {
    max-width: 100%;
    text-align: center;
  }

  .invited-text h3 {
    position: relative;
    display: inline-block;
    font-size: 20px;
    letter-spacing: 0.32em;
    margin-bottom: 28px;
    text-align: center;
  }

  .invited-text h3::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 250%;
    background: #f2c94c;
    bottom: -14px;
  }

  .invited-card:nth-of-type(odd) .invited-text h3::after {
    left: 40%;
  }

  /* PARES → barra puxa para DIREITA */
  .invited-card:nth-of-type(even) .invited-text h3::after {
    right: 40%;
  }

  .invited-text p {
    font-size: 12px;
    line-height: 1.7;
    text-align: left;
    max-width: 320px;
  }
}


@media (max-width: 431px) {

  :root{
    --intro-h: clamp(119px, 82vh, 234px);
    --pyramid-h: calc(var(--intro-h) + clamp(143px, 55vh, 319px));
    --pyramid-overlap-mobile: clamp(226px, 34vh, 362px);
  }

  body.intro-done #introScroll{
    height: var(--intro-h);
  }

  body.intro-last .intro-track img.active{
    object-position: center top !important;
    background: #000;
  }

  #introScroll {
    height: var(--intro-h);
    background: #000;
    overflow: hidden;
    position: relative !important;
    z-index: 1 !important;
  }

  .intro-track{
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .methodus {
    position: relative !important;
    z-index: 50 !important;
    overflow: visible !important;
  }

  .intro-track img {
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain !important;
    object-position: top !important;
    background: #000;
  }

  .methodus-inner{
    padding: 0 16px !important;
  }

  /* IMAGEM DA MULHER */
  .pyramid-extend{
    overflow: visible !important;
    height: var(--pyramid-h);
  }

  .pyramid-extend img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    -webkit-mask-image: linear-gradient(to top, transparent 2%, black 50%);
  }

  /* FEIXE ESCURO POR CIMA DA IMAGEM */
  .pyramid-extend::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0) 35%,
      rgba(0,0,0,0.6) 55%,
      rgba(0,0,0,0.85) 75%,
      #000 100%
    );
    z-index: 2;
  }

  /* BLOCO DE TEXTO DENTRO DO FEIXE */
  .pyramid-content {
    left: 51%;
    top: 46%;
    bottom: clamp(170px, 20vh, 260px);
    transform: translate(-50%, -50%) !important;
    width: min(92vw, 560px);
    text-align: center;
  }

  .pyramid-layer{
    margin-bottom: 22px !important;
  }

  .pyramid-layer h3{
    font-size: 13px !important;
    letter-spacing: 0.28em !important;
  }

  .pyramid-layer p{
    font-size: 11px !important;
    line-height: 1.6 !important;
  }


  .methodus-footer {
    position: relative;
    bottom: auto;
    padding: 44px 0 80px;
  }

  .methodus-footer h2{
    font-size: 18px !important;
    letter-spacing: 0.32em !important;
  }

  .methodus-footer p{
    font-size: 15px !important;
    line-height: 1.8 !important;
  }

  body {
    overflow: auto;
  }

  body.intro-last .methodus{
    margin-top: calc(var(--pyramid-overlap-mobile) * -1);
    z-index: 50;
  }

 .consultants-heading {
    margin-bottom: 56px;
  }

  .consultants-heading h3 {
    font-size: 15px;
    letter-spacing: 0.32em;
    text-align: center;
    position: relative;
    padding-bottom: 14px;
  }

  .consultants-heading h3::after {
    content: "";
    display: block;
    width: 325px;
    height: 2px;
    background: #f2c94c; /* amarelo */
    margin: 12px auto 0;
  }

  .consultants-heading hr {
    display: none;
  }

  .consultants-list {
    gap: 72px;
  }

  .consultant {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .consultant-photo {
    max-width: 240px;
  }

  .consultant-photo img {
    width: 100%;
    height: auto;
    border-radius: 2px;
  }

  .consultant:nth-child(even) {
    flex-direction: column;
  }

  .consultant-text,
  .consultant-photo {
    max-width: 100%;
    text-align: center;
  }

  .consultant-text h4 {
    position: relative;
    display: inline-block; /* CRÍTICO */
    font-size: 20px;
    letter-spacing: 0.32em;
    margin-bottom: 28px;
    text-align: center;
  }

  .consultant-text h4::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 250%;
    background: #f2c94c;
    bottom: -14px;
  }

  .consultant:nth-of-type(odd) .consultant-text h4::after {
    left: 40%;
  }

  /* PARES → barra começa mais à DIREITA */
  .consultant:nth-of-type(even) .consultant-text h4::after {
    right: 40%;
  }

  .consultant-text {
    max-width: 320px;
  }

  .consultant-text p {
    font-size: 12px;
    line-height: 1.75;
    color: #d9d9d9;
    text-align: left;
  }

  .consultant:nth-of-type(1) .consultant-text h4{
    text-align: center;
    font-size: 20px;
  }
  .consultant:nth-of-type(1) .consultant-text p {
    text-align: left;
  }

  .consultants--bottom .consultant:nth-of-type(3) .consultant-text h4, .consultants--bottom .consultant:nth-of-type(3) .consultant-text p {
    text-align: left; /* mantém padrão mobile */
  }

  .consultant:nth-of-type(4) .consultant-text h4,
  .consultant:nth-of-type(4) .consultant-text p {
    text-align: center;
  }

  .invited-card:nth-of-type(1) .invited-text h3{
    text-align: center;
    font-size: 20px;
  
  }
  .invited-card:nth-of-type(1) .invited-text p {
    text-align: left;
  }

  /* ===== ESPECIALISTAS ===== */

  .invited {
    padding: 80px 16px;
    border-radius: 40px 40px 0 0;
  }

  .invited-title {
    font-size: 18px;
    letter-spacing: 0.28em;
    margin-bottom: 48px;
  }

  .invited-card {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 72px;
  }


  .invited-card:nth-child(even) {
    flex-direction: column;
  }

  .invited-text,
  .invited-photo {
    max-width: 100%;
    text-align: center;
  }

  .invited-text h3 {
    position: relative;
    display: inline-block;
    font-size: 20px;
    letter-spacing: 0.32em;
    margin-bottom: 28px;
    text-align: center;
  }

  .invited-text h3::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 250%;
    background: #f2c94c;
    bottom: -14px;
  }

  .invited-card:nth-of-type(odd) .invited-text h3::after {
    left: 40%;
  }

  /* PARES → barra puxa para DIREITA */
  .invited-card:nth-of-type(even) .invited-text h3::after {
    right: 40%;
  }

  .invited-text p {
    font-size: 12px;
    line-height: 1.7;
    text-align: left;
    max-width: 320px;
  }
}


.methodus::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  z-index: 100;
  pointer-events: none;
  opacity: var(--reveal-opacity, 0);
  transition: opacity 0.1s linear;
}

.site-footer .socials.socials-left.socials-top{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;

  width: fit-content;
  margin-left: 0;
  padding-left: 0;

  margin-top: -80px;
  margin-bottom: 25px;

  position: relative;
  z-index: 20;
}

.site-footer .socials.socials-left.socials-top .social-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;
  padding: 0;

  background: transparent;
  border: none;
  text-decoration: none;

  cursor: pointer;
  position: relative;
  z-index: 21;
  -webkit-tap-highlight-color: transparent;
}

.site-footer .socials.socials-left.socials-top .social-img{
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  max-width: none;
  pointer-events: none;
}

.site-footer::before,
.site-footer::after{
  pointer-events: none;
}

@media (max-width: 900px){
  .site-footer .socials.socials-left.socials-top{
    margin-top: 14px;
    margin-bottom: 20px;
  }

  .site-footer .socials.socials-left.socials-top .social-icon{
    width: 58px;
    height: 58px;
  }

  .site-footer .socials.socials-left.socials-top .social-img{
    width: 42px;
    height: 42px;
  }
}

.intro-ball{
  position: fixed;
  left: 0;
  top: 0;
  width: 140px;
  height: 140px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-9999px, -9999px, 0); 
  transition:
    transform 1600ms cubic-bezier(.22,1,.36,1),
    opacity 200ms ease;
  will-change: transform;
}

.intro-ball img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px){
  .intro-ball{ width: 96px; height: 96px; }
}

.pyramid-extend{
  --ball-x: 50%;
  --ball-y: 45%;
}

.pyramid-ball-anchor{
  position: absolute;
  left: var(--ball-x);
  top: var(--ball-y);
  width: 2px;
  height: 2px;
  transform: translate(-50%, -50%);
  z-index: 20;
  pointer-events: none;
}

@media (max-width: 1024px){

  /* mantém o topo */
  #introScroll{
    display: block !important;
    height: var(--intro-h, 70vh) !important;
    overflow: hidden !important;
    background: #000 !important;
  }

  .intro-track{
    position: relative !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #000 !important; /* tira aquele branco */
  }

  /* desliga animação e esconde todas */
  .intro-track img{
    transition: none !important;
    opacity: 0 !important;
  }

  /* mostra SEM JS a última imagem (ultima_foto.jpg) */
  .intro-track img:last-child{
    opacity: 1 !important;
    z-index: 2 !important;
  }

  /* bola nunca aparece */
  #introBall{ display: none !important; }

  /* não sobe por cima do topo */
  body.intro-last .methodus{ margin-top: 0 !important; }
  .methodus{ opacity: 1 !important; transform: none !important; }
}
