.elementor-56 .elementor-element.elementor-element-0f911b2{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-56 .elementor-element.elementor-element-b694cfe{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-56 .elementor-element.elementor-element-5504079{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-56 .elementor-element.elementor-element-d20c8aa{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-56 .elementor-element.elementor-element-d7b827a{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-56 .elementor-element.elementor-element-3046873{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-0f911b2 *//* ==========================================================
   TRANSFORMAÇÃO PROFISSIONAL
========================================================== */

:root {
  --tp-blue-950: #021822;
  --tp-blue-900: #032634;
  --tp-blue-850: #073a50;
  --tp-blue-800: #0b4962;
  --tp-blue-700: #12627f;

  --tp-gold: #d9aa31;
  --tp-gold-light: #ebc860;
  --tp-gold-dark: #ae7e13;

  --tp-white: #ffffff;
  --tp-light: #f5f4ef;

  --tp-text: #12232c;
  --tp-muted: #69757b;

  --tp-container: 1240px;

  --tp-transition:
    all .35s cubic-bezier(.2,.7,.2,1);
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body.tp-page {
  margin: 0;

  overflow-x: hidden;

  background: var(--tp-light);

  color: var(--tp-text);

  font-family:
    "Manrope",
    sans-serif;
}


body.tp-menu-open {
  overflow: hidden;
}


.tp-container {
  width: min(
    calc(100% - 48px),
    var(--tp-container)
  );

  margin-inline: auto;
}


.tp-section-index {
  display: block;

  margin-bottom: 24px;

  color: var(--tp-gold-dark);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .13em;
}


.tp-section-index--light {
  color: var(--tp-gold-light);
}


/* ==========================================================
   BOTÕES
========================================================== */

.tp-btn {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 11px;

  padding: 0 25px;

  border-radius: 8px;

  font-size: 11px;

  font-weight: 800;

  text-decoration: none;

  text-transform: uppercase;

  letter-spacing: .04em;

  transition: var(--tp-transition);
}


.tp-btn i {
  font-size: 10px;

  transition:
    transform .3s ease;
}


.tp-btn:hover i {
  transform:
    translateX(4px);
}


.tp-btn--gold {
  color: var(--tp-blue-950);

  background:
    linear-gradient(
      135deg,
      var(--tp-gold-light),
      var(--tp-gold)
    );

  box-shadow:
    0 16px 40px rgba(217,170,49,.18);
}


.tp-btn--gold:hover {
  transform: translateY(-3px);

  box-shadow:
    0 22px 50px rgba(217,170,49,.27);
}


.tp-btn--outline {
  color: white;

  border:
    1px solid rgba(235,200,96,.48);

  background:
    rgba(255,255,255,.025);
}


.tp-btn--outline:hover {
  color: var(--tp-blue-950);

  background: var(--tp-gold);
}


/* ==========================================================
   HEADER
========================================================== */

.tp-header {
  position: fixed;

  top: 0;
  left: 0;

  z-index: 1000;

  width: 100%;

  padding: 20px 0;

  background:
    linear-gradient(
      180deg,
      rgba(2,24,34,.85),
      rgba(2,24,34,0)
    );

  transition: var(--tp-transition);
}


.tp-header.is-scrolled {
  padding: 10px 0;

  border-bottom:
    1px solid rgba(255,255,255,.08);

  background:
    rgba(2,24,34,.9);

  backdrop-filter: blur(20px);

  box-shadow:
    0 12px 40px rgba(0,0,0,.16);
}


.tp-header__inner {
  min-height: 58px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


.tp-header__brand img {
  width: 145px;
  height: auto;

  display: block;
}


.tp-nav {
  margin-left: auto;

  display: flex;
  align-items: center;

  gap: 22px;
}


.tp-nav__link {
  position: relative;

  color:
    rgba(255,255,255,.68);

  font-size: 11px;

  text-decoration: none;

  white-space: nowrap;

  transition: .3s ease;
}


.tp-nav__link:hover,
.tp-nav__link.is-active {
  color: white;
}


.tp-nav__link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 1px;

  background:
    var(--tp-gold);

  transition:
    width .3s ease;
}


.tp-nav__link:hover::after,
.tp-nav__link.is-active::after {
  width: 100%;
}


.tp-header__actions {
  display: flex;

  align-items: center;

  gap: 12px;
}


.tp-header__cta {
  min-height: 44px;

  padding-inline: 18px;

  font-size: 9px;
}


.tp-menu-toggle {
  width: 44px;
  height: 44px;

  display: none;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;

  padding: 0;

  border-radius: 8px;

  border:
    1px solid rgba(255,255,255,.12);

  background:
    rgba(255,255,255,.06);

  cursor: pointer;
}


.tp-menu-toggle span {
  width: 18px;
  height: 1px;

  background: white;

  transition: .3s ease;
}


/* ==========================================================
   HERO TRANSFORMAÇÃO — NOVA VERSÃO ENCAIXOTADA
========================================================== */

.tp-hero--boxed {
  position: relative;

  min-height: 100vh;

  padding: 118px 0 45px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #021822 0%,
      #052d40 55%,
      #032332 100%
    );

  isolation: isolate;
}


.tp-hero__bg {
  position: absolute;
  inset: 0;

  z-index: -2;

  background:
    radial-gradient(
      circle at 75% 45%,
      rgba(24,117,151,.2),
      transparent 35%
    ),
    radial-gradient(
      circle at 20% 90%,
      rgba(216,171,50,.06),
      transparent 25%
    );
}


/* ==========================================================
   BOX PRINCIPAL
========================================================== */

.tp-hero-box {
  position: relative;

  width: 100%;

  max-width: 1200px;

  min-height: 690px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0,.9fr)
    minmax(540px,1.1fr);

  align-items: center;

  gap: 40px;

  padding:
    clamp(38px,5vw,70px);

  border:
    1px solid rgba(255,255,255,.09);

  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.045),
      rgba(255,255,255,.012)
    );

  box-shadow:
    0 40px 100px rgba(0,0,0,.2);

  overflow: hidden;
}


.tp-hero-box::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: .25;

  background-image:
    linear-gradient(
      rgba(255,255,255,.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.025) 1px,
      transparent 1px
    );

  background-size:
    80px 80px;
}


/* ==========================================================
   COPY
========================================================== */

.tp-hero-copy {
  position: relative;

  z-index: 10;

  min-width: 0;

  max-width: 560px;
}


.tp-hero-title__pre {
  display: block;

  margin-bottom: 9px;

  color:
    rgba(255,255,255,.82);

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(18px,1.8vw,25px);

  font-weight: 400;
}


.tp-hero-title h1 {
  margin: 0;

  color: white;

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(42px,3.1vw,54px);

  line-height: 1.01;

  font-weight: 400;

  letter-spacing: -.05em;
}


.tp-hero-title h1 strong {
  display: block;

  margin-top: 7px;

  color:
    var(--tp-gold-light);

  font-weight: 700;
}


.tp-hero-copy__lead {
  max-width: 530px;

  margin:
    28px 0 0;

  color:
    rgba(255,255,255,.65);

  font-size: 14px;

  line-height: 1.8;
}


.tp-hero-copy__buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 33px;
}


/* ==========================================================
   MÉTRICAS
========================================================== */

.tp-hero-metrics {
  display: grid;

  grid-template-columns:
    repeat(3,minmax(0,1fr));

  margin-top: 50px;

  border-top:
    1px solid rgba(255,255,255,.1);
}


.tp-hero-metrics article {
  min-width: 0;

  padding:
    22px 16px 5px 0;

  display: grid;

  grid-template-columns:
    auto 1fr;

  align-items: start;

  gap: 11px;

  border-right:
    1px solid rgba(255,255,255,.08);
}


.tp-hero-metrics article + article {
  padding-left: 16px;
}


.tp-hero-metrics article:last-child {
  border-right: 0;
}


.tp-hero-metrics strong {
  color:
    var(--tp-gold-light);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 24px;

  line-height: 1;
}


.tp-hero-metrics h3 {
  margin: 0;

  color: white;

  font-size: 9px;

  line-height: 1.3;
}


.tp-hero-metrics p {
  margin: 5px 0 0;

  color:
    rgba(255,255,255,.36);

  font-size: 7.5px;

  line-height: 1.5;
}


/* ==========================================================
   ECOSSISTEMA
========================================================== */

.tp-hero-ecosystem {
  position: relative;

  width: 100%;
  height: 590px;

  min-width: 0;

  display: flex;

  align-items: center;
  justify-content: center;
}


.tp-hero-ecosystem__glow {
  position: absolute;

  width: 330px;
  height: 330px;

  border-radius: 50%;

  background:
    rgba(20,100,126,.18);

  filter: blur(60px);

  pointer-events: none;
}


/* ==========================================================
   ÓRBITAS MAIS COMPACTAS
========================================================== */

.tp-eco-ring {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}


.tp-eco-ring--1 {
  width: 225px;
  height: 225px;

  border:
    1px solid rgba(216,171,50,.4);
}


.tp-eco-ring--2 {
  width: 350px;
  height: 350px;

  border:
    1px solid rgba(255,255,255,.08);
}


.tp-eco-ring--3 {
  width: 480px;
  height: 480px;

  border:
    1px solid rgba(216,171,50,.16);
}


/* ==========================================================
   NÚCLEO
========================================================== */

.tp-eco-core {
  position: relative;

  z-index: 5;

  width: 165px;
  height: 165px;

  display: grid;
  place-items: center;

  padding: 6px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #e8c45c,
      #9f7513
    );

  box-shadow:
    0 0 60px rgba(216,171,50,.18);
}


.tp-eco-core__inner {
  width: 100%;
  height: 100%;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      #124754,
      #052631 75%
    );
}


.tp-eco-core img {
  width: 80px;
  height: auto;

  display: block;
}


/* ==========================================================
   ESPECIALISTAS
========================================================== */

.tp-eco-person {
  position: absolute;

  z-index: 10;

  width: 245px;

  display: grid;

  grid-template-columns:
    82px 1fr;

  align-items: center;

  gap: 12px;

  padding: 10px;

  border:
    1px solid rgba(255,255,255,.12);

  border-radius: 15px;

  background:
    rgba(2,31,44,.88);

  backdrop-filter: blur(18px);

  box-shadow:
    0 20px 50px rgba(0,0,0,.23);

  transition:
    transform .35s ease,
    border-color .35s ease;
}


.tp-eco-person:hover,
.tp-eco-person.is-open {
  z-index: 30;

  transform:
    translateY(-4px);

  border-color:
    rgba(216,171,50,.5);
}


/* MAIS PRÓXIMOS DO CENTRO */

.tp-eco-person--andre {
  top: 65px;
  left: 18px;
}


.tp-eco-person--marcelo {
  top: 245px;
  right: 0;
}


.tp-eco-person--frederico {
  left: 55px;
  bottom: 45px;
}


/* ==========================================================
   FOTOS MAIORES SEM EXAGERAR
========================================================== */

.tp-eco-person__photo {
  width: 82px;
  height: 82px;

  overflow: hidden;

  border-radius: 50%;

  border:
    2px solid rgba(216,171,50,.5);

  background:
    #073248;
}


.tp-eco-person__photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  display: block;

  transition:
    transform .4s ease;
}


.tp-eco-person:hover
.tp-eco-person__photo img {
  transform: scale(1.06);
}


/* ==========================================================
   CONTEÚDO DOS CARDS
========================================================== */

.tp-eco-person__content {
  min-width: 0;
}


.tp-eco-person__content > strong {
  display: block;

  color: white;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 12px;

  line-height: 1.25;
}


.tp-eco-person__content > span {
  display: block;

  margin-top: 4px;

  color:
    var(--tp-gold-light);

  font-size: 7.5px;

  line-height: 1.4;
}


.tp-eco-person__toggle {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-top: 9px;

  padding: 5px 8px;

  border:
    1px solid rgba(255,255,255,.1);

  border-radius: 30px;

  background: transparent;

  color:
    rgba(255,255,255,.7);

  font-family: inherit;

  font-size: 7px;

  font-weight: 800;

  text-transform: uppercase;

  cursor: pointer;
}


.tp-eco-person__toggle i {
  color: var(--tp-gold);

  font-size: 6px;

  transition:
    transform .3s ease;
}


.tp-eco-person.is-open
.tp-eco-person__toggle i {
  transform:
    rotate(180deg);
}


/* ==========================================================
   PROGRAMAS EXPANSÍVEIS
========================================================== */

.tp-eco-person__programs {
  position: absolute;

  left: 30px;
  top: calc(100% + 7px);

  width: 280px;

  max-height: 0;

  overflow: hidden;

  opacity: 0;

  visibility: hidden;

  padding:
    0 14px;

  border:
    1px solid transparent;

  border-radius: 13px;

  background:
    rgba(2,25,36,.97);

  box-shadow:
    0 20px 50px rgba(0,0,0,.3);

  transition:
    max-height .4s ease,
    opacity .25s ease,
    padding .3s ease,
    visibility .25s ease;
}


.tp-eco-person.is-open
.tp-eco-person__programs {
  max-height: 400px;

  opacity: 1;

  visibility: visible;

  padding:
    8px 14px;

  border-color:
    rgba(255,255,255,.1);
}


.tp-eco-person__programs a {
  display: block;

  padding:
    10px 0;

  border-bottom:
    1px solid rgba(255,255,255,.07);

  text-decoration: none;
}


.tp-eco-person__programs a:last-child {
  border-bottom: 0;
}


.tp-eco-person__programs strong {
  display: block;

  color: white;

  font-size: 9px;
}


.tp-eco-person__programs span {
  display: block;

  margin-top: 3px;

  color:
    rgba(255,255,255,.4);

  font-size: 7px;

  line-height: 1.4;
}


.tp-eco-person__programs a:hover strong {
  color:
    var(--tp-gold-light);
}


/* MARCELO EXPANDE PARA A ESQUERDA */

.tp-eco-person--marcelo
.tp-eco-person__programs {
  left: auto;
  right: 25px;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

  .tp-hero-box {
    grid-template-columns:
      1fr;

    padding: 55px;

    min-height: auto;
  }


  .tp-hero-copy {
    max-width: 720px;
  }


  .tp-hero-ecosystem {
    max-width: 650px;

    margin-inline: auto;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

  .tp-hero--boxed {
    min-height: auto;

    padding:
      100px 0 40px;
  }


  .tp-hero-box {
    width: 100%;

    padding:
      32px 20px;

    border-radius: 20px;
  }


  .tp-hero-title__pre {
    font-size: 17px;
  }


  .tp-hero-title h1 {
    font-size:
      clamp(36px,11vw,48px);
  }


  .tp-hero-copy__lead {
    font-size: 13px;
  }


  .tp-hero-copy__buttons {
    flex-direction: column;
  }


  .tp-hero-copy__buttons .tp-btn {
    width: 100%;
  }


  .tp-hero-metrics {
    grid-template-columns: 1fr;
  }


  .tp-hero-metrics article,
  .tp-hero-metrics article + article {
    padding:
      15px 0;

    border-right: 0;

    border-bottom:
      1px solid rgba(255,255,255,.08);
  }


  /* VISUAL */

  .tp-hero-ecosystem {
    height: auto;

    display: block;

    padding-top: 230px;
  }


  .tp-eco-core {
    position: absolute;

    top: 30px;
    left: 50%;

    width: 135px;
    height: 135px;

    transform:
      translateX(-50%);
  }


  .tp-eco-core img {
    width: 65px;
  }


  .tp-eco-ring--1 {
    width: 190px;
    height: 190px;

    top: 2px;
    left: 50%;

    transform:
      translateX(-50%);
  }


  .tp-eco-ring--2 {
    width: 230px;
    height: 230px;

    top: -18px;
    left: 50%;

    transform:
      translateX(-50%);
  }


  .tp-eco-ring--3 {
    display: none;
  }


  /* CARDS EMPILHADOS */

  .tp-eco-person,
  .tp-eco-person--andre,
  .tp-eco-person--marcelo,
  .tp-eco-person--frederico {
    position: relative;

    left: auto;
    right: auto;
    top: auto;
    bottom: auto;

    width: 100%;

    grid-template-columns:
      76px 1fr;

    margin-bottom: 12px;
  }


  .tp-eco-person__photo {
    width: 76px;
    height: 76px;
  }


  .tp-eco-person__programs,
  .tp-eco-person--marcelo
  .tp-eco-person__programs {
    position: relative;

    left: auto;
    right: auto;
    top: auto;

    grid-column:
      1 / -1;

    width: 100%;

    margin-top: 8px;
  }

}

/* ==========================================================
   CARDS DOS ESPECIALISTAS
========================================================== */

.tp-orbit-person {
  position: absolute;

  z-index: 12;

  width: 310px;

  transition:
    transform .4s ease;
}


.tp-orbit-person:hover {
  z-index: 20;

  transform:
    scale(1.025);
}


/* POSIÇÕES */

.tp-orbit-person--andre {
  left: -10px;
  top: 36px;
}


.tp-orbit-person--marcelo {
  right: -35px;
  top: 245px;
}


.tp-orbit-person--frederico {
  left: 45px;
  bottom: 3px;
}


/* CARD PRINCIPAL */

.tp-orbit-person__main {
  position: relative;

  width: 100%;

  min-height: 120px;

  display: grid;

  grid-template-columns:
    105px 1fr;

  align-items: center;

  gap: 17px;

  padding: 10px;

  border:
    1px solid rgba(255,255,255,.14);

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(3,41,57,.91),
      rgba(2,30,43,.84)
    );

  backdrop-filter:
    blur(20px);

  box-shadow:
    0 25px 60px rgba(0,0,0,.24);

  text-align: left;

  cursor: pointer;

  transition:
    border-color .35s ease,
    background .35s ease,
    box-shadow .35s ease;
}


.tp-orbit-person:hover
.tp-orbit-person__main,
.tp-orbit-person.is-open
.tp-orbit-person__main {
  border-color:
    rgba(216,171,50,.5);

  background:
    linear-gradient(
      135deg,
      rgba(5,54,74,.96),
      rgba(2,34,48,.92)
    );

  box-shadow:
    0 30px 70px rgba(0,0,0,.32);
}


/* FOTO */

.tp-orbit-person__photo {
  position: relative;

  width: 105px;
  height: 105px;

  overflow: hidden;

  border-radius: 50%;

  border:
    2px solid rgba(216,171,50,.55);

  box-shadow:
    0 0 0 5px rgba(216,171,50,.06);
}


.tp-orbit-person__photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position:
    center top;

  display: block;

  transition:
    transform .5s ease;
}


.tp-orbit-person:hover
.tp-orbit-person__photo img {
  transform:
    scale(1.07);
}


/* INFO */

.tp-orbit-person__info {
  min-width: 0;
}


.tp-orbit-person__info strong {
  display: block;

  color: white;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 15px;

  line-height: 1.2;
}


.tp-orbit-person__info > span {
  display: block;

  margin-top: 6px;

  color:
    var(--tp-gold-light);

  font-size: 9px;

  line-height: 1.4;
}


.tp-orbit-person__info small {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: 14px;

  padding:
    7px 10px;

  border:
    1px solid rgba(255,255,255,.12);

  border-radius: 50px;

  color:
    rgba(255,255,255,.72);

  font-size: 8px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .05em;
}


.tp-orbit-person__info small i {
  color:
    var(--tp-gold);

  font-size: 7px;

  transition:
    transform .3s ease;
}


.tp-orbit-person.is-open
.tp-orbit-person__info small i {
  transform:
    rotate(180deg);
}


/* ==========================================================
   LISTA EXPANSÍVEL
========================================================== */

.tp-orbit-person__programs {
  position: absolute;

  left: 78px;
  top: calc(100% + 8px);

  width: 320px;

  max-height: 0;

  overflow: hidden;

  opacity: 0;

  visibility: hidden;

  padding:
    0 16px;

  border:
    1px solid transparent;

  border-radius: 15px;

  background:
    rgba(2,28,40,.96);

  backdrop-filter:
    blur(20px);

  box-shadow:
    0 25px 60px rgba(0,0,0,.3);

  transform:
    translateY(-8px);

  transition:
    max-height .4s ease,
    opacity .3s ease,
    visibility .3s ease,
    transform .3s ease,
    padding .3s ease,
    border-color .3s ease;
}


.tp-orbit-person.is-open
.tp-orbit-person__programs {
  max-height: 500px;

  opacity: 1;

  visibility: visible;

  padding:
    10px 16px;

  transform:
    translateY(0);

  border-color:
    rgba(255,255,255,.11);
}


.tp-orbit-person__programs a {
  display: block;

  padding:
    12px 2px;

  border-bottom:
    1px solid rgba(255,255,255,.07);

  text-decoration: none;
}


.tp-orbit-person__programs a:last-child {
  border-bottom: 0;
}


.tp-orbit-person__programs strong {
  display: block;

  color: white;

  font-size: 10px;
}


.tp-orbit-person__programs span {
  display: block;

  margin-top: 4px;

  color:
    rgba(255,255,255,.43);

  font-size: 8px;

  line-height: 1.45;
}


.tp-orbit-person__programs a:hover strong {
  color:
    var(--tp-gold-light);
}


/* FREDERICO ABRE PARA A DIREITA */

.tp-orbit-person--frederico
.tp-orbit-person__programs {
  left: 150px;
}


/* MARCELO ABRE PARA A ESQUERDA */

.tp-orbit-person--marcelo
.tp-orbit-person__programs {
  left: auto;
  right: 80px;
}


/* ==========================================================
   MICRO MOVIMENTO
========================================================== */

@keyframes tpOrbitPulse {

  0%,
  100% {
    box-shadow:
      0 0 10px rgba(216,171,50,.4);
  }

  50% {
    box-shadow:
      0 0 24px rgba(216,171,50,.95);
  }

}


.tp-orbit__dot {
  animation:
    tpOrbitPulse
    2.4s ease-in-out
    infinite;
}


.tp-orbit__dot--02 {
  animation-delay: .5s;
}


.tp-orbit__dot--03 {
  animation-delay: 1s;
}


.tp-orbit__dot--04 {
  animation-delay: 1.5s;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

  .tp-hero__grid {
    grid-template-columns:
      1fr 540px;
  }


  .tp-orbit {
    transform:
      scale(.88);

    transform-origin:
      center center;
  }

}


/* ==========================================================
   MOBILE / TABLET VERTICAL
========================================================== */

@media (max-width: 900px) {

  .tp-hero--premium {
    min-height: auto;

    padding:
      125px 0 80px;
  }


  .tp-hero__grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .tp-hero__content {
    max-width: 720px;
  }


  .tp-orbit {
    min-height: 760px;

    transform: none;
  }


  .tp-orbit-person--andre {
    left: 20px;
    top: 45px;
  }


  .tp-orbit-person--marcelo {
    right: 20px;
    top: 290px;
  }


  .tp-orbit-person--frederico {
    left: 40px;
    bottom: 25px;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

  .tp-hero--premium {
    padding:
      110px 0 70px;
  }


  .tp-hero__content h1 {
    font-size:
      clamp(39px,12vw,53px);
  }


  .tp-hero__lead {
    font-size: 14px;
  }


  .tp-hero__actions {
    flex-direction: column;

    align-items: stretch;
  }


  .tp-hero__actions .tp-btn {
    width: 100%;
  }


  .tp-hero-stats {
    grid-template-columns: 1fr;

    margin-top: 45px;
  }


  .tp-hero-stats article,
  .tp-hero-stats article + article {
    min-height: auto;

    display: grid;

    grid-template-columns:
      42px 55px 1fr;

    align-items: center;

    gap: 12px;

    padding:
      18px 0;

    border-right: 0;

    border-bottom:
      1px solid rgba(255,255,255,.09);
  }


  .tp-hero-stats article:last-child {
    border-bottom: 0;
  }


  .tp-hero-stats__icon {
    margin: 0;
  }


  .tp-hero-stats strong {
    font-size: 24px;
  }


  .tp-hero-stats h3 {
    margin: 0;
  }


  .tp-hero-stats p {
    display: none;
  }


  /* ORBITA MOBILE */

  .tp-orbit {
    min-height: auto;

    display: block;

    padding-top: 250px;
  }


  .tp-orbit__core {
    position: absolute;

    top: 35px;
    left: 50%;

    width: 145px;
    height: 145px;

    transform:
      translateX(-50%);
  }


  .tp-orbit__ring--01 {
    width: 200px;
    height: 200px;

    top: 7px;
    left: 50%;

    transform:
      translateX(-50%);
  }


  .tp-orbit__ring--02 {
    width: 260px;
    height: 260px;

    top: -23px;
    left: 50%;

    transform:
      translateX(-50%);
  }


  .tp-orbit__ring--03,
  .tp-orbit__ring--gold,
  .tp-orbit__dot {
    display: none;
  }


  .tp-orbit-person,
  .tp-orbit-person--andre,
  .tp-orbit-person--marcelo,
  .tp-orbit-person--frederico {
    position: relative;

    left: auto;
    right: auto;
    top: auto;
    bottom: auto;

    width: 100%;

    margin-bottom: 16px;
  }


  .tp-orbit-person__main {
    min-height: 110px;

    grid-template-columns:
      88px 1fr;
  }


  .tp-orbit-person__photo {
    width: 88px;
    height: 88px;
  }


  .tp-orbit-person__programs,
  .tp-orbit-person--marcelo
  .tp-orbit-person__programs,
  .tp-orbit-person--frederico
  .tp-orbit-person__programs {
    position: relative;

    left: auto;
    right: auto;
    top: auto;

    width: 100%;

    margin-top: 8px;
  }

}

/* ==========================================================
   O PROGRAMA
========================================================== */

.tp-program {
  position: relative;

  padding:
    clamp(105px,11vw,165px)
    0;

  background:
    var(--tp-light);
}


.tp-program__grid {
  display: grid;

  grid-template-columns:
    1fr .7fr;

  gap:
    clamp(60px,8vw,120px);

  align-items: start;
}


.tp-program__title h2 {
  max-width: 720px;

  color:
    var(--tp-blue-950);

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(38px,4.7vw,62px);

  font-weight: 400;

  line-height: 1.07;

  letter-spacing: -.045em;
}


.tp-program__title h2 strong {
  display: block;

  color:
    var(--tp-blue-700);

  font-weight: 650;
}


.tp-program__content {
  padding-top: 35px;

  display: grid;

  gap: 17px;
}


.tp-program__content p {
  color:
    var(--tp-muted);

  font-size: 14px;

  line-height: 1.85;
}


.tp-program__content
.tp-program__lead {
  color:
    var(--tp-text);

  font-size: 16px;
}


/* PILARES */

.tp-program__pillars {
  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  margin-top:
    clamp(65px,8vw,105px);

  border-top:
    1px solid rgba(4,50,70,.11);

  border-left:
    1px solid rgba(4,50,70,.11);
}


.tp-program__pillars article {
  position: relative;

  min-height: 250px;

  padding: 29px;

  border-right:
    1px solid rgba(4,50,70,.11);

  border-bottom:
    1px solid rgba(4,50,70,.11);

  transition:
    .35s ease;
}


.tp-program__pillars article:hover {
  z-index: 2;

  transform:
    translateY(-5px);

  background: white;

  box-shadow:
    0 25px 60px rgba(4,40,54,.08);
}


.tp-program__pillars article > span {
  position: absolute;

  top: 22px;
  right: 24px;

  color:
    rgba(4,50,70,.12);

  font-size: 8px;

  font-weight: 800;
}


.tp-program__pillar-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  margin-bottom: 39px;

  border-radius: 50%;

  color:
    var(--tp-gold-dark);

  border:
    1px solid rgba(217,170,49,.3);
}


.tp-program__pillars h3 {
  margin: 0;

  color:
    var(--tp-blue-950);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 19px;
}


.tp-program__pillars p {
  margin:
    12px 0 0;

  color:
    var(--tp-muted);

  font-size: 11px;

  line-height: 1.7;
}


/* ==========================================================
   ESPECIALISTAS
========================================================== */

.tp-experts {
  position: relative;

  padding:
    clamp(110px,12vw,175px)
    0;

  overflow: hidden;

  background:
    linear-gradient(
      140deg,
      #021a26,
      #06354a
    );
}


.tp-experts__glow {
  position: absolute;

  width: 600px;
  height: 600px;

  top: -320px;
  right: -300px;

  border-radius: 50%;

  background:
    rgba(217,170,49,.08);

  filter: blur(80px);
}


.tp-experts__heading {
  position: relative;

  margin-bottom: 60px;
}


.tp-experts__heading-grid {
  display: grid;

  grid-template-columns:
    1fr .48fr;

  align-items: end;

  gap: 80px;
}


.tp-experts__heading h2 {
  max-width: 780px;

  margin: 0;

  color: white;

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(39px,4.8vw,64px);

  font-weight: 400;

  line-height: 1.06;

  letter-spacing:
    -.045em;
}


.tp-experts__heading h2 strong {
  display: block;

  color:
    var(--tp-gold-light);

  font-weight: 650;
}


.tp-experts__heading p {
  margin: 0;

  color:
    rgba(255,255,255,.55);

  font-size: 14px;

  line-height: 1.8;
}


/* GRID */

.tp-experts__grid {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(3,minmax(0,1fr));

  gap: 18px;
}


/* CARD */

.tp-expert-card {
  overflow: hidden;

  border:
    1px solid rgba(255,255,255,.1);

  border-radius: 19px;

  background:
    rgba(255,255,255,.04);

  transition:
    transform .4s ease,
    border-color .4s ease;
}


.tp-expert-card:hover {
  transform:
    translateY(-7px);

  border-color:
    rgba(217,170,49,.32);
}


.tp-expert-card__image {
  position: relative;

  height: 410px;

  overflow: hidden;
}


.tp-expert-card__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: top center;

  filter:
    saturate(.85);

  transition:
    transform .6s ease,
    filter .4s ease;
}


.tp-expert-card:hover
.tp-expert-card__image img {
  transform:
    scale(1.04);

  filter:
    saturate(1);
}


.tp-expert-card__gradient {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 35%,
      rgba(2,24,34,.08) 52%,
      rgba(2,24,34,.98) 100%
    );
}


.tp-expert-card__name {
  position: absolute;

  left: 25px;
  right: 25px;
  bottom: 24px;

  z-index: 3;
}


.tp-expert-card__name > span {
  display: block;

  margin-bottom: 7px;

  color:
    var(--tp-gold-light);

  font-size: 8px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .1em;
}


.tp-expert-card__name h3 {
  margin: 0;

  color: white;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 25px;

  font-weight: 600;

  letter-spacing: -.03em;
}


/* LISTA PROGRAMAS */

.tp-expert-card__content {
  padding: 8px 22px 24px;
}


.tp-expert-card__programs {
  display: flex;
  flex-direction: column;
}


.tp-expert-card__programs a {
  display: grid;

  grid-template-columns:
    28px 1fr auto;

  align-items: center;

  gap: 10px;

  min-height: 72px;

  padding:
    12px 3px;

  border-bottom:
    1px solid rgba(255,255,255,.08);

  color: white;

  text-decoration: none;

  transition:
    padding .3s ease,
    background .3s ease;
}


.tp-expert-card__programs a:last-child {
  border-bottom: 0;
}


.tp-expert-card__programs a:hover {
  padding-left: 9px;
}


.tp-expert-card__programs a > span {
  color:
    rgba(255,255,255,.26);

  font-size: 8px;

  font-weight: 800;
}


.tp-expert-card__programs strong,
.tp-expert-card__programs small {
  display: block;
}


.tp-expert-card__programs strong {
  color: white;

  font-size: 11px;

  line-height: 1.35;
}


.tp-expert-card__programs small {
  margin-top: 4px;

  color:
    rgba(255,255,255,.4);

  font-size: 8px;

  line-height: 1.45;
}


.tp-expert-card__programs i {
  color:
    var(--tp-gold);

  font-size: 9px;
}


/* ==========================================================
   RESPONSIVO
========================================================== */

@media (max-width: 1120px) {

  .tp-nav {
    gap: 14px;
  }


  .tp-nav__link {
    font-size: 10px;
  }


  .tp-header__cta {
    display: none;
  }


  .tp-hero__grid {
    grid-template-columns:
      1fr 430px;

    gap: 35px;
  }


  .tp-hero__visual {
    min-height: 540px;
  }


  .tp-hero__orbit--three {
    width: 520px;
    height: 520px;
  }

}


@media (max-width: 900px) {

  .tp-container {
    width:
      min(
        calc(100% - 36px),
        var(--tp-container)
      );
  }


  .tp-menu-toggle {
    display: flex;
  }


  .tp-nav {
    position: fixed;

    top: 0;
    right: 0;

    width: min(86vw,390px);
    height: 100vh;

    padding:
      110px 32px 40px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 0;

    transform:
      translateX(105%);

    background:
      rgba(2,24,34,.98);

    backdrop-filter: blur(25px);

    box-shadow:
      -30px 0 70px rgba(0,0,0,.3);

    transition:
      transform .4s ease;
  }


  .tp-nav.is-open {
    transform:
      translateX(0);
  }


  .tp-nav__link {
    width: 100%;

    padding:
      18px 0;

    border-bottom:
      1px solid rgba(255,255,255,.08);

    font-size: 13px;
  }


  .tp-nav__link::after {
    display: none;
  }


  .tp-menu-toggle.is-active
  span:nth-child(1) {
    transform:
      translateY(6px)
      rotate(45deg);
  }


  .tp-menu-toggle.is-active
  span:nth-child(2) {
    opacity: 0;
  }


  .tp-menu-toggle.is-active
  span:nth-child(3) {
    transform:
      translateY(-6px)
      rotate(-45deg);
  }


  .tp-hero {
    min-height: auto;

    padding:
      125px 0 80px;
  }


  .tp-hero__grid,
  .tp-program__grid,
  .tp-experts__heading-grid {
    grid-template-columns: 1fr;
  }


  .tp-hero__visual {
    min-height: 620px;
  }


  .tp-program__content {
    max-width: 720px;

    padding-top: 0;
  }


  .tp-program__pillars {
    grid-template-columns:
      repeat(2,1fr);
  }


  .tp-experts__heading-grid {
    gap: 25px;
  }


  .tp-experts__heading p {
    max-width: 650px;
  }


  .tp-experts__grid {
    grid-template-columns:
      1fr 1fr;
  }


  .tp-expert-card--frederico {
    grid-column:
      1 / -1;

    max-width: 600px;

    width: 100%;

    margin-inline: auto;
  }

}


@media (max-width: 600px) {

  .tp-container {
    width:
      calc(100% - 32px);
  }


  .tp-header__brand img {
    width: 115px;
  }


  .tp-hero h1 {
    font-size:
      clamp(40px,12vw,54px);
  }


  .tp-hero__lead {
    font-size: 14px;
  }


  .tp-hero__actions {
    flex-direction: column;
  }


  .tp-hero__actions .tp-btn {
    width: 100%;
  }


  .tp-hero__meta {
    display: grid;

    grid-template-columns:
      1fr 1fr;

    margin-top: 35px;
  }


  .tp-hero__meta > div {
    min-width: 0;

    margin: 0;

    padding:
      16px 15px 16px 0;
  }


  .tp-hero__visual {
    min-height: 520px;

    margin-top: 10px;
  }


  .tp-hero__core {
    width: 125px;
    height: 125px;
  }


  .tp-hero__core img {
    width: 60px;
  }


  .tp-hero__orbit--one {
    width: 210px;
    height: 210px;
  }


  .tp-hero__orbit--two {
    width: 315px;
    height: 315px;
  }


  .tp-hero__orbit--three {
    width: 420px;
    height: 420px;
  }


  .tp-hero__person {
    width: 195px;

    grid-template-columns:
      48px 1fr;
  }


  .tp-hero__person img {
    width: 48px;
    height: 48px;
  }


  .tp-hero__person--andre {
    top: 55px;
    left: -5px;
  }


  .tp-hero__person--marcelo {
    right: -5px;
    top: 225px;
  }


  .tp-hero__person--frederico {
    left: 5px;
    bottom: 45px;
  }


  .tp-program,
  .tp-experts {
    padding:
      85px 0;
  }


  .tp-program__title h2,
  .tp-experts__heading h2 {
    font-size:
      clamp(32px,9vw,43px);
  }


  .tp-program__pillars {
    grid-template-columns: 1fr;
  }


  .tp-program__pillars article {
    min-height: auto;
  }


  .tp-experts__grid {
    grid-template-columns: 1fr;
  }


  .tp-expert-card--frederico {
    grid-column: auto;

    max-width: none;
  }


  .tp-expert-card__image {
    height:
      min(125vw,500px);
  }

}/* =========================================================
   CORREÇÃO DE CORES DOS LINKS / BOTÕES
   PÁGINA TRANSFORMAÇÃO PROFISSIONAL
   Cole no FINAL do CSS
========================================================= */

/* LINKS NORMAIS DO MENU */
header a:not(.btn):not(.button),
nav a:not(.btn):not(.button),
.lumux-header a:not(.btn):not(.button) {
    color: #f0c64f !important;
}

/* HOVER DOS LINKS DO MENU */
header a:not(.btn):not(.button):hover,
nav a:not(.btn):not(.button):hover,
.lumux-header a:not(.btn):not(.button):hover {
    color: #ffffff !important;
}


/* =========================================================
   BOTÕES COM FUNDO AMARELO
========================================================= */

a.btn-primary,
a.button-primary,
.btn-primary,
.button-primary,
a[class*="primary"],
a[class*="cta"] {
    color: #062b36 !important;
}

/* garante que filhos do botão também fiquem escuros */
a.btn-primary *,
a.button-primary *,
.btn-primary *,
.button-primary *,
a[class*="primary"] *,
a[class*="cta"] * {
    color: #062b36 !important;
}


/* HOVER DO BOTÃO AMARELO */
a.btn-primary:hover,
a.button-primary:hover,
.btn-primary:hover,
.button-primary:hover,
a[class*="primary"]:hover,
a[class*="cta"]:hover {
    color: #062b36 !important;
}

a.btn-primary:hover *,
a.button-primary:hover *,
.btn-primary:hover *,
.button-primary:hover *,
a[class*="primary"]:hover *,
a[class*="cta"]:hover * {
    color: #062b36 !important;
}


/* =========================================================
   BOTÕES OUTLINE
   Ex.: "ENTENDER A PROPOSTA"
========================================================= */

a.btn-outline,
a.button-outline,
.btn-outline,
.button-outline,
a[class*="outline"] {
    color: #f0c64f !important;
}

a.btn-outline *,
a.button-outline *,
.btn-outline *,
.button-outline *,
a[class*="outline"] * {
    color: inherit !important;
}

a.btn-outline:hover,
a.button-outline:hover,
.btn-outline:hover,
.button-outline:hover,
a[class*="outline"]:hover {
    background: #f0c64f !important;
    border-color: #f0c64f !important;
    color: #062b36 !important;
}


/* =========================================================
   ELEMENTOR / WORDPRESS
   impede regra global de link de sobrescrever os botões
========================================================= */

.elementor a.btn-primary,
.elementor a.button-primary,
.elementor a[class*="cta"] {
    color: #062b36 !important;
}

.elementor a.btn-outline,
.elementor a.button-outline {
    color: #f0c64f !important;
}


/* LINKS DE TEXTO DENTRO DO CONTEÚDO */
main p a:not([class]),
main li a:not([class]),
section p a:not([class]),
section li a:not([class]) {
    color: #f0c64f;
}

main p a:not([class]):hover,
main li a:not([class]):hover,
section p a:not([class]):hover,
section li a:not([class]):hover {
    color: #ffffff;
}

/* ==========================================================
   CORREÇÃO FINAL — HEADER / LINKS / BOTÕES
   Escopo específico da página Transformação
========================================================== */

/* Links da navegação: branco suave */
body.tp-page .tp-header .tp-nav a.tp-nav__link,
body.tp-page .tp-header .tp-nav a.tp-nav__link:link,
body.tp-page .tp-header .tp-nav a.tp-nav__link:visited {
  color: rgba(255,255,255,.72) !important;
  text-decoration: none !important;
}

/* Ativo e hover: branco */
body.tp-page .tp-header .tp-nav a.tp-nav__link:hover,
body.tp-page .tp-header .tp-nav a.tp-nav__link:focus,
body.tp-page .tp-header .tp-nav a.tp-nav__link.is-active {
  color: #ffffff !important;
}

/* Sublinhado dourado somente no ativo/hover */
body.tp-page .tp-header .tp-nav a.tp-nav__link::after {
  background: var(--tp-gold) !important;
}

/* CTA da header: fundo dourado + texto azul escuro */
body.tp-page .tp-header a.tp-header__cta,
body.tp-page .tp-header a.tp-header__cta:link,
body.tp-page .tp-header a.tp-header__cta:visited,
body.tp-page .tp-header a.tp-header__cta:hover,
body.tp-page .tp-header a.tp-header__cta:focus {
  color: var(--tp-blue-950) !important;
  background:
    linear-gradient(
      135deg,
      var(--tp-gold-light),
      var(--tp-gold)
    ) !important;
  border-color: transparent !important;
  text-decoration: none !important;
}

/* Ícones internos de botões dourados */
body.tp-page a.tp-btn--gold,
body.tp-page a.tp-btn--gold:link,
body.tp-page a.tp-btn--gold:visited {
  color: var(--tp-blue-950) !important;
}

body.tp-page a.tp-btn--gold:hover,
body.tp-page a.tp-btn--gold:focus {
  color: var(--tp-blue-950) !important;
}

body.tp-page a.tp-btn--gold i,
body.tp-page a.tp-btn--gold svg {
  color: var(--tp-blue-950) !important;
  fill: currentColor !important;
}

/* Botão outline */
body.tp-page a.tp-btn--outline,
body.tp-page a.tp-btn--outline:link,
body.tp-page a.tp-btn--outline:visited {
  color: #ffffff !important;
}

body.tp-page a.tp-btn--outline:hover,
body.tp-page a.tp-btn--outline:focus {
  color: var(--tp-blue-950) !important;
  background: var(--tp-gold) !important;
  border-color: var(--tp-gold) !important;
}

/* Impede cores globais do Elementor de sobrescrever a header */
.elementor body.tp-page .tp-header .tp-nav a.tp-nav__link,
.elementor body.tp-page .tp-header .tp-nav a.tp-nav__link:visited {
  color: rgba(255,255,255,.72) !important;
}

.elementor body.tp-page .tp-header .tp-nav a.tp-nav__link:hover,
.elementor body.tp-page .tp-header .tp-nav a.tp-nav__link.is-active {
  color: #ffffff !important;
}

.elementor body.tp-page .tp-header a.tp-header__cta,
.elementor body.tp-page .tp-header a.tp-header__cta:hover,
.elementor body.tp-page .tp-header a.tp-header__cta:visited {
  color: var(--tp-blue-950) !important;
}


/* ==========================================================
   FIX DEFINITIVO DA HEADER NO ELEMENTOR
   O container desta página é .elementor-element-0f911b2
   Não depende de body.tp-page.
========================================================== */

/* ----------------------------------------------------------
   LINKS DO MENU
---------------------------------------------------------- */
.elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link,
.elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link:link,
.elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link:visited,
.elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link:not(.tp-header__cta) {
  color: rgba(255,255,255,.74) !important;
  -webkit-text-fill-color: rgba(255,255,255,.74) !important;
  text-decoration: none !important;
}

/* elementos internos do link, caso o Elementor crie span */
.elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link *,
.elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link span,
.elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link strong {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

/* hover / ativo */
.elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link:hover,
.elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link:focus,
.elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link.is-active,
.elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link[aria-current="page"] {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* linha dourada somente em hover/ativo */
.elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link::after {
  background: #d9aa31 !important;
}


/* ----------------------------------------------------------
   CTA "SOLICITAR PROPOSTA"
---------------------------------------------------------- */
.elementor-element-0f911b2 .tp-header .tp-header__actions .tp-header__cta,
.elementor-element-0f911b2 .tp-header .tp-header__actions a.tp-header__cta,
.elementor-element-0f911b2 .tp-header a.tp-header__cta.tp-btn,
.elementor-element-0f911b2 .tp-header a.tp-header__cta.tp-btn.tp-btn--gold,
.elementor-element-0f911b2 .tp-header a.tp-header__cta:link,
.elementor-element-0f911b2 .tp-header a.tp-header__cta:visited {
  background: #ebbd3e !important;
  background-image: none !important;
  border: 1px solid #ebbd3e !important;

  color: #021822 !important;
  -webkit-text-fill-color: #021822 !important;

  text-shadow: none !important;
  text-decoration: none !important;
}

/* força também qualquer span/strong/i dentro do CTA */
.elementor-element-0f911b2 .tp-header .tp-header__cta *,
.elementor-element-0f911b2 .tp-header .tp-header__cta span,
.elementor-element-0f911b2 .tp-header .tp-header__cta strong,
.elementor-element-0f911b2 .tp-header .tp-header__cta i {
  color: #021822 !important;
  -webkit-text-fill-color: #021822 !important;
}

/* CTA hover */
.elementor-element-0f911b2 .tp-header .tp-header__actions .tp-header__cta:hover,
.elementor-element-0f911b2 .tp-header a.tp-header__cta:hover,
.elementor-element-0f911b2 .tp-header a.tp-header__cta:focus {
  background: #ffffff !important;
  background-image: none !important;
  border-color: #ffffff !important;

  color: #021822 !important;
  -webkit-text-fill-color: #021822 !important;

  transform: translateY(-2px);
}


/* ----------------------------------------------------------
   SEGURANÇA CONTRA ESTILOS GLOBAIS DO ELEMENTOR / TEMA
---------------------------------------------------------- */
.elementor .elementor-element.elementor-element-0f911b2
.tp-header .tp-nav a.tp-nav__link {
  color: rgba(255,255,255,.74) !important;
  -webkit-text-fill-color: rgba(255,255,255,.74) !important;
}

.elementor .elementor-element.elementor-element-0f911b2
.tp-header .tp-nav a.tp-nav__link:hover,
.elementor .elementor-element.elementor-element-0f911b2
.tp-header .tp-nav a.tp-nav__link.is-active {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.elementor .elementor-element.elementor-element-0f911b2
.tp-header .tp-header__actions a.tp-header__cta,
.elementor .elementor-element.elementor-element-0f911b2
.tp-header .tp-header__actions a.tp-header__cta:link,
.elementor .elementor-element.elementor-element-0f911b2
.tp-header .tp-header__actions a.tp-header__cta:visited,
.elementor .elementor-element.elementor-element-0f911b2
.tp-header .tp-header__actions a.tp-header__cta:hover {
  color: #021822 !important;
  -webkit-text-fill-color: #021822 !important;
}

/* mobile mantém a mesma lógica */
@media (max-width: 900px) {
  .elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link,
  .elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link:link,
  .elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link:visited {
    color: rgba(255,255,255,.82) !important;
    -webkit-text-fill-color: rgba(255,255,255,.82) !important;
  }

  .elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link:hover,
  .elementor-element-0f911b2 .tp-header .tp-nav .tp-nav__link.is-active {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }
}/* ==========================================================
   ESPECIALISTAS — 4 CARDS
========================================================== */

.tp-experts__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}


/* FOTO */
.tp-expert-card__image {
  height: 390px;
}


/* NOME */
.tp-expert-card__name {
  left: 21px;
  right: 21px;
  bottom: 22px;
}

.tp-expert-card__name h3 {
  font-size: clamp(20px, 1.6vw, 25px);
}


/* ==========================================================
   ITENS DO NELSON
========================================================== */

.tp-expert-card__item {
  display: grid;

  grid-template-columns:
    28px 1fr auto;

  align-items: center;

  gap: 10px;

  min-height: 72px;

  padding: 12px 3px;

  border-bottom:
    1px solid rgba(255,255,255,.08);

  transition:
    padding .3s ease,
    background .3s ease;
}


.tp-expert-card__item:last-child {
  border-bottom: 0;
}


.tp-expert-card__item:hover {
  padding-left: 9px;
}


.tp-expert-card__item > span {
  color:
    rgba(255,255,255,.26);

  font-size: 8px;
  font-weight: 800;
}


.tp-expert-card__item strong,
.tp-expert-card__item small {
  display: block;
}


.tp-expert-card__item strong {
  color: white;

  font-size: 11px;

  line-height: 1.35;
}


.tp-expert-card__item small {
  margin-top: 4px;

  color:
    rgba(255,255,255,.4);

  font-size: 8px;

  line-height: 1.45;
}


.tp-expert-card__item i {
  color:
    var(--tp-gold);

  font-size: 10px;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

  .tp-experts__grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 20px;
  }

  .tp-expert-card__image {
    height: 450px;
  }

  /* remove regra antiga que centralizava Frederico */
  .tp-expert-card--frederico {
    grid-column: auto;
    max-width: none;
    width: auto;
    margin-inline: 0;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

  .tp-experts__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tp-expert-card__image {
    height: min(120vw, 500px);
  }

  .tp-expert-card--frederico,
  .tp-expert-card--nelson {
    grid-column: auto;
    max-width: none;
    width: 100%;
    margin-inline: 0;
  }

}/* ==========================================================
   HERO — 4º ESPECIALISTA | NELSON SCAPIN
========================================================== */

.tp-eco-person--nelson {
  right: 25px;
  top: 58px;
}


/* Nelson abre conteúdo para a esquerda */
.tp-eco-person--nelson .tp-eco-person__programs {
  left: auto;
  right: 25px;
}


/* ==========================================================
   REORGANIZAÇÃO DOS 4 ESPECIALISTAS NA HERO
========================================================== */

.tp-eco-person--andre {
  top: 70px;
  left: 5px;
}

.tp-eco-person--nelson {
  top: 70px;
  right: 5px;
}

.tp-eco-person--frederico {
  left: 20px;
  bottom: 55px;
}

.tp-eco-person--marcelo {
  top: auto;
  right: 20px;
  bottom: 55px;
}


/* um pouco mais compactos para os 4 caberem melhor */
.tp-eco-person {
  width: 230px;

  grid-template-columns:
    76px 1fr;

  gap: 10px;

  padding: 9px;
}

.tp-eco-person__photo {
  width: 76px;
  height: 76px;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

  .tp-hero-ecosystem {
    height: 650px;
    max-width: 620px;
  }

  .tp-eco-person {
    width: 225px;
  }

  .tp-eco-person--andre {
    left: 0;
    top: 65px;
  }

  .tp-eco-person--nelson {
    right: 0;
    top: 65px;
  }

  .tp-eco-person--frederico {
    left: 10px;
    bottom: 55px;
  }

  .tp-eco-person--marcelo {
    right: 10px;
    bottom: 55px;
    top: auto;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

  .tp-hero-ecosystem {
    height: auto;
    padding-top: 230px;
  }

  .tp-eco-person,
  .tp-eco-person--andre,
  .tp-eco-person--marcelo,
  .tp-eco-person--frederico,
  .tp-eco-person--nelson {

    position: relative;

    left: auto;
    right: auto;
    top: auto;
    bottom: auto;

    width: 100%;

    grid-template-columns:
      76px 1fr;

    margin-bottom: 12px;
  }


  .tp-eco-person--nelson .tp-eco-person__programs {
    left: auto;
    right: auto;
  }


  .tp-eco-person__programs,
  .tp-eco-person--marcelo .tp-eco-person__programs,
  .tp-eco-person--frederico .tp-eco-person__programs,
  .tp-eco-person--nelson .tp-eco-person__programs {

    position: relative;

    left: auto;
    right: auto;
    top: auto;

    grid-column: 1 / -1;

    width: 100%;

    margin-top: 8px;
  }

}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-b694cfe *//* ==========================================================
   ANDRÉ CARVALHO
========================================================== */

.tp-andre {
  position: relative;

  padding:
    clamp(100px, 10vw, 150px)
    0;

  background: #f5f4ef;

  overflow: hidden;
}


/* ==========================================================
   CONTAINER / GRID
========================================================== */

.tp-andre .tp-container {
  width: min(
    calc(100% - 48px),
    1200px
  );

  margin-inline: auto;
}


.tp-andre__grid {
  display: grid;

  grid-template-columns:
    minmax(360px, .76fr)
    minmax(0, 1.24fr);

  align-items: start;

  gap:
    clamp(50px, 6vw, 85px);
}


/* ==========================================================
   PERFIL
========================================================== */

.tp-andre__profile {
  position: sticky;

  top: 105px;
}


/* FOTO */

.tp-andre__photo {
  position: relative;

  width: 100%;
  height: 630px;

  overflow: hidden;

  border-radius: 24px;

  background: #031b29;

  box-shadow:
    0 30px 80px
    rgba(4, 37, 51, .14);
}


.tp-andre__photo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center top;

  transition:
    transform .6s
    cubic-bezier(.2,.8,.2,1);
}


.tp-andre__photo:hover img {
  transform: scale(1.025);
}


.tp-andre__photo-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(3,27,41,0) 30%,
      rgba(3,27,41,.08) 48%,
      rgba(3,27,41,.95) 100%
    );

  pointer-events: none;
}


/* TEXTO DA FOTO */

.tp-andre__photo-info {
  position: absolute;

  z-index: 2;

  left: 34px;
  right: 34px;
  bottom: 34px;
}


.tp-andre__photo-info > span {
  display: block;

  margin-bottom: 10px;

  color: #e8c45c;

  font-size: 9px;
  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .11em;
}


.tp-andre__photo-info h2 {
  margin: 0;

  color: #ffffff;

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(38px, 4vw, 52px);

  font-weight: 400;

  line-height: .98;

  letter-spacing: -.045em;
}


.tp-andre__photo-info h2 strong {
  display: block;

  color: #e8c45c;

  font-weight: 700;
}


.tp-andre__photo-info p {
  max-width: 350px;

  margin:
    18px 0 0;

  color:
    rgba(255,255,255,.68);

  font-size: 11px;

  line-height: 1.7;
}


/* ==========================================================
   QUOTE
========================================================== */

.tp-andre__quote {
  display: grid;

  grid-template-columns:
    30px 1fr;

  gap: 15px;

  margin-top: 18px;

  padding: 22px 24px;

  border:
    1px solid rgba(5,50,70,.10);

  border-radius: 15px;

  background:
    rgba(255,255,255,.62);
}


.tp-andre__quote i {
  margin-top: 2px;

  color: #b88415;

  font-size: 19px;
}


.tp-andre__quote p {
  margin: 0;

  color: #073247;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 12px;

  font-weight: 500;

  line-height: 1.65;
}


/* ==========================================================
   CONTEÚDO DIREITA
========================================================== */

.tp-andre__content {
  min-width: 0;
}


/* ==========================================================
   HEADING
========================================================== */

.tp-andre__heading {
  margin-bottom: 36px;
}


.tp-andre__heading .tp-section-index {
  display: block;

  margin-bottom: 20px;

  color: #b88415;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: .12em;
}


.tp-andre__heading h2 {
  max-width: 710px;

  margin: 0;

  color: #031b29;

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(37px, 4.2vw, 57px);

  font-weight: 400;

  line-height: 1.06;

  letter-spacing: -.045em;
}


.tp-andre__heading h2 strong {
  display: block;

  color: #0b4962;

  font-weight: 650;
}


.tp-andre__heading > p {
  max-width: 650px;

  margin:
    23px 0 0;

  color: #68757b;

  font-size: 14px;

  line-height: 1.8;
}


/* ==========================================================
   ACCORDION
========================================================== */

.tp-program-card {
  position: relative;

  margin-bottom: 10px;

  overflow: hidden;

  border:
    1px solid rgba(5,50,70,.10);

  border-radius: 14px;

  background:
    rgba(255,255,255,.38);

  transition:
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}


.tp-program-card:hover {
  border-color:
    rgba(216,171,50,.32);
}


.tp-program-card.is-open {
  border-color:
    rgba(216,171,50,.40);

  background:
    rgba(255,255,255,.72);

  box-shadow:
    0 18px 45px
    rgba(5,40,55,.055);
}


/* ==========================================================
   HEADER DO ACCORDION
   IMPORTANTE: NÃO É BUTTON
========================================================== */

.tp-program-card__header {
  position: relative;

  width: 100%;
  min-height: 108px;

  display: grid;

  grid-template-columns:
    45px 1fr 45px;

  align-items: center;

  gap: 16px;

  padding:
    20px 22px;

  background:
    transparent !important;

  background-color:
    transparent !important;

  color: inherit !important;

  border: 0 !important;

  border-radius: 0 !important;

  box-shadow: none !important;

  text-shadow: none !important;

  cursor: pointer;

  outline: none;

  -webkit-tap-highlight-color:
    transparent;

  transition:
    background .3s ease;
}


/* HOVER SEM ROSA */

.tp-program-card__header:hover {
  background:
    rgba(5,50,70,.025) !important;

  background-color:
    rgba(5,50,70,.025) !important;
}


/* FOCO */

.tp-program-card__header:focus,
.tp-program-card__header:active {
  background:
    transparent !important;

  background-color:
    transparent !important;

  outline: none !important;

  box-shadow: none !important;
}


.tp-program-card__header:focus-visible {
  outline:
    1px solid rgba(216,171,50,.45) !important;

  outline-offset: -1px !important;
}


/* LINHA DOURADA */

.tp-program-card__header::after {
  content: "";

  position: absolute;

  left: 22px;
  right: 22px;
  bottom: 0;

  height: 1px;

  background:
    transparent;

  transition:
    background .3s ease;
}


.tp-program-card__header:hover::after,
.tp-program-card.is-open
.tp-program-card__header::after {
  background:
    linear-gradient(
      90deg,
      rgba(216,171,50,.75),
      rgba(216,171,50,0)
    );
}


/* ==========================================================
   NÚMERO
========================================================== */

.tp-program-card__number {
  color: #b88415 !important;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 11px;

  font-weight: 700;

  transition: none;
}


/* ==========================================================
   TITULO
========================================================== */

.tp-program-card__title {
  min-width: 0;
}


.tp-program-card__title > span {
  display: block;

  margin-bottom: 7px;

  color: #839097 !important;

  font-size: 8px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .11em;

  transition: none;
}


.tp-program-card__title h3 {
  margin: 0;

  color: #031b29 !important;

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(21px, 2.15vw, 29px);

  font-weight: 500;

  line-height: 1.12;

  letter-spacing: -.025em;

  transition: none;
}


.tp-program-card__title h3 strong {
  display: block;

  margin-top: 4px;

  color: #08708c !important;

  font-size: .63em;

  font-weight: 600;

  line-height: 1.4;

  letter-spacing: 0;

  transition: none;
}


/* FORÇA MESMAS CORES NO HOVER */

.tp-program-card__header:hover
.tp-program-card__number {
  color: #b88415 !important;
}


.tp-program-card__header:hover
.tp-program-card__title > span {
  color: #839097 !important;
}


.tp-program-card__header:hover
.tp-program-card__title h3 {
  color: #031b29 !important;
}


.tp-program-card__header:hover
.tp-program-card__title h3 strong {
  color: #08708c !important;
}


/* ==========================================================
   BOTÃO +
========================================================== */

.tp-program-card__toggle {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  justify-self: end;

  border-radius: 50%;

  color: #b88415 !important;

  border:
    1px solid rgba(5,50,70,.14) !important;

  background:
    transparent !important;

  box-shadow:
    none !important;

  transition:
    background .3s ease,
    border-color .3s ease,
    color .3s ease;
}


.tp-program-card__header:hover
.tp-program-card__toggle {
  color: #031b29 !important;

  border-color:
    rgba(216,171,50,.5) !important;

  background:
    rgba(216,171,50,.12) !important;
}


.tp-program-card.is-open
.tp-program-card__toggle {
  color: #031b29 !important;

  border-color:
    #d8ab32 !important;

  background:
    #d8ab32 !important;
}


.tp-program-card__toggle i {
  transition:
    transform .35s ease;
}


.tp-program-card.is-open
.tp-program-card__toggle i {
  transform:
    rotate(45deg);
}


/* ==========================================================
   CORPO EXPANSÍVEL
========================================================== */

.tp-program-card__body {
  display: grid;

  grid-template-rows:
    0fr;

  transition:
    grid-template-rows
    .42s
    cubic-bezier(.2,.8,.2,1);
}


.tp-program-card.is-open
.tp-program-card__body {
  grid-template-rows:
    1fr;
}


.tp-program-card__body-inner {
  min-height: 0;

  overflow: hidden;
}


.tp-program-card.is-open
.tp-program-card__body-inner {
  padding:
    0 22px 25px;
}


/* ==========================================================
   LAYOUT INTERNO ABERTO
========================================================== */

.tp-program-card__details {
  display: grid;

  grid-template-columns:
    minmax(210px,.72fr)
    minmax(0,1.28fr);

  gap: 24px;

  padding-top: 22px;
}


/* HIGHLIGHT */

.tp-program-card__highlight {
  display: flex;

  flex-direction: column;

  justify-content: space-between;

  min-height: 205px;

  padding: 22px;

  border-radius: 13px;

  background:
    linear-gradient(
      145deg,
      #031b29,
      #07536d
    );
}


.tp-program-card__highlight-icon {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid rgba(216,171,50,.38);

  color: #e8c45c;

  font-size: 17px;
}


.tp-program-card__highlight p {
  margin:
    30px 0 0;

  color:
    rgba(255,255,255,.84);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 12px;

  line-height: 1.7;
}


/* TEXTOS */

.tp-program-card__text {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  align-content: start;

  gap: 24px;
}


.tp-program-card__text p {
  margin: 0;

  color: #66747b;

  font-size: 12px;

  line-height: 1.8;
}


/* ==========================================================
   TAGS
========================================================== */

.tp-program-card__tags {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 22px;

  padding-top: 18px;

  border-top:
    1px solid rgba(5,50,70,.08);
}


.tp-program-card__tags span {
  padding:
    7px 11px;

  border-radius: 50px;

  color: #07536d;

  border:
    1px solid rgba(5,50,70,.12);

  background:
    rgba(255,255,255,.65);

  font-size: 8px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .04em;
}


/* ==========================================================
   ELEMENTOR — PROTEÇÃO CONTRA ESTILO GLOBAL
========================================================== */

/*
 * O cabeçalho agora é DIV, portanto as regras
 * globais de button:hover do Elementor não devem
 * mais atingir o accordion.
 */

.elementor .tp-andre
.tp-program-card__header:hover,
.elementor .tp-andre
.tp-program-card__header:focus,
.elementor .tp-andre
.tp-program-card__header:active {

  background:
    rgba(5,50,70,.025) !important;

  background-color:
    rgba(5,50,70,.025) !important;

  color:
    inherit !important;

  box-shadow:
    none !important;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

  .tp-andre__grid {
    grid-template-columns:
      350px
      minmax(0,1fr);

    gap: 42px;
  }


  .tp-andre__photo {
    height: 570px;
  }


  .tp-program-card__details {
    grid-template-columns: 1fr;
  }


  .tp-program-card__highlight {
    min-height: auto;
  }

}


/* ==========================================================
   TABLET VERTICAL
========================================================== */

@media (max-width: 850px) {

  .tp-andre__grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .tp-andre__profile {
    position: relative;

    top: auto;

    width: 100%;
    max-width: 650px;

    margin-inline: auto;
  }


  .tp-andre__photo {
    height: 640px;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

  .tp-andre {
    padding:
      80px 0;
  }


  .tp-andre .tp-container {
    width:
      calc(100% - 32px);
  }


  .tp-andre__photo {
    height:
      min(135vw,520px);

    border-radius: 18px;
  }


  .tp-andre__photo-info {
    left: 23px;
    right: 23px;
    bottom: 25px;
  }


  .tp-andre__photo-info h2 {
    font-size:
      clamp(36px,11vw,48px);
  }


  .tp-andre__heading h2 {
    font-size:
      clamp(31px,9vw,42px);
  }


  .tp-program-card__header {
    min-height: 105px;

    grid-template-columns:
      27px
      minmax(0,1fr)
      37px;

    gap: 9px;

    padding:
      18px 15px;
  }


  .tp-program-card__title h3 {
    font-size:
      clamp(18px,5.5vw,23px);
  }


  .tp-program-card__title h3 strong {
    font-size: .6em;
  }


  .tp-program-card__toggle {
    width: 35px;
    height: 35px;
  }


  .tp-program-card.is-open
  .tp-program-card__body-inner {
    padding:
      0 15px 20px;
  }


  .tp-program-card__details {
    grid-template-columns: 1fr;

    gap: 18px;

    padding-top: 18px;
  }


  .tp-program-card__text {
    grid-template-columns: 1fr;

    gap: 13px;
  }


  .tp-program-card__highlight {
    padding: 18px;
  }


  .tp-program-card__highlight p {
    margin-top: 22px;
  }

}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-5504079 *//* ==========================================================
   MARCELO MOREIRA
========================================================== */

.tp-marcelo {
  position: relative;

  padding:
    clamp(105px, 11vw, 165px)
    0;

  overflow: hidden;

  color: white;

  background:
    linear-gradient(
      140deg,
      #021822 0%,
      #052f42 55%,
      #032330 100%
    );

  isolation: isolate;
}


.tp-marcelo::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: -3;

  opacity: .3;

  background-image:
    linear-gradient(
      rgba(255,255,255,.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.025) 1px,
      transparent 1px
    );

  background-size: 90px 90px;
}


.tp-marcelo::after {
  content: "";

  position: absolute;

  z-index: -2;

  width: 600px;
  height: 600px;

  right: -300px;
  top: -300px;

  border-radius: 50%;

  background:
    rgba(216,171,50,.07);

  filter: blur(80px);
}


/* ==========================================================
   GRID
========================================================== */

.tp-marcelo__grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(360px, .72fr);

  gap:
    clamp(55px,7vw,95px);

  align-items: start;
}


/* ==========================================================
   HEADING
========================================================== */

.tp-marcelo__heading {
  margin-bottom: 42px;
}


.tp-marcelo__heading h2 {
  max-width: 730px;

  margin: 0;

  color: white;

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(38px,4.5vw,60px);

  line-height: 1.06;

  font-weight: 400;

  letter-spacing: -.045em;
}


.tp-marcelo__heading h2 strong {
  display: block;

  color: var(--tp-gold-light);

  font-weight: 650;
}


.tp-marcelo__heading > p {
  max-width: 650px;

  margin:
    24px 0 0;

  color:
    rgba(255,255,255,.58);

  font-size: 14px;

  line-height: 1.85;
}


/* ==========================================================
   PROGRAMAS
========================================================== */

.tp-marcelo__programs {
  display: grid;

  grid-template-columns:
    235px minmax(0,1fr);

  overflow: hidden;

  border:
    1px solid rgba(255,255,255,.1);

  border-radius: 18px;

  background:
    rgba(255,255,255,.025);

  box-shadow:
    0 30px 80px rgba(0,0,0,.15);
}


/* ==========================================================
   TABS
========================================================== */

.tp-marcelo__tabs {
  padding: 13px;

  border-right:
    1px solid rgba(255,255,255,.08);

  background:
    rgba(2,24,34,.42);
}


.tp-marcelo-tab {
  position: relative;

  min-height: 110px;

  display: grid;

  grid-template-columns:
    25px 1fr auto;

  align-items: center;

  gap: 10px;

  padding:
    17px 12px;

  border-bottom:
    1px solid rgba(255,255,255,.07);

  color:
    rgba(255,255,255,.55);

  cursor: pointer;

  outline: none;

  transition:
    color .3s ease,
    background .3s ease;
}


.tp-marcelo-tab:last-child {
  border-bottom: 0;
}


.tp-marcelo-tab:hover {
  color: white;

  background:
    rgba(255,255,255,.035);
}


.tp-marcelo-tab.is-active {
  color: white;

  border-radius: 10px;

  background:
    rgba(255,255,255,.07);
}


.tp-marcelo-tab > span {
  color:
    rgba(255,255,255,.25);

  font-size: 8px;

  font-weight: 800;
}


.tp-marcelo-tab.is-active > span {
  color:
    var(--tp-gold-light);
}


.tp-marcelo-tab small {
  display: block;

  margin-bottom: 5px;

  color:
    rgba(255,255,255,.35);

  font-size: 7px;

  text-transform: uppercase;

  letter-spacing: .08em;
}


.tp-marcelo-tab strong {
  display: block;

  color: inherit;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 12px;

  line-height: 1.35;
}


.tp-marcelo-tab i {
  color:
    var(--tp-gold);

  font-size: 8px;

  opacity: 0;

  transform:
    translateX(-5px);

  transition:
    .3s ease;
}


.tp-marcelo-tab.is-active i {
  opacity: 1;

  transform:
    translateX(0);
}


/* ==========================================================
   PAINÉIS
========================================================== */

.tp-marcelo__panels {
  position: relative;

  min-height: 500px;
}


.tp-marcelo-panel {
  position: absolute;

  inset: 0;

  padding:
    clamp(30px,4vw,50px);

  opacity: 0;

  visibility: hidden;

  transform:
    translateY(10px);

  pointer-events: none;

  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s ease;
}


.tp-marcelo-panel.is-active {
  position: relative;

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

  pointer-events: auto;
}


/* ==========================================================
   TOPO PAINEL
========================================================== */

.tp-marcelo-panel__top {
  display: flex;

  align-items: center;

  gap: 13px;

  margin-bottom: 30px;
}


.tp-marcelo-panel__icon {
  width: 48px;
  height: 48px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color:
    var(--tp-gold-light);

  border:
    1px solid rgba(216,171,50,.35);
}


.tp-marcelo-panel__top > span {
  color:
    var(--tp-gold-light);

  font-size: 9px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .1em;
}


/* ==========================================================
   TÍTULO PAINEL
========================================================== */

.tp-marcelo-panel h3 {
  max-width: 570px;

  margin: 0;

  color: white;

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(30px,3.3vw,45px);

  font-weight: 400;

  line-height: 1.08;

  letter-spacing: -.04em;
}


.tp-marcelo-panel h3 strong {
  display: block;

  color:
    var(--tp-gold-light);

  font-weight: 650;
}


.tp-marcelo-panel__lead {
  max-width: 580px;

  margin:
    25px 0 0;

  color:
    rgba(255,255,255,.82);

  font-size: 14px;

  line-height: 1.75;
}


/* ==========================================================
   COPY
========================================================== */

.tp-marcelo-panel__copy {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 22px;

  margin-top: 26px;

  padding-top: 24px;

  border-top:
    1px solid rgba(255,255,255,.08);
}


.tp-marcelo-panel__copy p {
  margin: 0;

  color:
    rgba(255,255,255,.5);

  font-size: 11px;

  line-height: 1.8;
}


/* ==========================================================
   TAGS
========================================================== */

.tp-marcelo-panel__tags {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 28px;
}


.tp-marcelo-panel__tags span {
  padding:
    7px 11px;

  border-radius: 50px;

  color:
    rgba(255,255,255,.7);

  border:
    1px solid rgba(255,255,255,.1);

  background:
    rgba(255,255,255,.025);

  font-size: 8px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: .04em;
}


/* ==========================================================
   PERFIL
========================================================== */

.tp-marcelo__profile {
  position: sticky;

  top: 105px;
}


.tp-marcelo__photo {
  position: relative;

  height: 625px;

  overflow: hidden;

  border-radius: 24px;

  border:
    1px solid rgba(255,255,255,.09);

  background:
    var(--tp-blue-950);

  box-shadow:
    0 35px 90px rgba(0,0,0,.25);
}


.tp-marcelo__photo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position:
    center top;

  transition:
    transform .6s ease;
}


.tp-marcelo__photo:hover img {
  transform:
    scale(1.03);
}


.tp-marcelo__photo-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 30%,
      rgba(2,24,34,.1) 50%,
      rgba(2,24,34,.96) 100%
    );
}


/* ==========================================================
   INFO FOTO
========================================================== */

.tp-marcelo__photo-info {
  position: absolute;

  z-index: 2;

  left: 33px;
  right: 33px;
  bottom: 34px;
}


.tp-marcelo__photo-info > span {
  display: block;

  margin-bottom: 9px;

  color:
    var(--tp-gold-light);

  font-size: 9px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .1em;
}


.tp-marcelo__photo-info h2 {
  margin: 0;

  color: white;

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(36px,4vw,51px);

  font-weight: 400;

  line-height: .98;

  letter-spacing: -.045em;
}


.tp-marcelo__photo-info h2 strong {
  display: block;

  color:
    var(--tp-gold-light);

  font-weight: 700;
}


.tp-marcelo__photo-info p {
  max-width: 350px;

  margin:
    17px 0 0;

  color:
    rgba(255,255,255,.6);

  font-size: 11px;

  line-height: 1.7;
}


/* ==========================================================
   QUOTE
========================================================== */

.tp-marcelo__quote {
  display: grid;

  grid-template-columns:
    45px 1fr;

  gap: 14px;

  margin-top: 18px;

  padding: 22px;

  border:
    1px solid rgba(255,255,255,.09);

  border-radius: 14px;

  background:
    rgba(255,255,255,.04);
}


.tp-marcelo__quote-icon {
  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color:
    var(--tp-gold-light);

  border:
    1px solid rgba(216,171,50,.28);
}


.tp-marcelo__quote p {
  margin: 0;

  color:
    rgba(255,255,255,.75);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 12px;

  line-height: 1.65;
}


/* ==========================================================
   RESPONSIVO
========================================================== */

@media (max-width: 1050px) {

  .tp-marcelo__grid {
    grid-template-columns:
      minmax(0,1fr)
      350px;

    gap: 42px;
  }


  .tp-marcelo__programs {
    grid-template-columns:
      200px minmax(0,1fr);
  }


  .tp-marcelo__photo {
    height: 570px;
  }

}


@media (max-width: 850px) {

  .tp-marcelo__grid {
    grid-template-columns: 1fr;
  }


  .tp-marcelo__profile {
    position: relative;

    top: auto;

    order: -1;

    width: 100%;
    max-width: 650px;

    margin-inline: auto;
  }


  .tp-marcelo__photo {
    height: 640px;
  }

}


@media (max-width: 650px) {

  .tp-marcelo {
    padding:
      80px 0;
  }


  .tp-marcelo__heading h2 {
    font-size:
      clamp(31px,9vw,42px);
  }


  .tp-marcelo__photo {
    height:
      min(135vw,520px);
  }


  .tp-marcelo__programs {
    display: block;
  }


  .tp-marcelo__tabs {
    display: flex;

    overflow-x: auto;

    gap: 7px;

    padding: 9px;

    border-right: 0;

    border-bottom:
      1px solid rgba(255,255,255,.08);

    scrollbar-width: none;
  }


  .tp-marcelo__tabs::-webkit-scrollbar {
    display: none;
  }


  .tp-marcelo-tab {
    flex: 0 0 auto;

    width: auto;

    min-height: 48px;

    display: flex;

    padding:
      10px 13px;

    border-bottom: 0;

    border-radius: 8px;

    white-space: nowrap;
  }


  .tp-marcelo-tab > span,
  .tp-marcelo-tab small,
  .tp-marcelo-tab i {
    display: none;
  }


  .tp-marcelo-tab strong {
    font-size: 10px;
  }


  .tp-marcelo__panels {
    min-height: 550px;
  }


  .tp-marcelo-panel {
    padding:
      27px 20px;
  }


  .tp-marcelo-panel h3 {
    font-size:
      clamp(28px,8vw,38px);
  }


  .tp-marcelo-panel__copy {
    grid-template-columns: 1fr;

    gap: 13px;
  }

}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-d20c8aa *//* ==========================================================
   DR. FREDERICO PORTO
========================================================== */

.tp-frederico {
  position: relative;

  padding:
    clamp(105px,11vw,165px)
    0;

  overflow: hidden;

  background:
    #f5f4ef;
}


/* ==========================================================
   TOPO
========================================================== */

.tp-frederico__hero {
  display: grid;

  grid-template-columns:
    minmax(390px,.76fr)
    minmax(0,1.24fr);

  gap:
    clamp(55px,7vw,95px);

  align-items: center;

  margin-bottom:
    clamp(70px,8vw,110px);
}


/* ==========================================================
   FOTO
========================================================== */

.tp-frederico__photo {
  position: relative;

  height: 610px;

  overflow: hidden;

  border-radius: 24px;

  background:
    var(--tp-blue-950);

  box-shadow:
    0 30px 80px
    rgba(4,37,51,.14);
}


.tp-frederico__photo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position:
    center top;

  transition:
    transform .6s ease;
}


.tp-frederico__photo:hover img {
  transform:
    scale(1.03);
}


.tp-frederico__photo-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 32%,
      rgba(3,27,41,.08) 50%,
      rgba(3,27,41,.96) 100%
    );
}


.tp-frederico__photo-info {
  position: absolute;

  z-index: 2;

  left: 34px;
  right: 34px;
  bottom: 34px;
}


.tp-frederico__photo-info > span {
  display: block;

  margin-bottom: 9px;

  color:
    var(--tp-gold-light);

  font-size: 9px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .1em;
}


.tp-frederico__photo-info h2 {
  margin: 0;

  color: white;

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(36px,4vw,50px);

  font-weight: 400;

  line-height: .98;

  letter-spacing: -.045em;
}


.tp-frederico__photo-info h2 strong {
  display: block;

  color:
    var(--tp-gold-light);

  font-weight: 700;
}


.tp-frederico__photo-info p {
  max-width: 350px;

  margin:
    17px 0 0;

  color:
    rgba(255,255,255,.62);

  font-size: 11px;

  line-height: 1.7;
}


/* ==========================================================
   INTRO
========================================================== */

.tp-frederico__intro h2 {
  max-width: 720px;

  margin: 0;

  color:
    var(--tp-blue-950);

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(38px,4.5vw,60px);

  font-weight: 400;

  line-height: 1.06;

  letter-spacing: -.045em;
}


.tp-frederico__intro h2 strong {
  display: block;

  color:
    var(--tp-blue-700);

  font-weight: 650;
}


.tp-frederico__intro > p {
  max-width: 650px;

  margin:
    24px 0 0;

  color:
    var(--tp-muted);

  font-size: 14px;

  line-height: 1.85;
}


/* ==========================================================
   QUOTE
========================================================== */

.tp-frederico__quote {
  max-width: 630px;

  display: grid;

  grid-template-columns:
    45px 1fr;

  gap: 16px;

  margin-top: 35px;

  padding:
    24px;

  border-radius: 15px;

  border:
    1px solid rgba(5,50,70,.10);

  background:
    rgba(255,255,255,.6);
}


.tp-frederico__quote i {
  color:
    var(--tp-gold-dark);

  font-size: 20px;
}


.tp-frederico__quote p {
  margin: 0;

  color:
    var(--tp-blue-850);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 13px;

  line-height: 1.7;

  font-weight: 500;
}


/* ==========================================================
   PROGRAMAS
========================================================== */

.tp-frederico__programs {
  display: grid;

  gap: 12px;
}


/* ==========================================================
   CARD
========================================================== */

.tp-frederico-card {
  position: relative;

  overflow: hidden;

  border:
    1px solid rgba(5,50,70,.10);

  border-radius: 15px;

  background:
    rgba(255,255,255,.35);

  transition:
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}


.tp-frederico-card:hover {
  border-color:
    rgba(216,171,50,.32);
}


.tp-frederico-card.is-open {
  background:
    rgba(255,255,255,.75);

  border-color:
    rgba(216,171,50,.42);

  box-shadow:
    0 18px 50px
    rgba(5,40,55,.05);
}


/* ==========================================================
   HEADER
========================================================== */

.tp-frederico-card__header {
  width: 100%;

  min-height: 115px;

  display: grid;

  grid-template-columns:
    45px
    minmax(0,1fr)
    55px
    42px;

  align-items: center;

  gap: 18px;

  padding:
    22px 24px;

  background:
    transparent !important;

  color:
    inherit !important;

  cursor: pointer;

  outline: none;

  -webkit-tap-highlight-color:
    transparent;

  transition:
    background .3s ease;
}


.tp-frederico-card__header:hover {
  background:
    rgba(5,50,70,.025) !important;
}


.tp-frederico-card__header:focus,
.tp-frederico-card__header:active {
  background:
    transparent !important;

  outline: none !important;

  box-shadow: none !important;
}


/* ==========================================================
   NÚMERO
========================================================== */

.tp-frederico-card__number {
  color:
    var(--tp-gold-dark);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 11px;

  font-weight: 700;
}


/* ==========================================================
   TITULO
========================================================== */

.tp-frederico-card__title > span {
  display: block;

  margin-bottom: 6px;

  color: #839097;

  font-size: 8px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .1em;
}


.tp-frederico-card__title h3 {
  margin: 0;

  color:
    var(--tp-blue-950);

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(20px,2.2vw,29px);

  font-weight: 500;

  line-height: 1.15;

  letter-spacing: -.025em;
}


.tp-frederico-card__title > strong {
  display: block;

  margin-top: 5px;

  color:
    var(--tp-blue-700);

  font-size: 11px;

  font-weight: 600;
}


/* ==========================================================
   ÍCONE
========================================================== */

.tp-frederico-card__icon {
  width: 50px;
  height: 50px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color:
    var(--tp-gold-dark);

  border:
    1px solid rgba(216,171,50,.28);

  background:
    rgba(216,171,50,.06);

  font-size: 16px;
}


/* ==========================================================
   +
========================================================== */

.tp-frederico-card__toggle {
  width: 40px;
  height: 40px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color:
    var(--tp-gold-dark);

  border:
    1px solid rgba(5,50,70,.14);

  transition:
    .3s ease;
}


.tp-frederico-card__header:hover
.tp-frederico-card__toggle {
  color:
    var(--tp-blue-950);

  border-color:
    rgba(216,171,50,.45);

  background:
    rgba(216,171,50,.1);
}


.tp-frederico-card.is-open
.tp-frederico-card__toggle {
  color:
    var(--tp-blue-950);

  border-color:
    var(--tp-gold);

  background:
    var(--tp-gold);
}


.tp-frederico-card__toggle i {
  transition:
    transform .35s ease;
}


.tp-frederico-card.is-open
.tp-frederico-card__toggle i {
  transform:
    rotate(45deg);
}


/* ==========================================================
   BODY
========================================================== */

.tp-frederico-card__body {
  display: grid;

  grid-template-rows:
    0fr;

  transition:
    grid-template-rows
    .42s
    cubic-bezier(.2,.8,.2,1);
}


.tp-frederico-card.is-open
.tp-frederico-card__body {
  grid-template-rows:
    1fr;
}


.tp-frederico-card__body-inner {
  min-height: 0;

  overflow: hidden;
}


.tp-frederico-card.is-open
.tp-frederico-card__body-inner {
  padding:
    0 24px 26px 87px;
}


/* ==========================================================
   TEXTO
========================================================== */

.tp-frederico-card__copy {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 28px;

  padding-top: 22px;

  border-top:
    1px solid rgba(5,50,70,.08);
}


.tp-frederico-card__copy p {
  margin: 0;

  color:
    var(--tp-muted);

  font-size: 12px;

  line-height: 1.8;
}


/* ==========================================================
   TAGS
========================================================== */

.tp-frederico-card__tags {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 20px;
}


.tp-frederico-card__tags span {
  padding:
    7px 11px;

  border-radius: 50px;

  color:
    var(--tp-blue-700);

  border:
    1px solid rgba(5,50,70,.12);

  background:
    rgba(255,255,255,.55);

  font-size: 8px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .04em;
}


/* ==========================================================
   RESPONSIVO
========================================================== */

@media (max-width: 950px) {

  .tp-frederico__hero {
    grid-template-columns:
      350px 1fr;

    gap: 45px;
  }


  .tp-frederico__photo {
    height: 560px;
  }

}


@media (max-width: 800px) {

  .tp-frederico__hero {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  .tp-frederico__photo {
    max-width: 650px;

    width: 100%;

    height: 630px;

    margin-inline: auto;
  }

}


@media (max-width: 600px) {

  .tp-frederico {
    padding:
      80px 0;
  }


  .tp-frederico__photo {
    height:
      min(135vw,520px);
  }


  .tp-frederico__intro h2 {
    font-size:
      clamp(31px,9vw,42px);
  }


  .tp-frederico-card__header {
    grid-template-columns:
      28px
      minmax(0,1fr)
      37px;

    gap: 10px;

    min-height: 105px;

    padding:
      18px 15px;
  }


  .tp-frederico-card__icon {
    display: none;
  }


  .tp-frederico-card__toggle {
    width: 35px;
    height: 35px;
  }


  .tp-frederico-card.is-open
  .tp-frederico-card__body-inner {
    padding:
      0 15px 20px;
  }


  .tp-frederico-card__copy {
    grid-template-columns: 1fr;

    gap: 13px;
  }

}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-d7b827a *//* ==========================================================
   NELSON SCAPIN
========================================================== */

.tp-nelson {
  position: relative;

  padding:
    clamp(105px, 11vw, 165px)
    0;

  overflow: hidden;

  color: white;

  background:
    linear-gradient(
      145deg,
      #031b27 0%,
      #06384d 52%,
      #021822 100%
    );

  isolation: isolate;
}


/* GRID DECORATIVO */
.tp-nelson::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -3;

  opacity: .25;

  background-image:
    linear-gradient(
      rgba(255,255,255,.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.025) 1px,
      transparent 1px
    );

  background-size: 90px 90px;

  pointer-events: none;
}


/* LUZES */
.tp-nelson__glow {
  position: absolute;

  z-index: -2;

  border-radius: 50%;

  pointer-events: none;
}

.tp-nelson__glow--01 {
  width: 600px;
  height: 600px;

  top: -320px;
  left: -260px;

  background:
    rgba(216,171,50,.08);

  filter: blur(80px);
}

.tp-nelson__glow--02 {
  width: 550px;
  height: 550px;

  right: -300px;
  bottom: -280px;

  background:
    rgba(18,98,127,.16);

  filter: blur(90px);
}


/* ==========================================================
   GRID PRINCIPAL
========================================================== */

.tp-nelson__grid {
  display: grid;

  grid-template-columns:
    minmax(0,1.18fr)
    minmax(350px,.7fr);

  gap:
    clamp(55px,7vw,95px);

  align-items: start;
}


/* ==========================================================
   HEADING
========================================================== */

.tp-nelson__heading {
  margin-bottom: 42px;
}

.tp-nelson__heading h2 {
  max-width: 750px;

  margin: 0;

  color: white;

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(38px,4.5vw,60px);

  line-height: 1.06;

  font-weight: 400;

  letter-spacing: -.045em;
}

.tp-nelson__heading h2 strong {
  display: block;

  color:
    var(--tp-gold-light);

  font-weight: 650;
}

.tp-nelson__heading > p {
  max-width: 680px;

  margin:
    24px 0 0;

  color:
    rgba(255,255,255,.58);

  font-size: 14px;

  line-height: 1.85;

  text-align: justify;
}


/* ==========================================================
   EXPERIÊNCIA
========================================================== */

.tp-nelson__experience {
  display: grid;

  grid-template-columns:
    235px minmax(0,1fr);

  overflow: hidden;

  border:
    1px solid rgba(255,255,255,.1);

  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.045),
      rgba(255,255,255,.018)
    );

  box-shadow:
    0 35px 90px rgba(0,0,0,.17);
}


/* ==========================================================
   TABS
========================================================== */

.tp-nelson__tabs {
  padding: 13px;

  border-right:
    1px solid rgba(255,255,255,.08);

  background:
    rgba(2,24,34,.44);
}


.tp-nelson-tab {
  width: 100%;

  min-height: 92px;

  display: grid;

  grid-template-columns:
    24px 1fr auto;

  align-items: center;

  gap: 10px;

  padding:
    16px 12px;

  border: 0;

  border-bottom:
    1px solid rgba(255,255,255,.07);

  border-radius: 0;

  background: transparent;

  color:
    rgba(255,255,255,.54);

  font-family: inherit;

  text-align: left;

  cursor: pointer;

  transition:
    color .3s ease,
    background .3s ease,
    transform .3s ease;
}


.tp-nelson-tab:last-child {
  border-bottom: 0;
}


.tp-nelson-tab:hover {
  color: white;

  background:
    rgba(255,255,255,.035);
}


.tp-nelson-tab.is-active {
  color: white;

  border-radius: 11px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.095),
      rgba(255,255,255,.045)
    );
}


.tp-nelson-tab > span {
  color:
    rgba(255,255,255,.23);

  font-size: 8px;

  font-weight: 800;
}


.tp-nelson-tab.is-active > span {
  color:
    var(--tp-gold-light);
}


.tp-nelson-tab small {
  display: block;

  margin-bottom: 5px;

  color:
    rgba(255,255,255,.33);

  font-size: 7px;

  text-transform: uppercase;

  letter-spacing: .08em;
}


.tp-nelson-tab strong {
  display: block;

  color: inherit;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 11px;

  line-height: 1.35;
}


.tp-nelson-tab i {
  color:
    var(--tp-gold);

  font-size: 8px;

  opacity: 0;

  transform:
    translateX(-6px);

  transition:
    .3s ease;
}


.tp-nelson-tab.is-active i {
  opacity: 1;

  transform:
    translateX(0);
}


/* ==========================================================
   PAINÉIS
========================================================== */

.tp-nelson__panels {
  position: relative;

  min-height: 565px;
}


.tp-nelson-panel {
  position: absolute;

  inset: 0;

  padding:
    clamp(30px,4vw,50px);

  opacity: 0;

  visibility: hidden;

  transform:
    translateY(12px);

  pointer-events: none;

  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s ease;
}


.tp-nelson-panel.is-active {
  position: relative;

  opacity: 1;

  visibility: visible;

  transform:
    translateY(0);

  pointer-events: auto;
}


/* ==========================================================
   TOPO PAINEL
========================================================== */

.tp-nelson-panel__top {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 30px;
}


.tp-nelson-panel__icon {
  width: 49px;
  height: 49px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color:
    var(--tp-gold-light);

  border:
    1px solid rgba(216,171,50,.35);

  background:
    rgba(216,171,50,.035);
}


.tp-nelson-panel__top > span {
  color:
    var(--tp-gold-light);

  font-size: 9px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .1em;
}


/* ==========================================================
   TÍTULO
========================================================== */

.tp-nelson-panel h3 {
  max-width: 570px;

  margin: 0;

  color: white;

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(30px,3.1vw,44px);

  font-weight: 400;

  line-height: 1.08;

  letter-spacing: -.04em;
}


.tp-nelson-panel h3 strong {
  display: block;

  color:
    var(--tp-gold-light);

  font-weight: 650;
}


.tp-nelson-panel__lead {
  max-width: 580px;

  margin:
    24px 0 0;

  color:
    rgba(255,255,255,.82);

  font-size: 14px;

  line-height: 1.75;
}


/* ==========================================================
   COPY
========================================================== */

.tp-nelson-panel__copy {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 22px;

  margin-top: 26px;

  padding-top: 24px;

  border-top:
    1px solid rgba(255,255,255,.08);
}


.tp-nelson-panel__copy p {
  margin: 0;

  color:
    rgba(255,255,255,.5);

  font-size: 11px;

  line-height: 1.8;

  text-align: justify;
}


/* ==========================================================
   TAGS
========================================================== */

.tp-nelson-panel__tags {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 28px;
}


.tp-nelson-panel__tags span {
  padding:
    7px 11px;

  border-radius: 50px;

  color:
    rgba(255,255,255,.7);

  border:
    1px solid rgba(255,255,255,.1);

  background:
    rgba(255,255,255,.025);

  font-size: 8px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: .04em;
}


/* ==========================================================
   PERFIL
========================================================== */

.tp-nelson__profile {
  position: sticky;

  top: 105px;
}


.tp-nelson__photo {
  position: relative;

  height: 625px;

  overflow: hidden;

  border-radius: 24px;

  border:
    1px solid rgba(255,255,255,.1);

  background:
    #021822;

  box-shadow:
    0 38px 100px rgba(0,0,0,.28);
}


.tp-nelson__photo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position:
    center top;

  transition:
    transform .7s cubic-bezier(.2,.7,.2,1);
}


.tp-nelson__photo:hover img {
  transform:
    scale(1.035);
}


.tp-nelson__photo-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(2,24,34,0) 27%,
      rgba(2,24,34,.08) 45%,
      rgba(2,24,34,.98) 100%
    );
}


/* ==========================================================
   BADGE
========================================================== */

.tp-nelson__badge {
  position: absolute;

  z-index: 3;

  top: 25px;
  right: 25px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    10px 13px;

  border:
    1px solid rgba(255,255,255,.16);

  border-radius: 12px;

  background:
    rgba(2,24,34,.58);

  backdrop-filter:
    blur(16px);

  box-shadow:
    0 15px 35px rgba(0,0,0,.16);
}


.tp-nelson__badge i {
  color:
    var(--tp-gold-light);

  font-size: 13px;
}


.tp-nelson__badge strong,
.tp-nelson__badge span {
  display: block;
}


.tp-nelson__badge strong {
  color: white;

  font-size: 10px;
}


.tp-nelson__badge span {
  margin-top: 2px;

  color:
    rgba(255,255,255,.48);

  font-size: 7px;

  text-transform: uppercase;

  letter-spacing: .06em;
}


/* ==========================================================
   INFO FOTO
========================================================== */

.tp-nelson__photo-info {
  position: absolute;

  z-index: 2;

  left: 32px;
  right: 32px;
  bottom: 32px;
}


.tp-nelson__photo-info > span {
  display: block;

  margin-bottom: 9px;

  color:
    var(--tp-gold-light);

  font-size: 9px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .1em;
}


.tp-nelson__photo-info h2 {
  margin: 0;

  color: white;

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(36px,4vw,51px);

  font-weight: 400;

  line-height: .98;

  letter-spacing: -.045em;
}


.tp-nelson__photo-info h2 strong {
  display: block;

  color:
    var(--tp-gold-light);

  font-weight: 700;
}


.tp-nelson__photo-info p {
  max-width: 360px;

  margin:
    17px 0 0;

  color:
    rgba(255,255,255,.61);

  font-size: 11px;

  line-height: 1.7;
}


/* ==========================================================
   EMPRESAS
========================================================== */

.tp-nelson__companies {
  margin-top: 18px;

  padding: 20px;

  border:
    1px solid rgba(255,255,255,.09);

  border-radius: 14px;

  background:
    rgba(255,255,255,.035);
}


.tp-nelson__companies > span {
  display: block;

  margin-bottom: 13px;

  color:
    rgba(255,255,255,.37);

  font-size: 7px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .1em;
}


.tp-nelson__companies div {
  display: flex;

  flex-wrap: wrap;

  gap:
    7px 14px;
}


.tp-nelson__companies strong {
  color:
    rgba(255,255,255,.78);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 9px;

  font-weight: 600;
}


/* ==========================================================
   QUOTE
========================================================== */

.tp-nelson__quote {
  display: grid;

  grid-template-columns:
    44px 1fr;

  gap: 14px;

  margin-top: 12px;

  padding: 20px;

  border:
    1px solid rgba(216,171,50,.17);

  border-radius: 14px;

  background:
    rgba(216,171,50,.035);
}


.tp-nelson__quote-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color:
    var(--tp-gold-light);

  border:
    1px solid rgba(216,171,50,.28);
}


.tp-nelson__quote p {
  margin: 0;

  color:
    rgba(255,255,255,.76);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 11px;

  line-height: 1.65;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

  .tp-nelson__grid {
    grid-template-columns:
      minmax(0,1fr)
      350px;

    gap: 42px;
  }


  .tp-nelson__experience {
    grid-template-columns:
      200px minmax(0,1fr);
  }


  .tp-nelson__photo {
    height: 570px;
  }

}


/* ==========================================================
   TABLET VERTICAL
========================================================== */

@media (max-width: 850px) {

  .tp-nelson__grid {
    grid-template-columns: 1fr;
  }


  .tp-nelson__profile {
    position: relative;

    top: auto;

    order: -1;

    width: 100%;

    max-width: 650px;

    margin-inline: auto;
  }


  .tp-nelson__photo {
    height: 640px;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

  .tp-nelson {
    padding:
      80px 0;
  }


  .tp-nelson__heading h2 {
    font-size:
      clamp(31px,9vw,42px);
  }


  .tp-nelson__heading > p {
    font-size: 13px;
  }


  .tp-nelson__photo {
    height:
      min(135vw,520px);

    border-radius: 19px;
  }


  .tp-nelson__photo-info {
    left: 23px;
    right: 23px;
    bottom: 24px;
  }


  .tp-nelson__badge {
    top: 18px;
    right: 18px;
  }


  /* TABS HORIZONTAIS */
  .tp-nelson__experience {
    display: block;
  }


  .tp-nelson__tabs {
    display: flex;

    overflow-x: auto;

    gap: 7px;

    padding: 9px;

    border-right: 0;

    border-bottom:
      1px solid rgba(255,255,255,.08);

    scrollbar-width: none;
  }


  .tp-nelson__tabs::-webkit-scrollbar {
    display: none;
  }


  .tp-nelson-tab {
    flex: 0 0 auto;

    width: auto;

    min-height: 48px;

    display: flex;

    padding:
      10px 13px;

    border: 0;

    border-radius: 8px;

    white-space: nowrap;
  }


  .tp-nelson-tab > span,
  .tp-nelson-tab small,
  .tp-nelson-tab i {
    display: none;
  }


  .tp-nelson-tab strong {
    font-size: 10px;
  }


  .tp-nelson__panels {
    min-height: 620px;
  }


  .tp-nelson-panel {
    padding:
      27px 20px;
  }


  .tp-nelson-panel h3 {
    font-size:
      clamp(28px,8vw,38px);
  }


  .tp-nelson-panel__copy {
    grid-template-columns: 1fr;

    gap: 13px;
  }


  .tp-nelson-panel__copy p {
    text-align: left;
  }


  .tp-nelson__companies div {
    gap:
      9px 13px;
  }

}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-3046873 *//* ==========================================================
   ECOSSISTEMA FINAL
========================================================== */

.tp-ecosystem-final {
  position: relative;

  padding:
    clamp(105px,11vw,165px)
    0;

  background: #f5f4ef;

  overflow: hidden;
}


.tp-ecosystem-final__heading {
  margin-bottom: 60px;
}


.tp-ecosystem-final__heading-grid {
  display: grid;

  grid-template-columns:
    1fr .5fr;

  align-items: end;

  gap: 80px;
}


.tp-ecosystem-final__heading h2 {
  max-width: 760px;

  margin: 0;

  color: var(--tp-blue-950);

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(38px,4.6vw,62px);

  font-weight: 400;

  line-height: 1.06;

  letter-spacing: -.045em;
}


.tp-ecosystem-final__heading h2 strong {
  display: block;

  color: var(--tp-blue-700);

  font-weight: 650;
}


.tp-ecosystem-final__heading p {
  margin: 0;

  color: var(--tp-muted);

  font-size: 14px;

  line-height: 1.85;
}


/* GRID */

.tp-ecosystem-final__grid {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  border-top:
    1px solid rgba(5,50,70,.1);

  border-left:
    1px solid rgba(5,50,70,.1);
}


.tp-ecosystem-final__item {
  position: relative;

  min-height: 250px;

  padding: 30px;

  border-right:
    1px solid rgba(5,50,70,.1);

  border-bottom:
    1px solid rgba(5,50,70,.1);

  transition:
    background .35s ease,
    transform .35s ease,
    box-shadow .35s ease;
}


.tp-ecosystem-final__item:hover {
  z-index: 3;

  transform:
    translateY(-5px);

  background: white;

  box-shadow:
    0 25px 60px
    rgba(5,40,55,.08);
}


.tp-ecosystem-final__item > span {
  position: absolute;

  top: 23px;
  right: 24px;

  color:
    rgba(5,50,70,.12);

  font-size: 9px;

  font-weight: 800;
}


.tp-ecosystem-final__icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  margin-bottom: 38px;

  border-radius: 50%;

  color: var(--tp-gold-dark);

  border:
    1px solid rgba(216,171,50,.28);
}


.tp-ecosystem-final__item h3 {
  margin: 0;

  color: var(--tp-blue-950);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 20px;
}


.tp-ecosystem-final__item p {
  max-width: 280px;

  margin:
    13px 0 0;

  color: var(--tp-muted);

  font-size: 11px;

  line-height: 1.7;
}


/* ==========================================================
   CTA FINAL
========================================================== */

.tp-final {
  position: relative;

  padding:
    clamp(110px,12vw,175px)
    0;

  overflow: hidden;

  color: white;

  background:
    linear-gradient(
      140deg,
      #021822,
      #06394f
    );
}


.tp-final__glow {
  position: absolute;

  width: 600px;
  height: 600px;

  right: -280px;
  top: -280px;

  border-radius: 50%;

  background:
    rgba(216,171,50,.08);

  filter: blur(80px);
}


.tp-final__box {
  position: relative;

  display: grid;

  grid-template-columns:
    1.2fr .6fr;

  gap:
    clamp(60px,8vw,120px);

  align-items: center;

  padding:
    clamp(40px,6vw,75px);

  border:
    1px solid rgba(255,255,255,.1);

  border-radius: 25px;

  background:
    rgba(255,255,255,.035);

  overflow: hidden;
}


.tp-final__content {
  position: relative;
  z-index: 3;
}


.tp-final__content h2 {
  max-width: 760px;

  margin: 0;

  color: white;

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(40px,4.9vw,66px);

  font-weight: 400;

  line-height: 1.04;

  letter-spacing: -.05em;
}


.tp-final__content h2 strong {
  display: block;

  color:
    var(--tp-gold-light);

  font-weight: 650;
}


.tp-final__content > p {
  max-width: 650px;

  margin:
    26px 0 0;

  color:
    rgba(255,255,255,.6);

  font-size: 14px;

  line-height: 1.85;
}


.tp-final__actions {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 22px;

  margin-top: 35px;
}


.tp-final__back {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color:
    rgba(255,255,255,.7) !important;

  font-size: 10px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .04em;
}


.tp-final__back:hover {
  color:
    var(--tp-gold-light) !important;
}


/* VISUAL */

.tp-final__visual {
  position: relative;

  min-height: 390px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.tp-final__core {
  position: relative;

  z-index: 4;

  width: 175px;
  height: 175px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid rgba(216,171,50,.5);

  background:
    radial-gradient(
      circle,
      rgba(216,171,50,.12),
      rgba(255,255,255,.02)
    );

  box-shadow:
    0 0 70px
    rgba(216,171,50,.08);
}


.tp-final__core img {
  width: 82px;
  height: auto;
}


.tp-final__orbit {
  position: absolute;

  border-radius: 50%;

  border:
    1px solid rgba(255,255,255,.08);
}


.tp-final__orbit--01 {
  width: 280px;
  height: 280px;
}


.tp-final__orbit--02 {
  width: 380px;
  height: 380px;

  border-color:
    rgba(216,171,50,.13);
}


/* ==========================================================
   CONTATO
========================================================== */

.tp-contact {
  padding:
    clamp(105px,11vw,165px)
    0;

  background: #f5f4ef;
}


.tp-contact__grid {
  display: grid;

  grid-template-columns:
    .7fr 1.1fr;

  gap:
    clamp(60px,8vw,110px);

  align-items: start;
}


.tp-contact__intro {
  position: sticky;

  top: 110px;
}


.tp-contact__intro h2 {
  margin: 0;

  color: var(--tp-blue-950);

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(38px,4.4vw,58px);

  font-weight: 400;

  line-height: 1.07;

  letter-spacing: -.045em;
}


.tp-contact__intro h2 strong {
  display: block;

  color: var(--tp-blue-700);

  font-weight: 650;
}


.tp-contact__intro > p {
  margin:
    24px 0 0;

  color: var(--tp-muted);

  font-size: 14px;

  line-height: 1.85;
}


/* FEATURES */

.tp-contact__features {
  margin-top: 40px;

  border-top:
    1px solid rgba(5,50,70,.1);
}


.tp-contact__features article {
  display: grid;

  grid-template-columns:
    32px 1fr;

  gap: 15px;

  padding:
    20px 0;

  border-bottom:
    1px solid rgba(5,50,70,.1);
}


.tp-contact__features article > span {
  color:
    var(--tp-gold-dark);

  font-size: 9px;

  font-weight: 800;
}


.tp-contact__features strong {
  display: block;

  color:
    var(--tp-blue-950);

  font-size: 11px;
}


.tp-contact__features p {
  margin:
    5px 0 0;

  color: #798287;

  font-size: 10px;

  line-height: 1.6;
}


/* ==========================================================
   FORM
========================================================== */

.tp-contact__form-wrap {
  padding: 7px;

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(5,53,77,.12),
      rgba(216,171,50,.16)
    );
}


.tp-contact-form {
  padding:
    clamp(28px,4vw,48px);

  border-radius: 19px;

  background: white;

  box-shadow:
    0 30px 80px
    rgba(5,40,55,.07);
}


.tp-contact-form__heading {
  margin-bottom: 34px;
}


.tp-contact-form__heading > span {
  display: block;

  margin-bottom: 9px;

  color:
    var(--tp-gold-dark);

  font-size: 9px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .1em;
}


.tp-contact-form__heading h3 {
  margin: 0;

  color:
    var(--tp-blue-950);

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(23px,2.5vw,34px);

  font-weight: 600;

  line-height: 1.2;

  letter-spacing: -.03em;
}


.tp-contact-form__grid {
  display: grid;

  grid-template-columns:
    repeat(2,minmax(0,1fr));

  gap: 20px;
}


.tp-field--full {
  grid-column:
    1 / -1;
}


.tp-field label {
  display: block;

  margin-bottom: 8px;

  color:
    var(--tp-blue-950);

  font-size: 10px;

  font-weight: 700;
}


.tp-field input,
.tp-field select,
.tp-field textarea {
  width: 100%;

  border:
    1px solid rgba(5,50,70,.12);

  border-radius: 9px;

  outline: none;

  background:
    #f7f7f3;

  color:
    var(--tp-blue-950);

  font-family: inherit;

  font-size: 12px;

  transition:
    border-color .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}


.tp-field input,
.tp-field select {
  min-height: 52px;

  padding:
    0 15px;
}


.tp-field textarea {
  min-height: 145px;

  padding: 15px;

  resize: vertical;
}


.tp-field input:focus,
.tp-field select:focus,
.tp-field textarea:focus {
  border-color:
    rgba(216,171,50,.7);

  background: white;

  box-shadow:
    0 0 0 3px
    rgba(216,171,50,.08);
}


/* ==========================================================
   BOTÃO DO FORM
   NÃO HERDAR ROSA DO ELEMENTOR
========================================================== */

.tp-contact-form__submit,
.tp-contact-form__submit:hover,
.tp-contact-form__submit:focus,
.tp-contact-form__submit:active {

  width: 100%;

  min-height: 55px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 11px;

  margin-top: 25px;

  padding:
    0 25px;

  border: 0 !important;

  border-radius: 8px !important;

  color:
    var(--tp-blue-950) !important;

  background:
    linear-gradient(
      135deg,
      var(--tp-gold-light),
      var(--tp-gold)
    ) !important;

  box-shadow:
    0 15px 35px
    rgba(216,171,50,.17) !important;

  font-family: inherit;

  font-size: 10px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .04em;

  cursor: pointer;

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}


.tp-contact-form__submit:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 20px 45px
    rgba(216,171,50,.26) !important;
}


.tp-contact-form__status {
  display: none;

  margin:
    14px 0 0;

  text-align: center;

  color:
    var(--tp-blue-700);

  font-size: 10px;
}


/* ==========================================================
   FOOTER
========================================================== */

.tp-footer {
  padding:
    70px 0 25px;

  background:
    #02151f;

  color: white;
}


.tp-footer__top {
  display: grid;

  grid-template-columns:
    1.4fr repeat(3,.75fr);

  gap: 50px;

  padding-bottom: 55px;
}


.tp-footer__brand img {
  width: 150px;
  height: auto;

  display: block;

  margin-bottom: 23px;
}


.tp-footer__brand p {
  max-width: 300px;

  margin: 0;

  color:
    rgba(255,255,255,.45);

  font-size: 11px;

  line-height: 1.75;
}


.tp-footer__column {
  display: flex;

  flex-direction: column;

  gap: 10px;
}


.tp-footer__column h3 {
  margin:
    0 0 10px;

  color:
    var(--tp-gold-light);

  font-size: 9px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .09em;
}


.tp-footer__column a,
.tp-footer__column a:visited {
  color:
    rgba(255,255,255,.5) !important;

  text-decoration: none;

  font-size: 10px;

  transition:
    color .3s ease;
}


.tp-footer__column a:hover {
  color:
    var(--tp-gold-light) !important;
}


.tp-footer__bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 30px;

  padding-top: 23px;

  border-top:
    1px solid rgba(255,255,255,.08);
}


.tp-footer__bottom p {
  margin: 0;

  color:
    rgba(255,255,255,.3);

  font-size: 9px;
}


.tp-footer__bottom strong {
  color:
    rgba(255,255,255,.62);
}


/* ==========================================================
   RESPONSIVO
========================================================== */

@media (max-width: 900px) {

  .tp-ecosystem-final__heading-grid,
  .tp-final__box,
  .tp-contact__grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  .tp-ecosystem-final__grid {
    grid-template-columns:
      repeat(2,1fr);
  }


  .tp-final__visual {
    min-height: 330px;
  }


  .tp-contact__intro {
    position: relative;

    top: auto;

    max-width: 700px;
  }


  .tp-footer__top {
    grid-template-columns:
      1.3fr 1fr 1fr;
  }


  .tp-footer__column:last-child {
    grid-column:
      2 / -1;
  }

}


@media (max-width: 600px) {

  .tp-ecosystem-final,
  .tp-final,
  .tp-contact {
    padding:
      80px 0;
  }


  .tp-ecosystem-final__heading h2,
  .tp-final__content h2,
  .tp-contact__intro h2 {
    font-size:
      clamp(31px,9vw,43px);
  }


  .tp-ecosystem-final__grid {
    grid-template-columns: 1fr;
  }


  .tp-ecosystem-final__item {
    min-height: auto;
  }


  .tp-final__box {
    padding:
      30px 20px;
  }


  .tp-final__actions {
    flex-direction: column;

    align-items: stretch;
  }


  .tp-final__actions .tp-btn {
    width: 100%;
  }


  .tp-final__back {
    justify-content: center;

    min-height: 45px;
  }


  .tp-final__visual {
    min-height: 280px;
  }


  .tp-final__core {
    width: 140px;
    height: 140px;
  }


  .tp-final__core img {
    width: 67px;
  }


  .tp-final__orbit--01 {
    width: 210px;
    height: 210px;
  }


  .tp-final__orbit--02 {
    width: 270px;
    height: 270px;
  }


  .tp-contact-form__grid {
    grid-template-columns: 1fr;
  }


  .tp-field--full {
    grid-column: auto;
  }


  .tp-contact-form {
    padding:
      28px 20px;
  }


  .tp-footer__top {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  .tp-footer__column:last-child {
    grid-column: auto;
  }


  .tp-footer__bottom {
    flex-direction: column;

    align-items: flex-start;
  }

}/* End custom CSS */