/* ============================================
   IMPORTAR FONTES GOOGLE
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Geologica:wght@100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
/* 
font-family: "Figtree", sans-serif;
font-family: "Geologica", sans-serif; 
font-family: "Nunito Sans", sans-serif;
font-family: "Nunito", sans-serif;
*/


/* ============================================
   VARIÁVEIS CSS - CORES E GRADIENTES
   ============================================ */
:root {
  /* Cores principais */
  --unifil-orange: #FF5B00;
  --unifil-orange-light: #FE9252;
  --unifil-orange-transparent: rgba(255, 91, 0, 0.05);
  --unifil-green: #1BBC9B;
  --unifil-green-light: #6DD7BD;
  --unifil-green-transparent: rgba(27, 188, 155, 0.05);
  --unifil-purple: #520787;
  --unifil-purple-light: #890CE8;
  --unifil-purple-transparent: rgba(82, 7, 135, 0.05);
  --unifil-magenta: #E73C7E;
  --unifil-magenta-light: #FE69A2;
  --unifil-magenta-transparent: rgba(231, 60, 126, 0.05);
  --unifil-yellow: #FFDA60;
  --unifil-yellow-light: #FBE6A2;
  --unifil-yellow-transparent: rgba(255, 218, 96, 0.05);
  --unifil-black: #101010;
  --unifil-black-light: #353535;
  --unifil-black-transparent: rgba(0, 0, 0, 0.5);
  --unifil-brown: #2D1E18;
  --unifil-brown-light: #663313;
  --unifil-brown-transparent: rgba(45, 30, 24, 0.5);

  /* Cores neutras */
  --unifil-white: #FFFFFF;
  --unifil-light: #F8F9FA;
  --unifil-silver: #808C97;
  --unifil-silver-light: #A4B1BD;
  --unifil-grey: #586169;
  --unifil-grey-light: #C2CDD6;

  /* Gradientes */
  --unifil-orange-gradient: linear-gradient(-45deg, #FF5B00 0%, #FE9252 75%);
  --unifil-green-gradient: linear-gradient(-45deg, #1BBC9B 0%, #6DD7BD 75%);
  --unifil-purple-gradient: linear-gradient(-45deg, #520787 0%, #890CE8 75%);
  --unifil-magenta-gradient: linear-gradient(-45deg, #E73C7E 0%, #FE69A2 75%);
  --unifil-colors-gradient: linear-gradient(-90deg, #890CE8 0%, #FF5B00 50%, #FE9252 100%);
  --unifil-black-gradient: linear-gradient(0deg,#101010 0%, #2D1E18 70%, #663313 100%);
  --unifil-brown-gradient: linear-gradient(-45deg,#101010 0%, #663313 100%);
}

/* Animação */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* ============================================
   ESTILOS GLOBAIS
   ============================================ */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--unifil-light);
  color: var(--unifil-grey);
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
}

h1,
h2 {
  font-weight: 200;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--unifil-silver);
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
  background: var(--unifil-orange-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

strong {
  font-weight: 900;
}

hr {
  border-top: 1px solid var(--unifil-silver-light);
}


/* ============================================
   CLASSES UTILITÁRIAS
   ============================================ */
.mt-100 {
  margin-top: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.my-100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.py-5 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.blur {
  filter: blur(1px);
  -webkit-filter: blur(1px);
}

.blur-2 {
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

.blur-4 {
  filter: blur(4px);
  -webkit-filter: blur(4px);
}

.blur-6 {
  filter: blur(6px);
  -webkit-filter: blur(6px);
}


/* ============================================
   BACKGROUNDS E TEXTOS CORES VARIÁVEIS
   ============================================ */
/* Backgrounds */
.bg-orange {
  background: var(--unifil-orange);
}

.bg-orange-light {
  background: var(--unifil-orange-light);
}

.bg-orange-gradient {
  background: var(--unifil-orange-gradient);
}

.bg-orange-transparent {
  background: var(--unifil-orange-transparent);
}

.bg-green {
  background: var(--unifil-green);
}

.bg-green-light {
  background: var(--unifil-green-light);
}

.bg-green-gradient {
  background: var(--unifil-green-gradient);
}

.bg-green-transparent {
  background: var(--unifil-green-transparent);
}

.bg-purple {
  background: var(--unifil-purple);
}

.bg-purple-light {
  background: var(--unifil-purple-light);
}

.bg-purple-gradient {
  background: var(--unifil-purple-gradient);
}

.bg-purple-transparent {
  background: var(--unifil-purple-transparent);
}

.bg-magenta {
  background: var(--unifil-magenta);
}

.bg-magenta-light {
  background: var(--unifil-magenta-light);
}

.bg-magenta-gradient {
  background: var(--unifil-magenta-gradient);
}

.bg-magenta-transparent {
  background: var(--unifil-magenta-transparent);
}

.bg-colors-gradient {
  background: var(--unifil-colors-gradient);
}

.bg-white {
  background: var(--unifil-white);
}

.bg-light {
  background: var(--unifil-light);
}

.bg-grey-light {
  background: var(--unifil-grey-light);
}

.bg-silver-light {
  background: var(--unifil-silver-light);
}

.bg-black {
  background: var(--unifil-black);
}

.bg-black-light {
  background: var(--unifil-black-light);
}

.bg-black-gradient {
  background: var(--unifil-black-gradient);
}

.bg-black-transparent {
  background: var(--unifil-black-transparent);
}

.bg-brown {
  background: var(--unifil-brown);
}

.bg-brown-light {
  background: var(--unifil-brown-light);
}

.bg-brown-gradient {
  background: var(--unifil-brown-gradient);
}

.bg-brown-transparent {
  background: var(--unifil-brown-transparent);
}

/* Textos */
.text-orange {
  color: var(--unifil-orange);
}

.text-orange-light {
  color: var(--unifil-orange-light);
}

.text-orange-gradient {
  background: var(--unifil-orange-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-orange-transparent {
  color: var(--unifil-orange-transparent);
}

.text-green {
  color: var(--unifil-green);
}

.text-green-light {
  color: var(--unifil-green-light);
}

.text-green-gradient {
  background: var(--unifil-green-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-green-transparent {
  color: var(--unifil-green-transparent);
}

.text-purple {
  color: var(--unifil-purple);
}

.text-purple-light {
  color: var(--unifil-purple-light);
}

.text-purple-gradient {
  background: var(--unifil-purple-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-purple-transparent {
  color: var(--unifil-purple-transparent);
}

.text-magenta {
  color: var(--unifil-magenta);
}

.text-magenta-light {
  color: var(--unifil-magenta-light);
}

.text-magenta-gradient {
  background: var(--unifil-magenta-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-magenta-transparent {
  color: var(--unifil-magenta-transparent);
}

.text-colors-gradient {
  background: var(--unifil-colors-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-yellow {
  color: var(--unifil-yellow);
}

.text-yellow-light {
  color: var(--unifil-yellow-light);
}

.text-white {
  color: var(--unifil-white);
}

.text-light {
  color: var(--unifil-light);
}

.text-grey-light {
  color: var(--unifil-grey-light);
}

.text-silver-light {
  color: var(--unifil-silver-light);
}


/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */
header {
  background: linear-gradient(135deg, rgba(254, 146, 82, 0.75) 0%, rgba(255, 91, 0, 0.75) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--unifil-white);
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar {
  height: 70px;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.25rem;
}

.navbar-brand .logo {
  height: 45px;
}

.navbar a .navbar-brand {
  color: var(--unifil-white);
  font-weight: 600;
  font-size: 1.1rem;
  transition: opacity 0.3s ease;
}

.navbar a .navbar-brand:hover {
  opacity: 0.8;
}

.navbar .navbar-brand i {
  margin-right: 0.5rem;
}


/* ============================================
   RODAPÉ FOOTER
   ============================================ */
footer {
  background: var(--unifil-black-gradient);
  color: var(--unifil-white);
  text-align: center;
  padding: 1.5rem 0;
}


/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--unifil-black-transparent);
  color: var(--unifil-white);
  border-radius: 1rem;
  border-color: transparent;
  border: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-title {
  color: var(--unifil-white);
}

.card img {
  height: 200px;
  object-fit: cover;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(-45deg, rgba(255, 91, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

.card-footer {
  /* background: var(--unifil-black-transparent); */
  border-top: none;
}


/* ============================================
   BADGES
   ============================================ */
.badge {
  font-weight: 600;
  margin-right: 0.25rem;
}

.badge-categoria {
  background: var(--unifil-silver-light);
  color: var(--unifil-white);
}

.badge-modalidade {
  background: var(--unifil-orange-gradient);
  color: var(--unifil-white);
}

.badge-status {
  background: var(--unifil-green-gradient);
  color: var(--unifil-white);
}

.badge-desconto {
  background: var(--unifil-purple-transparent);
  color: var(--unifil-white);
  border: 1px solid var(--unifil-white);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 0.4rem;
  position: absolute;
  top: 10px;
  right: 6px;
  padding: 0.4rem 0.5rem;
  z-index: 10;
}

.badge-promo {
  background: var(--unifil-black-transparent);
  color: var(--unifil-orange);
  border: 1px solid var(--unifil-orange);
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 0.4rem;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.4rem 0.5rem;
  z-index: 10;
  box-shadow: 0 0 0 .25rem rgba(255, 91, 0, 0.2);
}

.badge-promo-destaque {
  background: var(--unifil-black-transparent);
  color: var(--unifil-orange);
  border: 1px solid var(--unifil-orange);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 0.4rem;
  padding: 0.4rem 0.5rem;
  z-index: 10;
  box-shadow: 0 0 0 .25rem rgba(255, 91, 0, 0.2);
}


/* ============================================
   PREÇOS E MENSALIDADES
   ============================================ */
.primeira-mensalidade {
  color: var(--unifil-orange);
  font-weight: 800;
  font-size: 1.2rem;
  margin-top: -4px;
}

.desconto-mensalidade {
  color: var(--unifil-grey-light);
  font-size: 0.9rem;
  text-decoration: line-through;
}

.demais-mensalidade {
  color: var(--unifil-orange);
  font-weight: 800;
  font-size: 1.2rem;
  margin-top: -4px;
}


/* ============================================
   FORMULÁRIOS
   ============================================ */
.form-select,
.form-control {
  color: var(--unifil-grey);
  border-radius: 10px;
}

.form-control:focus,
.form-select:focus {
  color: var(--unifil-grey);
  border-color: var(--unifil-orange-light);
  box-shadow: 0 0 0 .25rem rgba(255, 91, 0, 0.2);
}

.form-control::placeholder {
  color: var(--unifil-grey);
  opacity: 0.5;
}

.form-label {
  color: var(--unifil-silver);
  font-size: 0.8rem;
  font-weight: 600;
}


/* ============================================
   BOTÕES
   ============================================ */
.btn {
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  padding: 0.75rem 1rem;
}

/* Botões Primário */
.btn-primary {
  background: var(--unifil-orange-gradient);
  border: none;
  padding: 0.815rem 1rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover,
.btn-primary:active,
.btn:first-child:active {
  transform: scale(1.04);
}

.btn-outline-primary {
  color: var(--unifil-orange);
  border-color: var(--unifil-orange);
}

.btn-outline-primary:hover,
.btn-outline-primary:active {
  background: var(--unifil-orange-gradient);
  border-color: var(--unifil-orange-transparent);
}

/* Botões Successo */
.btn-success {
  background: var(--unifil-green-gradient);
  border: none;
  padding: 0.815rem 1rem;
  transition: transform 0.3s ease;
}

.btn-success:hover,
.btn-success:active,
.btn:not(.btn-check)+.btn:active {
  transform: scale(1.04);
}

.btn-outline-success {
  color: var(--unifil-green);
  border-color: var(--unifil-green);
}

.btn-outline-success:hover,
.btn-outline-success:active {
  background: var(--unifil-green-gradient);
  border-color: var(--unifil-green-transparent);
}

/* Botões Secundário */
.btn-secondary {
  background: var(--unifil-purple-gradient);
  border: none;
  padding: 0.815rem 1rem;
  transition: transform 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn:not(.btn-check)+.btn:active {
  transform: scale(1.04);
}

.btn-outline-secondary {
  color: var(--unifil-purple);
  border-color: var(--unifil-purple);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:active {
  background: var(--unifil-purple-gradient);
  border-color: var(--unifil-purple-transparent);
}

/* Botões Contorno Light */
.btn-outline-light {
  color: var(--unifil-light);
  border-color: var(--unifil-light);
}

.btn-outline-light:hover,
.btn-outline-light:active {
  background: var(--unifil-light);
  color: var(--unifil-orange);
  border-color: var(--unifil-light);
}

/* Botões Contorno Black */
.btn-outline-black {
  color: var(--unifil-black);
  border-color: var(--unifil-black);
}

.btn-outline-black:hover,
.btn-outline-black:active {
  background: var(--unifil-black-gradient);
  color: var(--unifil-white);
  border-color: var(--unifil-black);
}

/* Grupos de botões */
.btn-group .btn:first-child {
  border-radius: 10px 0 0 10px;
  z-index: 1;
}

.btn-group .btn:last-child {
  border-radius: 0 10px 10px 0;
}

.btn:first-child:active {
  border: none;
}


/* ============================================
   ALERTAS
   ============================================ */
.alert {
  border-left: 6px solid var(--unifil-orange);
  border-radius: 0.75rem;
}


/* ============================================
   FILTROS
   ============================================ */
#filtrosContainer {
  background: var(--unifil-orange);
  border-radius: 1rem;
}

#filtrosContainer.sticky-top {
  top: 10px;
}

#filtrosContainer label {
  color: var(--unifil-white);
}

#toggleFiltrosBtn {
  border-color: var(--unifil-white);
  color: var(--unifil-white);
  font-weight: 600;
  transition: 0.3s ease;
}

#toggleFiltrosBtn:hover {
  background: var(--unifil-white);
  color: var(--unifil-orange);
  border-color: transparent;
}

.filtro-extra {
  transition: max-height 0.3s ease, opacity 0.3s ease;
}


/* ============================================
   AUTOCOMPLETE DO GOOGLE PLACES
   ============================================ */
.pac-container {
  border-radius: 1rem;
  z-index: 99999;
}

.pac-logo::after {
  display: none !important;
}


/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
  background: var(--unifil-light);
  width: 500px;
  height: 100%;
  top: 0;
  right: -560px;
  position: fixed;
  transition: right 0.3s ease;
  box-shadow: -2px 0 50px rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

.sidebar.open {
  right: 0;
}

.close-btn {
  background: var(--unifil-orange-gradient);
  color: var(--unifil-white);
  width: 45px;
  height: 45px;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -45px;
  top: 11px;
  border-radius: 0.5rem 0 0 0.5rem;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.loading svg {
  width: 50px;
  height: 50px;
}


/* ============================================
   BARRA FIXA
   ============================================ */
/* Barra fixa oculta por padrão */
.inscreva-bar {
  background: linear-gradient(0deg, rgba(102, 51, 19, 0.75) 0%, rgba(16, 16, 16, 0.8) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--unifil-white);
  text-align: center;
  width: 100%;
  bottom: -160px;
  left: 0;
  padding: 1rem;
  position: fixed;
  transition: bottom 0.4s ease;
  z-index: 9997;
}

.inscreva-bar.show {
  bottom: 0;
}

.inscreva-bar strong {
  color: var(--unifil-orange);
}


/* ============================================
   MODAL
   ============================================ */
.modal {
  z-index: 9999;
}

.modal-content {
  background-color: var(--bs-modal-bg);
  color: var(--bs-modal-color);
  border: none;
  border-radius: 1rem;
}

.modal-header {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}


/* ============================================
   COUNTDOWN
   ============================================ */
/* Countdown na Barra Fixa */
.countdown-bar {
  margin-bottom: -15px;
}

.countdown-bar-box {
  color: var(--unifil-orange);
  text-align: center;
  align-items: baseline;
  gap: 2px;
}

.countdown-bar-separator {
  color: var(--unifil-orange);
  font-weight: 700;
  margin: 0 2px;
}

/* Countdown no Sidebar */
.countdown-sidebar {
  background: var(--unifil-black-gradient);
  color: var(--unifil-white);
  text-align: center;
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 15px;
}

.countdown-sidebar-boxes {
  font-size: 150%;
}

.countdown-sidebar-box {
  color: var(--unifil-orange);
  text-align: center;
  align-items: baseline;
  gap: 3px;
}

.countdown-sidebar-separator {
  color: var(--unifil-orange);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 3px;
}


/* ============================================
   HERO PRINCIPAL
   ============================================ */
.hero-principal {
  background: linear-gradient(-90deg, #101010 0%, #663313 50%, #2D1E18 100%);
  animation: gradient 10s ease infinite;
  background-size: 400% 400%;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 65px 0;
  position: relative;
  overflow: hidden;
}

.hero-principal .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: var(--unifil-yellow-light);
}

.hero-subtitle {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--unifil-white);
}

.hero-description {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.btn-hero {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Persona estática no bottom */
.hero-image-wrapper,
.hero-persona-wrapper,
.hero-persona-wrapper-full  {
  display: flex;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-persona {
  width: 100%;
  height: 100vh;
  object-fit: contain;
  object-position: center;
}

.hero-persona-full {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  object-position: bottom;
}


/* ============================================
   ROLAGEM SCROLL MOUSE
   ============================================ */
.scroll {
  position: relative;
  font-size: 0.933rem;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  padding: 10px;

  &::before {
    display: block;
    position: absolute;
    top: -2px;
    left: -2px;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 12px;
    content: "";
  }

  &::after {
    display: block;
    position: absolute;
    top: 9px;
    left: 9px;
    width: 2px;
    height: 8px;
    background: rgba(255, 255, 255, 1);
    border-radius: 1px;
    content: "";
    animation-name: scroll;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: 2s;
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    height: 8px;
  }

  20% {
    opacity: 1;
    height: 8px;
  }

  30% {
    transform: translateY(0);
    opacity: 1;
    height: 19px;
  }

  40% {
    opacity: 1;
  }

  80% {
    transform: translateY(19px);
    opacity: 0;
    height: 0;
  }

  81% {
    transform: translateY(0);
    opacity: 0;
    height: 8px;
  }

  100% {
    opacity: 1;
    height: 8px;
  }
}


/* ============================================
   FORMAS DE INGRESSAR
   ============================================ */
.ingresso-card {
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ingresso-icon {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--unifil-white);
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.ingresso-card:hover .ingresso-icon {
  transform: scale(1.1);
}

.ingresso-card h5 {
  color: var(--unifil-orange);
}

.ingresso-card p {
  margin: 0;
}


/* ============================================
   CTA COM INDICADORES
   ============================================ */
.indicador {
  color: var(--unifil-white);
  border: 1px solid var(--unifil-light);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.indicador:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.indicador-number {
  color: var(--unifil-yellow-light);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.indicador-icon {
  color: var(--unifil-yellow-light);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.indicador h5 {
  color: var(--unifil-white);
  margin-bottom: 0.5rem;
}

.indicador p {
  margin: 0;
}


/* ============================================
   VANTAGENS
   ============================================ */
.vantagem-card {
  background: var(--unifil-orange-transparent);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vantagem-icon {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--unifil-white);
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.vantagem-card:hover .vantagem-icon {
  transform: scale(1.1);
}

.vantagem-card h5 {
  color: var(--unifil-orange);
}

.vantagem-card p {
  margin: 0;
}


/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos-container {
  display: flex;
  gap: 2rem;
  margin-inline: auto;
  height: 500px;
  width: 100%;
  padding: 1rem;
}

.depoimento-card {
  background: var(--unifil-black-transparent);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.depoimento-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  color: var(--unifil-orange);
  opacity: 0.2;
  line-height: 1;
}

.depoimento-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.depoimento-stars {
  color: var(--unifil-yellow);
  font-size: 1rem;
}

.depoimento-info h5 {
  color: var(--unifil-orange);
  margin-bottom: 0.25rem;
}

.depoimentos {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.depoimento-column {
  height: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

.depoimento-column:hover .depoimentos {
  animation-play-state: paused;
}

.depoimento-column:nth-child(1) .depoimentos {
  animation-name: scrollUp;
  animation-duration: 23s;
}

.depoimento-column:nth-child(2) .depoimentos {
  animation-name: scrollDown;
  animation-duration: 50s;
}

.depoimento-column:nth-child(3) .depoimentos {
  animation-name: scrollUp;
  animation-duration: 30s;
}

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}


/* ============================================
   FAQ - DÚVIDAS FREQUENTES
   ============================================ */
.faq-card {
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.faq-icon {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--unifil-white);
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.faq-card:hover .faq-icon {
  transform: scale(1.1);
}

.faq-card h5 {
  color: var(--unifil-orange);
}

.faq-card p {
  margin: 0;
}


/* ============================================
   HERO DETALHES
   ============================================ */
.hero-detalhes {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  margin-bottom: 0;
}

.hero-detalhes::before {
  background: linear-gradient(-45deg, rgba(255, 91, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--unifil-white);
}

.hero-detalhes h1 {
  color: var(--unifil-white);
  font-weight: 800;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.hero-badges .badge {
  font-size: 0.85rem;
  padding: 0.5rem 0.9rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}


/* ============================================
   AVALIAÇÃO COM ESTRELAS
   ============================================ */
.avaliacao-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--unifil-yellow);
  font-size: 1.2rem;
}

.avaliacao-stars i {
  font-size: 1.2rem;
}

.avaliacao-stars .rating-text {
  color: var(--unifil-white);
  font-size: 0.95rem;
  margin-left: 0.5rem;
}


/* ============================================
   DESCRIÇÃO DO CURSO
   ============================================ */
.curso-description {
  background: var(--unifil-white);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.curso-description h2 {
  margin-bottom: 1rem;
}


/* ============================================
   SEÇÃO DE CONTEÚDO E SIDEBAR
   ============================================ */
.conteudo-section {
  margin-top: 2rem;
}

.info-box {
  background: var(--unifil-white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.curso-sidebar {
  margin-top: -200px;
  position: relative;
  transition: all 0.3s ease;
}

.sticky-top {
  position: sticky;
  top: 100px;
  z-index: 100;
}

.info-box h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.info-box .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-box .info-item:last-child {
  border-bottom: none;
}

.info-box .info-label {
  color: var(--unifil-silver);
  font-weight: 600;
  font-size: 0.9rem;
}

.info-box .info-value {
  color: var(--unifil-grey);
  font-weight: 600;
  font-size: 0.95rem;
}

.info-box .info-value.price {
  color: var(--unifil-orange);
  font-size: 1.8rem;
  font-weight: 800;
}


/* ============================================
   O QUE VOCÊ IRÁ APRENDER
   ============================================ */
.aprender-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.aprender-card {
  background: var(--unifil-white);
  /* border-left: 4px solid var(--unifil-orange); */
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.aprender-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.aprender-icon {
  background: var(--unifil-orange-gradient);
  color: var(--unifil-white);
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  font-size: 1.8rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;

}

.aprender-content {
  flex: 1;
}

.aprender-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.aprender-content p {
  font-size: 0.95rem;
  color: var(--unifil-grey);
  margin: 0;
}


/* ============================================
   MERCADO DE TRABALHO
   ============================================ */
.mercado-section {
  color: var(--unifil-white);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.mercado-header {
  text-align: center;
  margin-bottom: 2rem;
}

.mercado-header h3 {
  color: var(--unifil-white);
  margin-bottom: 0.75rem;
}

.salario-cards {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.salario-card {
  /* background: rgba(255, 255, 255, 0.15); */
  color: var(--unifil-white);
  /* backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); */
  border: 1px solid var(--unifil-light);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.salario-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.salario-title {
  color: var(--unifil-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.salario-value {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.5rem;
  margin: 0;
  letter-spacing: -0.5px;
}

.mercado-source {
  text-align: center;
  font-size: 0.7rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--unifil-white);
  opacity: 0.65;
}


/* ============================================
   RESPONSIVIDADE
   ============================================ */
/* Tablets e dispositivos médios */
@media (max-width: 991px) {
  footer {
    background: none;
    margin-top: 8rem;
  }
  
  footer .container {
    display: none;
  }

  .container {
    max-width: 100%;
  }

  .curso-sidebar {
    margin-top: inherit;
  }
}

/* Tablets pequenos */
@media (max-width: 767px) {
  .form-select,
  .form-control {
    margin-bottom: 0.4rem;
  }

  .aprender-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .salario-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .salario-value {
    font-size: 1.1rem;
  }

  .mercado-section {
    padding: 2rem 1.5rem;
  }

  .mercado-header h3 {
    font-size: 1.5rem;
  }

  .mercado-subtitle {
    font-size: 0.95rem;
  }

  .hero-principal {
    height: auto;
    padding-top: 50px;
    align-items: normal;
    text-align: center;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 4.2em;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn-hero {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .hero-persona-wrapper-full {
    margin-bottom: -65px;
  }

  .hero-persona,
  .hero-persona-full {
    height: auto;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1.1rem;
  }

  #filtrosContainer {
    background: var(--unifil-orange);
    padding: 0.75rem 1rem;
    z-index: 9998;
  }

  .filtro-extra {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin: 0;
  }

  .filtros-abertos .filtro-extra {
    max-height: 150px;
    opacity: 1;
    margin-bottom: 8px;
  }

  .card img {
    height: 180px;
  }

  .card::before {
    height: 180px;
  }

  .primeira-mensalidade {
    font-size: 1.1rem;
    display: inline;
  }

  .desconto-mensalidade {
    font-size: 0.9rem;
    display: inline;
  }

  .demais-mensalidade {
    font-size: 1.1rem;
    display: inline;
  }

  .hero-detalhes {
    min-height: 400px;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .hero-detalhes h1 {
    font-size: 2rem;
  }

  .conteudo-section {
    margin-top: 0;
  }

  .sidebar {
    width: 100%;
    right: -120%;
    padding-bottom: 0;
  }

  .sidebar.open {
    right: 0;
  }

  .close-btn {
    background: transparent;
    color: var(--unifil-orange);
    font-weight: 700;
    left: inherit;
    right: 0;
    top: 5px;
  }

  .depoimentos-container {
    gap: 16px;
    padding: 16px;
  }
  .depoimento-column:nth-child(3) {
    display: none;
  }

  .depoimento-column:hover .depoimentos {
    animation-play-state: running;
  }

  .countdown-bar {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .countdown-bar-boxes {
    margin-left: 10px;
  }
}

/* Mobile pequeno */
@media (max-width: 576px) {

  .salario-cards {
    grid-template-columns: 1fr;
  }

  .aprender-card,
  .salario-card {
    flex-direction: column;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .aprender-icon {
    margin: 0 auto;
  }

  .indicador-number {
    font-size: 2.5rem;
  }

  .indicador p {
    font-size: 0.85rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .depoimento-column {
    display: none;
  }

  .depoimento-column:first-child {
    display: block;
  }

  .countdown-bar {
    display: block;
  }

  .countdown-bar-boxes {
    margin-left: 0;
  }
}