@font-face {
  font-family: "Vivo Type";
  src: url("../assets/fonts/VivoTypeLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vivo Type";
  src: url("../assets/fonts/VivoTypeRegular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vivo Type";
  src: url("../assets/fonts/VivoTypeBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Vivo Type", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #380054;
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin: 0;
}

strong {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1099px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.container--wide {
  max-width: 1320px;
}

.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Vivo Type", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
  background: #380054;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 100px;
}
.btn--primary:hover {
  background: #4a0070;
  transform: translateY(-1px);
}
.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Vivo Type", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
  background: transparent;
  color: #380054;
  padding: 12px 24px;
  border-radius: 100px;
  border: 2px solid #380054;
}
.btn--outline:hover {
  background: #380054;
  color: #ffffff;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 24px;
}
.section-title strong,
.section-title .highlight {
  color: #380054;
}

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

.img-placeholder {
  background: linear-gradient(135deg, #efe5f4 0%, #660099 50%, #380054 100%);
  background-size: cover;
  background-position: center;
}

.fade-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header__inner {
  width: 100%;
  max-width: 1099px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.header__inner--wide {
  max-width: 1320px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo {
  max-width: 130px;
  z-index: 101;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 1024px) {
  .header__nav {
    position: fixed;
    inset: 0;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: #380054;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }
}
.header__link {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 400;
  transition: opacity 0.5s ease;
}
.header__link.active {
  font-weight: 700;
}
.header__link:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .header__link {
    font-size: 1.25rem;
    font-weight: 500;
  }
}
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 101;
  padding: 4px;
}
.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.header__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1024px) {
  .header__toggle {
    display: flex;
  }
}

.closing {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .closing {
    min-height: 280px;
  }
}
.closing__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  min-height: 200px;
}
.closing__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 64px 24px;
  text-align: center;
  background: #640098;
}
@media (max-width: 768px) {
  .closing__content {
    padding: 48px 24px;
  }
}
.closing__text {
  font-size: clamp(1.15rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.05;
  max-width: 800px;
  margin: 0 auto;
}
.closing__text strong {
  font-weight: 700;
}

.footer {
  background: #4a0070;
  padding: 20px 0;
  text-align: center;
}
.footer__text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}
.hero h1 {
  text-align: center;
  font-size: 0.1rem;
  color: transparent;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.15) 0%, rgba(26, 26, 26, 0.05) 40%, rgba(56, 0, 84, 0.85) 85%, #380054 100%);
}
.hero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.25);
  transition: transform 0.5s ease, background 0.5s ease;
  z-index: 2;
}
.hero__play svg {
  width: 28px;
  height: 30px;
  margin-left: 4px;
  fill: #ffffff;
}
.hero__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}
@media (max-width: 768px) {
  .hero__play {
    width: 64px;
    height: 64px;
  }
  .hero__play svg {
    width: 22px;
    height: 22px;
  }
}

.intro {
  background: #380054;
  color: #ffffff;
  padding: 64px 0 80px;
}
@media (max-width: 768px) {
  .intro {
    padding: 48px 0 56px;
  }
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1024px) {
  .intro__grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.intro__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
}
.intro__logo svg {
  width: 36px;
  height: 36px;
}
.intro__logo span {
  font-weight: 300;
}
.intro__heading {
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 20px;
}
.intro__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
.intro__aside {
  padding-top: 12px;
}
@media (max-width: 768px) {
  .intro__aside {
    padding-top: 0;
  }
}
.intro__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}
.intro__quote {
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: #BD4AFF;
  line-height: 1.35;
}

.why-skills {
  padding: 80px 0 64px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .why-skills {
    padding: 56px 0 48px;
  }
}
.why-skills .section-title {
  margin-bottom: 52px;
  font-size: 2.5rem;
}
.why-skills .section-title .highlight {
  font-weight: 700;
  color: #BD4AFF;
}
.why-skills__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .why-skills__columns {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
}
.why-skills__columns .why-skills__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-skills__columns p {
  font-size: 1rem;
  line-height: 1.6;
}
.why-skills__columns p.big {
  font-size: 1.8rem;
  line-height: 1.4;
}
.why-skills__columns p.big strong {
  font-weight: 700;
  color: #BD4AFF;
}
.why-skills__carousel-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #660099;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
}
.why-skills__swiper {
  overflow: hidden;
  padding-bottom: 8px;
}
.why-skills__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/3;
  height: auto;
}
.why-skills__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-skills__card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(56, 0, 84, 0.95) 0%, rgba(56, 0, 84, 0) 100%);
  color: #ffffff;
  padding: 28px 20px 24px;
  height: 100%;
  display: flex;
  justify-content: end;
  flex-direction: column;
  gap: 12px;
}
.why-skills__card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}
.why-skills__card-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ffffff;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.why-skills__card:hover .why-skills__card-overlay {
  background: rgba(74, 0, 112, 0.8);
  transition: background 0.5s ease;
}
.why-skills__card:hover .why-skills__card-overlay .why-skills__card-text {
  max-height: 300px;
  opacity: 1;
}
.why-skills__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.why-skills__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #660099;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s ease, transform 0.5s ease;
}
.why-skills__arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.why-skills__arrow:hover {
  background: #4a0070;
  transform: scale(1.05);
}
.why-skills__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.prioritize {
  padding: 64px 0 80px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .prioritize {
    padding: 48px 0 56px;
  }
}
.prioritize__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
@media (max-width: 1024px) {
  .prioritize__grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .prioritize__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.prioritize__content .section-title {
  text-align: left;
  margin-bottom: 24px;
  font-size: clamp(1.35rem, 2.5vw, 2.5rem);
  color: #660099;
}
.prioritize__content .section-title .highlight {
  color: #BD4AFF;
}
.prioritize__content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.prioritize__content p strong {
  font-weight: 700;
  color: #BD4AFF;
}
.prioritize__content p:last-child {
  margin-bottom: 0;
}
.prioritize__box {
  background: #efe5f4;
  border-radius: 24px;
  padding: 36px 32px;
}
@media (max-width: 768px) {
  .prioritize__box {
    padding: 28px 24px;
  }
}
.prioritize__box-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #380054;
  margin-bottom: 24px;
  line-height: 1.4;
}
.prioritize__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.prioritize__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5;
  color: #380054;
  font-weight: 500;
}
.prioritize__item strong {
  font-weight: 700;
  color: #BD4AFF;
}
.prioritize__item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.prioritize__item-icon svg {
  width: 28px;
  height: 20px;
  fill: #00b050;
}

.strategy {
  padding: 72px 0 80px;
  background: #F4E1FF;
  overflow: hidden;
}
@media (max-width: 768px) {
  .strategy {
    padding: 48px 0 56px;
  }
}
.strategy .section-title {
  margin-bottom: 40px;
}
.strategy__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.strategy__marquee-track {
  display: flex;
  width: max-content;
  animation: strategy-marquee 35s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .strategy__marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 12px;
    padding: 0 24px;
  }
  .strategy__marquee-track .strategy__tags[aria-hidden=true] {
    display: none;
  }
}
.strategy__tags {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding-right: 16px;
}
@media (prefers-reduced-motion: reduce) {
  .strategy__tags {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }
}
.strategy__tag {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 18px 28px;
  background: hsla(0, 45%, 98%, 0.61);
  color: #380054;
  border-radius: 100px;
  font-size: 0.9375rem;
  line-height: 1.3;
  box-shadow: inset 2px 2px 0px rgba(255, 255, 255, 0.72);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .strategy__tag {
    padding: 14px 22px;
    font-size: 0.875rem;
  }
}

@keyframes strategy-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.roles {
  padding: 80px 0 64px;
  background: #ffffff;
  background-image: url(../assets/images/roles-bg.png);
  background-size: 100% 400px;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .roles {
    padding: 56px 0 48px;
  }
}
.roles .section-title {
  margin-bottom: 12px;
  font-size: 2.6rem;
  color: #660099;
}
.roles__subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.roles__grid {
  display: flex;
  gap: 16px;
  align-items: stretch;
  min-height: 480px;
}
@media (max-width: 1024px) {
  .roles__grid--desktop {
    display: none;
  }
}
.roles__card {
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
  cursor: pointer;
  transition: flex 0.5s ease, box-shadow 0.5s ease;
}
.roles__card:hover:not(.is-active) {
  box-shadow: 0 8px 24px rgba(56, 0, 84, 0.18);
}
.roles__card.is-active {
  flex: 2.2;
  cursor: default;
}
.roles__card.is-active .roles__card-overlay {
  padding: 32px 28px;
}
@media (max-width: 768px) {
  .roles__card.is-active .roles__card-overlay {
    padding: 24px 20px;
  }
}
.roles__card.is-active .roles__card-title {
  font-size: 2.48rem;
}
.roles__card.is-active .roles__card-desc {
  max-height: 300px;
  margin-top: 10px;
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  animation: roles-desc-in 0.4s ease;
  opacity: 1;
  visibility: visible;
}
.roles__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.roles__card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(56, 0, 84, 0.95) 0%, rgba(56, 0, 84, 0) 100%);
  color: #ffffff;
  padding: 32px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.roles__card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}
.roles__card-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.roles__swiper {
  display: none;
}
@media (max-width: 1024px) {
  .roles__swiper {
    display: block;
    overflow: hidden;
  }
}
.roles__swiper .roles__card .roles__card-desc {
  max-height: none;
  visibility: visible;
  opacity: 1;
  margin-top: 10px;
}
.roles__nav {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .roles__nav {
    display: flex;
  }
}
.roles__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #380054;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s ease;
}
.roles__arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.roles__arrow:hover {
  background: #4a0070;
}
.roles__arrow.swiper-button-disabled {
  opacity: 0.35;
}

@keyframes roles-desc-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.glossary {
  padding: 0 0 48px;
  background: #ffffff;
  width: 100%;
  max-width: 1099px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.glossary--wide {
  max-width: 1320px;
}
.glossary.is-open .glossary__banner {
  display: none;
}
.glossary.is-open .glossary__panel {
  display: block;
  animation: glossary-panel-in 0.35s ease;
}
.glossary__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #efe5f4;
  border-radius: 24px;
  padding: 36px 40px;
}
@media (max-width: 768px) {
  .glossary__banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
}
.glossary__info h3 {
  font-size: 3rem;
  margin-bottom: 8px;
  color: #660099;
}
.glossary__info p {
  font-size: 1rem;
  color: #4f4f4f;
  line-height: 1.6;
  max-width: 520px;
}
@media (max-width: 768px) {
  .glossary__info p {
    max-width: none;
  }
}
.glossary__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Vivo Type", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
  background: #380054;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 100px;
}
.glossary__btn:hover {
  background: #4a0070;
  transform: translateY(-1px);
}
.glossary__btn {
  white-space: nowrap;
  flex-shrink: 0;
  background-color: #660099;
  gap: 12px;
}
.glossary__btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
@media (max-width: 768px) {
  .glossary__btn {
    width: 100%;
  }
}
.glossary__panel {
  display: none;
  background: #F4E1FF;
  border-radius: 28px;
  padding: 40px 44px 44px;
}
@media (max-width: 768px) {
  .glossary__panel {
    padding: 28px 24px 32px;
    border-radius: 20px;
  }
}
.glossary__panel[hidden] {
  display: none !important;
}
.glossary__panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.glossary__panel-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #660099;
  line-height: 1.2;
}
.glossary__panel-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #660099;
  border-radius: 50%;
  transition: background 0.5s ease;
}
.glossary__panel-close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.glossary__panel-close:hover {
  background: rgba(102, 0, 153, 0.1);
}
.glossary__panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}
@media (max-width: 768px) {
  .glossary__panel-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.glossary__panel-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.glossary__panel-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #660099;
  margin-bottom: 8px;
  line-height: 1.3;
}
.glossary__panel-item p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #4f4f4f;
}

@keyframes glossary-panel-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cta {
  padding: 0 0 30px;
  background: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .cta {
    padding: 32px 0 56px;
  }
}
.cta__text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: #4f4f4f;
  max-width: 640px;
  margin: 0 auto 32px;
}
.cta__text strong {
  color: #380054;
}
.cta .btn--primary {
  min-width: 200px;
}

.spoilers {
  padding: 80px 0 64px;
  background: #efe5f4;
  text-align: center;
}
.spoilers h2 {
  font-weight: 400;
  font-size: 2.6rem;
  color: #660099;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .spoilers h2 {
    font-size: 2rem;
    margin-bottom: 32px;
  }
}
.spoilers h2 span {
  color: #EB3C7C;
}
.spoilers h2 strong {
  font-weight: 700;
  color: #660099;
}
.spoilers__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Vivo Type", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
  background: #380054;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 100px;
}
.spoilers__btn:hover {
  background: #4a0070;
  transform: translateY(-1px);
}
.spoilers__btn {
  white-space: nowrap;
  flex-shrink: 0;
  background-color: #660099;
  gap: 12px;
  font-weight: 400;
}

.page-estrutura .header {
  background-color: rgba(56, 0, 84, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.estrutura-hero {
  background: #380054 url(../assets/images/bg-estrutura.png) no-repeat center center/cover;
  color: #ffffff;
  padding: calc(120px + 48px) 0 72px;
  position: relative;
  overflow: hidden;
}
.estrutura-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 80%, rgba(189, 74, 255, 0.25) 0%, transparent 50%), radial-gradient(ellipse at 90% 20%, rgba(235, 60, 124, 0.12) 0%, transparent 45%);
  pointer-events: none;
}
.estrutura-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../assets/images/vivo-vetor.png) no-repeat center center/contain;
  width: 343px;
  height: 600px;
  left: 0;
  top: 20%;
}
.estrutura-hero .container {
  position: relative;
  z-index: 1;
}
.estrutura-hero__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .estrutura-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }
}
.estrutura-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.estrutura-hero__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 420px;
}
.estrutura-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.estrutura-hero__aside p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}
.estrutura-hero h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #D998FF;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.estrutura-hero__framework {
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .estrutura-hero__framework {
    grid-template-columns: 1fr;
  }
}
.estrutura-hero__labels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.estrutura-hero__label {
  border-radius: 10px 0 0 10px;
  font-weight: 400;
  font-size: 1.5rem;
  color: #ffffff;
  padding: 8px 24px;
  min-height: 64px;
  background: #BD4AFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .estrutura-hero__label {
    padding: 8px 16px;
    font-size: 1rem;
    min-height: 48px;
  }
}
.estrutura-hero__label span {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .estrutura-hero__label span {
    font-size: 0.775rem;
  }
}
.estrutura-hero__label--skills {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  flex: 1;
  min-height: 140px;
  color: #EB3C7C;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.estrutura-hero__rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #BD4AFF;
  border-radius: 10px;
}
.estrutura-hero__row {
  display: grid;
  grid-template-columns: 1fr;
  padding: 16px 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .estrutura-hero__row {
    padding: 8px 16px;
  }
}
.estrutura-hero__row li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  padding-left: 14px;
}
@media (max-width: 768px) {
  .estrutura-hero__row li {
    font-size: 0.875rem;
  }
}
.estrutura-hero__row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #BD4AFF;
}
.estrutura-hero__skills {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  margin-top: 2px;
  max-width: 780px;
  margin: 12px auto 0;
}
@media (max-width: 768px) {
  .estrutura-hero__skills {
    grid-template-columns: 1fr;
  }
}
.estrutura-hero__skill-block {
  border: 1px solid #EB3C7C;
}
.estrutura-hero__skill-block .estrutura-hero__label-hard {
  background: #EB3C7C;
}
@media (max-width: 768px) {
  .estrutura-hero__skills-label {
    display: none;
  }
}

.taxonomia {
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .taxonomia {
    padding: 56px 0;
  }
}
.taxonomia__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1024px) {
  .taxonomia__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.taxonomia .section-title {
  text-align: left;
  margin-bottom: 32px;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: #660099;
}
.taxonomia .section-title .highlight {
  color: #BD4AFF;
}
.taxonomia__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.taxonomia__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid #D998FF;
}
.taxonomia__item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.taxonomia__item-num {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #660099;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
}
.taxonomia__item p {
  font-size: 1rem;
  line-height: 1.6;
  padding: 0;
}
.taxonomia__ui {
  background: #efe5f4;
  border-radius: 24px;
  overflow: hidden;
}
.taxonomia__ui-header {
  background: #660099;
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 1.2rem;
  gap: 15px;
}
.taxonomia__ui-header a {
  font-size: 1rem;
  text-decoration: underline;
}
.taxonomia__ui-body {
  padding: 20px;
}
.taxonomia__ui-tab {
  display: inline-flex;
  background: #D998FF;
  color: #660099;
  padding: 8px 36px;
  border-radius: 30px;
  font-size: 0.8125rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.taxonomia__ui-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.taxonomia__ui-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
}
.taxonomia__ui-card h4 {
  font-size: 1.5rem;
  color: #660099;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.taxonomia__skill-rows {
  display: flex;
  gap: 10px;
}
.taxonomia__skill-row {
  display: flex;
  flex-direction: column;
}
.taxonomia__skill-name {
  font-size: 0.8rem;
  font-weight: 500;
}
.taxonomia__skill-text {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}
.taxonomia__skill-small-text {
  font-size: 0.8125rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #BD4AFF;
}
.taxonomia__skill-badges {
  display: flex;
  gap: 10px;
}
.taxonomia__skill__badge {
  font-size: 0.6875rem;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  background: #F4E1FF;
  text-transform: uppercase;
  color: #660099;
}
.taxonomia__skill-actions {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}
.taxonomia__skill-actions span {
  font-size: 0.6875rem;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(102, 0, 153, 0.3);
  color: #660099;
}

.hard-soft {
  padding: 0 0 80px;
}
@media (max-width: 768px) {
  .hard-soft {
    padding: 0 0 56px;
  }
}
.hard-soft .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}
.hard-soft .section-title {
  color: #660099;
  margin-bottom: 0;
  font-size: 3rem;
  text-align: left;
}
.hard-soft__intro {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 1rem;
  line-height: 1.7;
}
.hard-soft__banner {
  width: 100%;
  max-width: 1099px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.hard-soft__banner--wide {
  max-width: 1320px;
}
.hard-soft__banner {
  background: #660099;
  color: #ffffff;
  text-align: center;
  padding: 18px 12px;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1.5vw, 1.2rem);
  font-weight: 500;
  margin-bottom: 36px;
  max-width: 1099px;
}
@media (max-width: 768px) {
  .hard-soft__banner {
    border-radius: 8px;
    padding: 18px 12px;
  }
}
.hard-soft__pills {
  width: 100%;
  max-width: 1099px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.hard-soft__pills--wide {
  max-width: 1320px;
}
.hard-soft__pills {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.hard-soft__pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.hard-soft__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 22px;
  border-radius: 100px;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  flex: 1;
}
.hard-soft__pill--culture {
  background: #660099;
  color: #ffffff;
}
.hard-soft__pill--behavior {
  background: #f8d0e0;
  color: #EB3C7C;
}
.hard-soft__footer {
  width: 100%;
  max-width: 1099px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.hard-soft__footer--wide {
  max-width: 1320px;
}
.hard-soft__footer {
  background: #EB3C7C;
  color: #ffffff;
  border-radius: 6px;
  padding: 24px 36px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
  max-width: 1099px;
}
@media (max-width: 768px) {
  .hard-soft__footer {
    padding: 24px;
  }
}

.jornada {
  padding: 80px 0;
  background: #F4E1FF;
}
@media (max-width: 768px) {
  .jornada {
    padding: 56px 0;
  }
}
.jornada .section-title {
  color: #660099;
  margin-bottom: 40px;
}
.jornada__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
.jornada__step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #D998FF;
  color: #D998FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.5s ease, color 0.5s ease;
  flex-shrink: 0;
  z-index: 1;
  margin: 10px;
}
.jornada__step.is-active {
  background: #660099;
  color: #ffffff;
  border-color: #660099;
}
.jornada__step-line {
  flex: 1;
  height: 2px;
  background: #D998FF;
  min-width: 24px;
}
.jornada__arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #660099;
  flex-shrink: 0;
}
.jornada__arrow svg {
  width: 20x;
  height: 20px;
  fill: currentColor;
}
.jornada__arrow:hover {
  transform: scale(1.1);
}
.jornada__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.jornada__arrow--prev {
  margin-right: 12px;
}
.jornada__arrow--next {
  margin-left: 12px;
}
.jornada__swiper {
  overflow: hidden;
}
.jornada__slide {
  display: grid !important;
  grid-template-columns: 420px 1fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .jornada__slide {
    grid-template-columns: 1fr;
  }
}
.jornada__media {
  height: 100%;
  max-height: 240px;
  max-width: 420px;
}
.jornada__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.jornada__step-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #660099;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.jornada__slide-title {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: #660099;
  margin-bottom: 16px;
  line-height: 1.3;
}
.jornada__slide-text {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.niveis {
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .niveis {
    padding: 56px 0;
  }
}
.niveis .section-title {
  color: #660099;
  margin-bottom: 16px;
}
.niveis__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.niveis__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.niveis__item {
  display: grid;
  grid-template-columns: 48px 200px 1fr;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
  padding: 18px 28px 18px 18px;
  color: #660099;
}
@media (max-width: 768px) {
  .niveis__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 12px;
  }
}
.niveis__item--0 {
  background: rgba(245, 165, 35, 0.212);
}
.niveis__item--0 .niveis__num {
  background: #FF9900;
}
.niveis__item--1 {
  background: rgba(178, 214, 130, 0.3294117647);
}
.niveis__item--1 .niveis__num {
  background: #82D400;
}
.niveis__item--2 {
  background: rgba(255, 150, 178, 0.212);
}
.niveis__item--2 .niveis__num {
  background: #EB3C7C;
}
.niveis__item--3 {
  background: rgba(189, 74, 255, 0.212);
}
.niveis__item--3 .niveis__num {
  background: #BD4AFF;
}
.niveis__item--4 {
  background: rgba(102, 0, 153, 0.212);
}
.niveis__item--4 .niveis__num {
  background: #4a0070;
}
.niveis__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
}
.niveis h3 {
  font-size: 1.0625rem;
  margin-bottom: 0;
  color: #660099;
}
.niveis__body p {
  font-size: 0.875rem;
  line-height: 1.5;
}

.estrutura-cta {
  padding: 72px 0 0;
  background: linear-gradient(90deg, #F4E1FF 0%, #f8d0e0 100%);
  text-align: center;
}
.estrutura-cta__text {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.35;
  color: #660099;
  max-width: 700px;
  margin: 0 auto 32px;
  font-weight: 400;
}
.estrutura-cta__text strong {
  color: #EB3C7C;
  font-weight: 700;
}
.estrutura-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Vivo Type", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
  background: #380054;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 100px;
}
.estrutura-cta__btn:hover {
  background: #4a0070;
  transform: translateY(-1px);
}
.estrutura-cta__btn {
  background: #380054;
  margin-bottom: 48px;
  gap: 10px;
}
.estrutura-cta__btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.estrutura-cta__media img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.page-funcionamento .header {
  background-color: rgba(56, 0, 84, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.func-hero {
  background: #380054;
  color: #ffffff;
  padding: calc(120px + 48px) 0 64px;
  position: relative;
  overflow: hidden;
}
.func-hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.func-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .func-hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.func-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.func-hero__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.func-pratica {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .func-pratica {
    padding: 56px 0;
  }
}
.func-pratica .section-title {
  color: #660099;
  margin-bottom: 40px;
}
.func-pratica__slider {
  display: flex;
  align-items: center;
  gap: 16px;
}
.func-pratica__swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.func-pratica__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #efe5f4;
  color: #660099;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.5s ease, color 0.5s ease;
}
.func-pratica__arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.func-pratica__arrow:hover {
  background: #660099;
  color: #ffffff;
}
.func-pratica__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.func-pratica__slide {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .func-pratica__slide {
    grid-template-columns: 1fr;
    padding: 16px;
  }
}
.func-pratica__media {
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
}
.func-pratica__media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}
.func-pratica__content {
  padding-right: 8px;
}
.func-pratica__content h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: #660099;
  margin-bottom: 14px;
  line-height: 1.3;
}
.func-pratica__content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #4f4f4f;
}

.func-dados {
  position: relative;
  padding: 200px 0 80px;
  overflow: hidden;
  background: linear-gradient(0deg, #efe5f4 70%, transparent 70%);
}
@media (max-width: 768px) {
  .func-dados {
    padding: 140px 0 56px;
  }
}
.func-dados__bg {
  position: absolute;
  inset: 0;
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  max-height: 740px;
  top: 0;
}
@media (max-width: 768px) {
  .func-dados__bg {
    border-radius: 20px;
  }
}
.func-dados__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.func-dados__inner {
  position: relative;
  z-index: 1;
}
.func-dados__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .func-dados__intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.func-dados__intro-text p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}
.func-dados__intro-text p strong {
  font-weight: 700;
  color: #ffffff;
}
.func-dados__title {
  font-size: clamp(1.5rem, 3vw, 3rem);
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.func-dados__card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: 28px 24px;
}
.func-dados__card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #660099;
}
.func-dados__card strong {
  font-weight: 700;
  color: #380054;
}
.func-dados__box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .func-dados__box {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
.func-dados__box-title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
}
.func-dados__inputs {
  flex: 1.35;
  min-width: 0;
  background-color: #660099;
  padding: 26px;
  border-radius: 12px;
}
.func-dados__inputs-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .func-dados__inputs-row {
    flex-direction: column;
    align-items: stretch;
  }
}
.func-dados__input {
  flex: 1;
  min-width: 0;
}
.func-dados__input p {
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
  min-height: 2.9em;
}
.func-dados__outputs {
  flex: 1;
  min-width: 0;
  background-color: #660099;
  padding: 26px;
  border-radius: 12px;
}
.func-dados__outputs p {
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
}
.func-dados__op {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #D998FF;
  color: #660099;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .func-dados__op {
    margin: 4px auto;
  }
}
.func-dados__op--eq {
  align-self: center;
  margin: 0 -10px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .func-dados__op--eq {
    margin: 0 auto;
  }
}
.func-dados__thumb {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 16/11;
  max-width: 290px;
  max-height: 160px;
}
.func-dados__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.func-dados__thumb--lg {
  aspect-ratio: 16/10;
}
.func-dados__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 768px) {
  .func-dados__benefits {
    grid-template-columns: 1fr;
  }
}
.func-dados__benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F9EEFF;
  border-radius: 16px;
  padding: 18px 16px;
}
.func-dados__benefit p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #380054;
  font-weight: 500;
}
.func-dados__check {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.func-dados__check svg {
  width: 25px;
  height: 25px;
}

.func-vivi {
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .func-vivi {
    padding: 56px 0;
  }
}
.func-vivi__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .func-vivi__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.func-vivi__media {
  position: relative;
}
.func-vivi__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.func-vivi__media::before {
  content: "";
  position: absolute;
  background: url(../assets/images/vivi-after.png) no-repeat center center;
  width: 90px;
  height: 95px;
  bottom: -50px;
  left: -50px;
}
@media (max-width: 768px) {
  .func-vivi__media::before {
    bottom: -30px;
    left: -30px;
  }
}
.func-vivi .section-title {
  text-align: center;
  color: #660099;
  margin-bottom: 24px;
}
.func-vivi__content {
  position: relative;
}
.func-vivi__story {
  font-size: 1.0625rem;
  line-height: 2;
  color: #4f4f4f;
  margin-bottom: 20px;
}

.func-tip {
  position: relative;
  display: inline;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  cursor: help;
  white-space: normal;
}
.func-tip::before {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translateX(-50%) translateY(4px);
  color: #1a1a1a;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  padding: 7px 10px 7px 26px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(26, 26, 26, 0.16);
  background-color: #ffffff;
  background-image: radial-gradient(circle at 12px 50%, var(--tip-dot) 0 5px, transparent 6px);
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 5;
}
.func-tip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  border: 6px solid transparent;
  border-top-color: #ffffff;
  filter: drop-shadow(0 2px 2px rgba(26, 26, 26, 0.08));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 5;
}
.func-tip:hover, .func-tip:focus, .func-tip.is-active {
  outline: none;
}
.func-tip:hover::before, .func-tip:hover::after, .func-tip:focus::before, .func-tip:focus::after, .func-tip.is-active::before, .func-tip.is-active::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.func-tip--perfil {
  --tip-dot: #380054;
  color: #380054;
  text-decoration-color: #380054;
}
.func-tip--cargo {
  --tip-dot: #00b050;
  color: #00b050;
  text-decoration-color: #00b050;
}
.func-tip--estrutura {
  --tip-dot: #BD4AFF;
  color: #BD4AFF;
  text-decoration-color: #BD4AFF;
}
.func-tip--skills {
  --tip-dot: #EB3C7C;
  color: #EB3C7C;
  text-decoration-color: #EB3C7C;
}
.func-tip--expertise {
  --tip-dot: #f5a623;
  color: #f5a623;
  text-decoration-color: #f5a623;
}
.func-tip--remuneracao {
  --tip-dot: #2f80ed;
  color: #2f80ed;
  text-decoration-color: #2f80ed;
}

.func-exemplo {
  padding: 80px 0;
  background: #380054 url(../assets/images/bg-estrutura.png) center center/cover;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .func-exemplo {
    padding: 56px 0;
  }
}
.func-exemplo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(189, 74, 255, 0.2) 0%, transparent 45%), radial-gradient(ellipse at 10% 80%, rgba(235, 60, 124, 0.12) 0%, transparent 40%);
  pointer-events: none;
}
.func-exemplo .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.func-exemplo__title {
  text-align: center;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}
.func-exemplo__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
.func-exemplo__intro-big {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  margin-bottom: 36px;
}
.func-exemplo__intro:last-of-type {
  margin-bottom: 36px;
}
.func-exemplo__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .func-exemplo__cards {
    grid-template-columns: 1fr;
  }
}
.func-exemplo__card {
  border: 1px solid #BD4AFF;
  border-radius: 16px;
  padding: 24px 20px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.func-exemplo__card p {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 500;
}
.func-exemplo__result {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  padding: 28px 32px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #ffffff;
  display: flex;
  gap: 25px;
  align-items: center;
}
.func-exemplo__result strong {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .func-exemplo__result {
    padding: 24px;
  }
}

.page-resultados .header {
  background-color: #380054;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
@media (max-width: 1024px) {
  .page-resultados .header {
    background-color: #380054;
  }
}

.res-importancia {
  padding: calc(120px + 48px) 0 72px;
  background: #ffffff;
}
.res-importancia .container {
  max-width: 1320px;
}
@media (max-width: 768px) {
  .res-importancia {
    padding: calc(120px + 32px) 0 48px;
  }
}
.res-importancia__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #380054;
  max-width: 820px;
  margin: 0 auto 40px;
  line-height: 1.3;
}
.res-importancia__title span {
  color: #BD4AFF;
  font-weight: 700;
}
.res-importancia__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  min-height: 460px;
}
@media (max-width: 768px) {
  .res-importancia__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

.res-card {
  position: relative;
  min-width: 0;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 768px) {
  .res-card {
    min-height: 320px;
  }
}
.res-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.res-card__num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #660099;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.res-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(56, 0, 84, 0.95) 0%, rgba(56, 0, 84, 0) 100%);
  color: #ffffff;
  transition: padding 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.res-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
}
.res-card__list {
  display: none;
  margin-top: 14px;
  padding-left: 18px;
  list-style: disc;
}
.res-card__list li {
  font-size: 1rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
}
.res-card__list li ul {
  list-style: disc;
  padding-left: 18px;
  margin-top: 10px;
}
.res-card__list li ul li {
  margin-bottom: 2px;
}
.res-card__list li:last-child {
  margin-bottom: 0;
}
.res-card__list li strong {
  font-weight: 700;
}
.res-card.is-active .res-card__overlay {
  padding: 28px 20px;
  background: linear-gradient(to top, rgba(56, 0, 84, 0.97) 0%, rgba(56, 0, 84, 0.75) 55%, rgba(56, 0, 84, 0) 100%);
}
.res-card.is-active .res-card__list {
  display: block;
  animation: res-card-in 0.35s ease;
}

@keyframes res-card-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.res-faq {
  padding: 72px 0;
  background: #F4E1FF;
}
@media (max-width: 768px) {
  .res-faq {
    padding: 48px 0;
  }
}
.res-faq .section-title {
  color: #660099;
  margin-bottom: 32px;
}
.res-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.res-faq__item {
  background: rgba(255, 255, 255, 0.3490196078);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 1px 1px 0px 1px #fff;
}
.res-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  color: #660099;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  transition: background 0.5s ease;
}
.res-faq__question:hover {
  background: rgba(102, 0, 153, 0.04);
}
@media (max-width: 768px) {
  .res-faq__question {
    padding: 16px 18px;
    font-size: 0.875rem;
  }
}
.res-faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  fill: #660099;
  transition: transform 0.5s ease;
}
.res-faq__item.is-open .res-faq__icon {
  transform: rotate(180deg);
}
.res-faq__item.is-open .res-faq__answer {
  display: block;
}
.res-faq__answer {
  display: none;
  padding: 0 24px 20px;
}
.res-faq__answer p {
  font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .res-faq__answer {
    padding: 0 18px 16px;
  }
}

.res-paradigma {
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .res-paradigma {
    padding: 56px 0;
  }
}
.res-paradigma .section-title {
  color: #660099;
  margin-bottom: 28px;
}
.res-paradigma__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.res-paradigma__content p {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.res-paradigma__highlight {
  margin-top: 28px !important;
  font-size: clamp(1.05rem, 2vw, 1.5rem) !important;
  color: #660099 !important;
  font-weight: 500;
}
.res-paradigma__highlight strong {
  font-weight: 700;
}

/*# sourceMappingURL=main.css.map */
