/*
Theme Name: Studios Layer Studio
Theme URI: https://studioslayer.com.br/
Author: Studios Layer
Author URI: https://studioslayer.com.br/
Description: Tema sob medida para a landing page do Studios Layer.
Version: 1.0
Text Domain: tema-layer-studio
*/

/* ============================================
   RESET & BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #0a0a0a;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background-color: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 50px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  transition: transform 0.4s ease;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

.top-bar__link:hover {
  color: #e91e8c;
  opacity: 1;
}

.top-bar__arrow {
  width: 14px;
  height: 14px;
}

.top-bar__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.top-bar__socials a:hover {
  transform: scale(1.15);
  opacity: 1;
}

.top-bar__socials img {
  width: 20px;
  height: 20px;
}

/* ============================================
   SITE HEADER / NAVIGATION
   ============================================ */
.site-header {
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 120px;
  display: flex;
  align-items: center;
  padding: 0;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.site-header--scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  height: 90px;
  top: 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo img {
  height: 28px;
  width: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding: 4px 0;
}

.site-header__nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e91e8c;
  transition: width 0.3s ease;
}

.site-header__nav a:hover {
  opacity: 1;
  color: #e91e8c;
}

.site-header__nav a:hover::after {
  width: 100%;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ef107e;
  padding: 10px 0;
  border: none;
  transition: all 0.3s ease;
}

.site-header__cta:hover {
  opacity: 0.8;
}

.site-header__cta img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(90%) saturate(5000%) hue-rotate(325deg) brightness(100%) contrast(95%);
}

/* Hamburger Menu Toggle */
.site-header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.site-header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__spiral {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  max-width: 700px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  opacity: 0.7;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.3) 0%,
      rgba(10, 10, 10, 0.15) 50%,
      rgba(10, 10, 10, 0.9) 100%);
  z-index: 3;
}

.hero__content {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex: 1;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero__text-left {
  flex: 1;
  margin-top: -100px;
}

.hero__title {
  font-size: 42px;
  font-weight: 800;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  white-space: pre-line;
}

.hero__logo-center {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.hero__logo-center img {
  width: 120px;
  height: auto;
  opacity: 0.85;
}

.hero__text-right {
  flex: 1;
  text-align: right;
  margin-top: 100px;
}

.hero__subtitle {
  font-size: 42px;
  font-weight: 800;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  white-space: pre-line;
}

/* Scroll Indicator */
.hero__scroll {
  position: relative;
  z-index: 4;
  padding-bottom: 40px;
}

.hero__scroll-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.hero__scroll-link:hover {
  color: #fff;
  opacity: 1;
}

.hero__scroll-link img {
  width: 20px;
  height: 20px;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(6px);
  }

  60% {
    transform: translateY(3px);
  }
}

/* ============================================
   SECTION: EXCELÊNCIA EM CADA FRAME
   ============================================ */
.section-excelencia {
  padding: 100px 0 80px;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.section-excelencia__header {
  text-align: center;
  margin-bottom: 60px;
}

.section-excelencia__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 16px;
}

.section-excelencia__desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* TABS ROW: above the body, horizontal */
.section-excelencia__tabs {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-bottom: 32px;
}

/* 2-column body: info (left) | slider (right) */
.section-excelencia__body {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
}

.section-excelencia__tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  cursor: pointer;
  padding: 10px 0;
  margin-bottom: 0;
  transition: color 0.3s ease, border-color 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-excelencia__tab:hover {
  color: rgba(255, 255, 255, 0.7);
}

.section-excelencia__tab.is-active {
  color: #fff;
  border-bottom-color: #ef107e;
}

.section-excelencia__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ef107e;
  transition: opacity 0.3s ease;
}

.section-excelencia__cta:hover {
  opacity: 0.8;
}

.section-excelencia__cta img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(90%) saturate(5000%) hue-rotate(325deg) brightness(100%) contrast(95%);
}

/* CENTER: Slider */
.section-excelencia__slider {
  width: 100%;
  min-width: 0;
}

.excelencia-swiper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.excelencia-swiper .swiper-slide {
  width: 100% !important;
  height: auto;
}

.slide-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
}

.slide-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}

.slide-card__title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 8px;
}

.slide-card__text {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Slider Controls */
.section-excelencia__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.section-excelencia__arrows {
  display: flex;
  gap: 12px;
}

.section-excelencia__arrow {
  background: none;
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.section-excelencia__arrow img {
  width: 16px;
  height: 16px;
}

.section-excelencia__arrow:hover {
  opacity: 0.7;
}

.section-excelencia__counter {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.section-excelencia__current {
  color: #fff;
}

/* LEFT: Info Panel */
.section-excelencia__info {
  position: relative;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
}

.section-excelencia__info-content p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.section-excelencia__info-content ul {
  list-style: none;
  padding: 0;
}

.section-excelencia__info-content ul li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 16px;
}

.section-excelencia__info-content ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #ef107e;
  font-weight: 700;
}

.section-excelencia__star {
  position: absolute;
  top: -200px;
  right: 0;
  width: 30vw;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   SECTION: UMA EXPERIÊNCIA COMPLETA
   ============================================ */
.section-experiencia {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.section-experiencia__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.section-experiencia__title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  white-space: nowrap;
}

.section-experiencia__desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 480px;
}

/* Tabs */
.section-experiencia__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-experiencia__tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.section-experiencia__tab:hover {
  color: rgba(255, 255, 255, 0.7);
}

.section-experiencia__tab.is-active {
  color: #ef107e;
  border-bottom-color: #ef107e;
}

/* Panels */
.section-experiencia__panel {
  display: none;
}

.section-experiencia__panel.is-active {
  display: block;
}

/* Masonry Grid (legacy) */
.masonry-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}

.masonry-grid__item {
  overflow: hidden;
  border-radius: 6px;
}

.masonry-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.masonry-grid__item--tall {
  grid-row: span 2;
}

.masonry-grid__item--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background-color: transparent;
}

.masonry-grid__item--text h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.masonry-grid__item--text p {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ============================================
   Experiência Panel - New Layout
   ============================================ */

/* 2-column: text panel (left) | image grid (right) */
.experiencia-panel__layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 20px;
  align-items: stretch;
}

/* Left: text block with background image */
.experiencia-panel__text {
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 590px;
}

.experiencia-panel__text h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.experiencia-panel__text p {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* Right: 2-row image grid */
.experiencia-panel__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.experiencia-panel__grid-row {
  display: flex;
  gap: 12px;
  flex: 1;
}

.experiencia-panel__img {
  overflow: hidden;
  border-radius: 8px;
  flex-shrink: 0;
}

.experiencia-panel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Square image: 1:1 ratio */
.experiencia-panel__img--square {
  flex: 0 0 289px;
  height: 289px;
}

/* Wide/rectangular image: takes the remaining space */
.experiencia-panel__img--wide {
  flex: 1;
  height: 289px;
}

/* ============================================
   SECTION: OPÇÕES DE CONTRATAÇÃO
   ============================================ */
.section-contratacao {
  padding: 80px 0;
  background-color: #0a0a0a;
  position: relative;
  /* overflow: hidden; */
}

.section-contratacao__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.section-contratacao__left {
  position: relative;
}

.section-contratacao__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-contratacao__desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 28px;
}

.section-contratacao__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ef107e;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s ease;
}

.section-contratacao__cta:hover {
  opacity: 0.8;
}

.section-contratacao__cta img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(90%) saturate(5000%) hue-rotate(325deg) brightness(100%) contrast(95%);
}

.section-contratacao__deco {
  position: absolute;
  bottom: -150px;
  left: 0;
  width: 60vw;
  height: auto;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.accordion-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.accordion-item__header:hover {
  color: rgba(255, 255, 255, 0.8);
}

.accordion-item__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.accordion-item__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -30%) rotate(45deg);
  transition: transform 0.3s ease;
}

.accordion-item.is-open .accordion-item__icon::before {
  transform: translate(-50%, -30%) rotate(-135deg);
}

.accordion-item__content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 0;
}

.accordion-item.is-open .accordion-item__content {
  max-height: 300px;
  padding: 0 0 20px;
}

.accordion-item__content p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 6px;
}

.accordion-item__content strong {
  color: #ef107e;
  font-weight: 700;
}

/* ============================================
   SECTION: WIZARD FORM
   ============================================ */
.section-wizard {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.wizard {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

/* Sidebar */
.wizard__sidebar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wizard__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.wizard__steps::before {
  content: "";
  position: absolute;
  left: 28px;
  top: -100px;
  bottom: -100px;
  width: 2px;
  background: url("assets/images/Line.png") center / 2px 100% repeat-y;
}

.wizard__step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  transition: opacity 0.3s ease;
}

.wizard__step.is-active {
  opacity: 1;
}

.wizard__step-icon {
  width: 56px;
  height: 56px;
  border: 2px solid #7b2fbe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  position: relative;
  z-index: 1;
}

.wizard__step.is-active .wizard__step-icon {
  background: #7b2fbe;
}

.wizard__step-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(80%) saturate(1800%) hue-rotate(265deg) brightness(90%) contrast(95%);
}

.wizard__step.is-active .wizard__step-icon img {
  filter: brightness(0) invert(1);
}

.wizard__step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.wizard__step.is-active .wizard__step-label {
  color: #fff;
}

/* Wizard Content */
.wizard__content {
  position: relative;
}

.wizard__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 8px;
}

.wizard__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
}

/* Panels */
.wizard__panel {
  display: none;
}

.wizard__panel.is-active {
  display: block;
}

/* Fields */
.wizard__field {
  margin-bottom: 28px;
}

.wizard__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.wizard__select {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.wizard__select option {
  background: #111;
  color: #fff;
}

.wizard__input {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.wizard__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.wizard__input:focus {
  border-bottom-color: #7b2fbe;
}

/* Range Slider */
.wizard__range-value {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.wizard__range {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  outline: none;
}

.wizard__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #7b2fbe;
  cursor: pointer;
  border: 2px solid #fff;
}

.wizard__range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #7b2fbe;
  cursor: pointer;
  border: 2px solid #fff;
}

/* Radio Rows */
.wizard__radio-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wizard__radio-question {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.wizard__radio-group {
  display: flex;
  gap: 20px;
}

.wizard__radio {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wizard__radio input[type="radio"] {
  accent-color: #7b2fbe;
}

/* Footer */
.wizard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 20px;
}

.wizard__counter {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.wizard__btn-next {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid #7b2fbe;
  color: #7b2fbe;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wizard__btn-next:hover {
  background: #7b2fbe;
  color: #fff;
}

/* Result Modal */
.wizard-result {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.wizard-result.is-visible {
  display: flex;
}

.wizard-result__card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-width: 720px;
  width: 90%;
  border-radius: 10px;
  overflow: hidden;
}

.wizard-result__left {
  background: linear-gradient(135deg, #7b2fbe, #5b1fa0);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wizard-result__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.wizard-result__plan {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.wizard-result__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

.wizard-result__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 20px;
  transition: all 0.3s ease;
  width: fit-content;
}

.wizard-result__cta:hover {
  background: rgba(255, 255, 255, 0.1);
}

.wizard-result__right {
  background: #2d1063;
  padding: 32px;
  position: relative;
}

.wizard-result__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  cursor: pointer;
}

.wizard-result__close:hover {
  color: #fff;
}

.wizard-result__detail {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-result__detail:last-child {
  border-bottom: none;
}

.wizard-result__detail-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  min-width: 80px;
}

.wizard-result__detail strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.wizard-result__detail small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .site-header__nav {
    display: none;
  }

  .site-header__cta {
    display: none;
  }

  .site-header__menu-toggle {
    display: flex;
  }

  .hero__content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 24px;
  }

  .hero__text-left,
  .hero__text-right {
    text-align: center;
  }

  .hero__logo-center {
    padding: 0;
  }

  .hero__logo-center img {
    width: 90px;
  }

  .hero__title,
  .hero__subtitle {
    font-size: clamp(22px, 5vw, 36px);
  }

  .section-excelencia__tabs {
    flex-wrap: wrap;
    gap: 4px 0;
    margin-bottom: 24px;
  }

  .section-excelencia__tab {
    font-size: 11px;
    padding: 8px 16px 8px 0;
    white-space: normal;
  }

  .section-excelencia__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-excelencia__info {
    padding-top: 0;
    order: 2;
  }

  .section-excelencia__slider {
    order: 1;
  }

  .section-excelencia__star {
    display: none;
  }

  .section-experiencia__header {
    flex-direction: column;
    gap: 20px;
  }

  .section-experiencia__title {
    white-space: normal;
  }

  .section-experiencia__tabs {
    overflow-x: auto;
  }

  .section-experiencia__tab {
    font-size: 11px;
    white-space: nowrap;
  }

  .masonry-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .masonry-grid__item--tall {
    grid-row: span 1;
  }

  .section-contratacao__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-contratacao__deco {
    display: none;
  }

  .wizard {
    grid-template-columns: 1fr;
  }

  .wizard__sidebar {
    display: none;
  }

  .wizard-result__card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .top-bar__link {
    font-size: 9px;
  }

  .top-bar__socials {
    gap: 10px;
  }

  .top-bar__socials img {
    width: 16px;
    height: 16px;
  }

  .hero {
    height: 75vh;
    min-height: 500px;
  }

  .hero__title,
  .hero__subtitle {
    font-size: clamp(20px, 6vw, 28px);
  }

  .hero__scroll-link {
    font-size: 12px;
  }

  .section-excelencia {
    padding: 60px 0 40px;
  }

  .section-excelencia__header {
    margin-bottom: 32px;
  }

  .section-excelencia__tab {
    font-size: 11px;
  }

  .masonry-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .section-experiencia__tab {
    font-size: 10px;
    padding: 10px 0;
  }
}

/* ============================================
   SECTION: TESTIMONIALS
   ============================================ */
.section-testimonials {
  padding: 100px 0;
  position: relative;
  background-size: 45vw;
  /* Pegando 30vw da tela em largura/altura proporcional? Ou altura fixa 30vw */
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}

.section-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30vw;
  /* Overlay acompanhando a altura da imagem de fundo */
  /* background: rgba(0, 0, 0, 0.85); */
  /* Escurecer um pouco o fundo para leitura */
}

.section-testimonials .container {
  position: relative;
  z-index: 2;
  overflow: visible;
  /* Garante que os slides não sumam nas laterais do container */
}

.section-testimonials__title {
  text-align: center;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 60px;
}

/* Swiper Slider */
.testimonials-slide {
  padding: 20px 0 100px;
  overflow: visible;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s ease;
  cursor: grab;
}

.testimonial-item__photo {
  position: relative;
  width: 200px;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 1;
}

.testimonial-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info: Name and Role */
.testimonial-item__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-item__name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.testimonial-item__role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin: 4px 0 0;
}

/* Active Slide */
.swiper-slide-active.testimonial-item {
  transform: translateY(-20px);
}

.testimonials-slide .swiper-slide-active .testimonial-item__photo img {
  transform: scale(1.1);
  border-color: #ef107e;
}

.swiper-slide-active .testimonial-item__photo {
  opacity: 1;
  width: 240px;
  height: 340px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.swiper-slide-active .testimonial-item__info {
  opacity: 1;
}

/* Content: Quote and Text */
.testimonial-item__content {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 600px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.swiper-slide-active .testimonial-item__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}

.testimonial-item__quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #ef107e;
  /* Rosa padrão, mas o user disse fundo amarelo e no print parece amarelo */
}

/* Ajuste conforme o print: Círculo amarelo com ícone preto */
.section-testimonials .testimonial-item__quote {
  background: #efb607;
  border-radius: 50%;
  margin-bottom: 20px;
}

.quote-icon {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: -5px;
}

.testimonial-item__text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .swiper-slide-active .testimonial-item__photo {
    width: 200px;
    height: 280px;
  }

  .testimonial-item__content {
    max-width: 90%;
  }

  .testimonial-item__text {
    font-size: 14px;
  }
}

/* ============================================
   SECTION: CONTACT
   ============================================ */
.section-contact {
  display: flex;
  flex-wrap: wrap;
  /* background-color: #000; */
  min-height: 600px;
}

.section-contact__visual {
  flex: 1 1 50%;
  min-width: 320px;
  height: 100vh;
  max-height: 800px;
}

.section-contact__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-contact__form-wrapper {
  flex: 1 1 50%;
  min-width: 320px;
  display: flex;
  align-items: center;
  padding: 80px 5%;
  /* background-color: #000; */
}

.section-contact__container {
  width: 100%;
  max-width: 500px;
}

.section-contact__header {
  margin-bottom: 50px;
}

.section-contact__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.section-contact__subtitle {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.section-contact__form .form-group {
  margin-bottom: 35px;
}

.section-contact__form label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.section-contact__form input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  padding: 10px 0;
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.section-contact__form input:focus {
  outline: none;
  border-bottom-color: #ef107e;
}

.section-contact__form input::placeholder {
  color: #555;
  font-size: 14px;
}

.section-contact__footer {
  margin-top: 50px;
  display: flex;
  justify-content: flex-end;
}

.section-contact__btn {
  background: transparent;
  border: 1px solid #ef107e;
  color: #ef107e;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}

.section-contact__btn span {
  letter-spacing: 2px;
}

.section-contact__btn img {
  width: 16px;
  filter: brightness(0) invert(18%) sepia(85%) saturate(5412%) hue-rotate(320deg) brightness(96%) contrast(97%) !important;
}

.section-contact__btn:hover {
  background: #ef107e;
  color: #fff;
}

.section-contact__btn:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
  .section-contact__visual {
    flex: 1 1 100%;
    height: 400px;
  }

  .section-contact__form-wrapper {
    flex: 1 1 100%;
    padding: 60px 20px;
  }
}

/* ============================================
   SECTION: VIDEOS
   ============================================ */
.section-videos {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0130 50%, #0a0a0a 100%);
}

.section-videos__header {
  text-align: center;
  margin-bottom: 40px;
}

.section-videos__title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 14px;
}

.section-videos__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #7b2fbe;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s ease;
}

.section-videos__cta img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(24%) sepia(85%) saturate(3474%) hue-rotate(259deg) brightness(84%) contrast(85%);
}

.section-videos__cta:hover {
  opacity: 0.7;
}

/* Body: 2-column layout */
.section-videos__body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  align-items: start;
}

.section-videos__player-wrap {
  display: flex;
  flex-direction: column;
}

/* Main player */
.section-videos__player {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.video-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}

.video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 16px 0 0;
}

.video-info__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.video-info__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

/* Video list (scrollable) */
.section-videos__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #7b2fbe transparent;
}

.section-videos__list::-webkit-scrollbar {
  width: 4px;
}

.section-videos__list::-webkit-scrollbar-thumb {
  background: #7b2fbe;
  border-radius: 2px;
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.video-item:hover {
  background: rgba(123, 47, 190, 0.1);
}

.video-item.is-active {
  border-left-color: #7b2fbe;
  background: rgba(123, 47, 190, 0.15);
}

.video-item__thumb {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
}

.video-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: opacity 0.3s ease;
}

.video-item:hover .video-item__thumb img {
  opacity: 0.8;
}

.video-item__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: all 0.3s ease;
}

.video-item__play img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-item:hover .video-item__play {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-item__label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  padding: 0 4px;
  line-height: 1.4;
}

.video-item.is-active .video-item__label {
  color: #fff;
}

@media (max-width: 992px) {
  .section-videos__body {
    grid-template-columns: 1fr;
  }

  .section-videos__list {
    max-height: none;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
  }

  .video-item {
    min-width: 160px;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .video-item.is-active {
    border-bottom-color: #7b2fbe;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Linha colorida full-width */
.footer-colorline {
  width: 100%;
  line-height: 0;
}

.footer-colorline img {
  width: 100%;
  height: auto;
  display: block;
}

/* Corpo do footer */
.footer-body {
  padding: 60px 0;
}

.footer-body__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Coluna esquerda */
.footer-tagline {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.footer-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Coluna direita */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-contact__info span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-cta {
  display: inline-block;
  padding: 14px 32px;
  background: #ef107e;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease;
}

.footer-cta:hover {
  background: #c8006a;
}

/* Bottom bar */
.footer-bottom {
  background: #000;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom__text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  line-height: 1.8;
}

.footer-bottom__link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-bottom__link:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .footer-body__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}