/* Hero */
.asset-hero-section {
  background-color: #000000;
  color: #ffffff;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}

@media (min-width: 992px){
  .asset-hero-section{
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 70%,
      rgba(0, 0, 0, 0.6) 85%,
      #000000 100%
    ), url("../images/home/bg-hero.png") center center / cover no-repeat;
  }
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.28rem;
  color: #e0e0e0;
  font-weight: 300;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 0;
}

.hero-subtitle strong {
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.18rem;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .asset-hero-section {
    min-height: 50vh;
    padding: 80px 0 0 0;
  }
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.5;
  }
}

/* Institucional Asset */
.asset-presentation-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0;
  overflow-x: hidden;
}

.asset-presentation-section .text-content-top {
  font-size: 0.98rem;
  line-height: 1.65;
}

.asset-presentation-section .text-content-top .description-text {
  color: #ffffff;
  font-weight: 300;
}

.asset-presentation-section .text-content-top strong {
  font-weight: 700;
}

.asset-presentation-section .asset-list-features {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.asset-presentation-section .asset-list-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #ffffff;
}

.asset-presentation-section .asset-list-features li::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-size: 0.85rem;
}

.asset-presentation-section .btn-asset-neon {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  padding: 13px 28px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 0 12px rgba(255, 0, 51, 0.1),
    inset 0 0 8px rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.asset-presentation-section .btn-asset-neon:hover {
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.5),
    inset 0 0 5px rgba(255, 0, 51, 0.2);
}

.asset-presentation-section .section-title-trava {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.asset-presentation-section .trava-paragraphs-wrapper {
  max-width: 860px;
}

.asset-presentation-section .text-muted-custom {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
}

.asset-presentation-section .card-dor {
  background-color: #210000;
  border-radius: 15px;
  padding: 18px 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.3s ease;
}

.asset-presentation-section .card-dor h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.asset-presentation-section .card-dor p {
  font-size: 0.75rem;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 0;
  font-weight: 300;
}

@media (max-width: 767px) {

  .asset-presentation-section{
    padding: 0 0 80px 0;
  }
  .section-title-trava {
    font-size: 1.1rem;
  }
  .text-muted-custom {
    font-size: 0.95rem;
  }
  .card-dor {
    padding: 14px 10px;
  }
  .card-dor h3 {
    font-size: 0.8rem;
  }
  .card-dor p {
    font-size: 0.68rem;
  }
}

/* Diferenciais principais */
.diferenciais-principais {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0;
  position: relative;
}

@media (min-width: 992px){
  .diferenciais-principais{
    background-color: #000000 !important;

    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 70%,
      rgba(0, 0, 0, 0.6) 85%,
      #000000 100%
    ), url("../images/home/bg-section.png") center center / cover no-repeat;
  }
}

.diferenciais-principais .why-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 45px;
}

.diferenciais-principais .why-subtitle {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 300;
  max-width: 850px;
  margin: 0 auto 70px;
  line-height: 1.5;
}

.diferenciais-principais .features-list-wrapper {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding-left: 28px;
}

.diferenciais-principais .features-list-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--color-primary) 0%,
    rgba(255, 0, 51, 0.4) 70%,
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(255, 0, 51, 0.6);
}

.diferenciais-principais .feature-item {
  margin-bottom: 35px;
}

.diferenciais-principais .feature-item:last-child {
  margin-bottom: 0;
}

.diferenciais-principais .feature-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.diferenciais-principais .feature-item p {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0;
}

.diferenciais-principais .action-wrapper {
  margin-top: 75px;
}

.diferenciais-principais .btn-asset-neon {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  padding: 13px 45px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 0 12px rgba(255, 0, 51, 0.1),
    inset 0 0 8px rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.btn-asset-neon:hover {
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.5),
    inset 0 0 5px rgba(255, 0, 51, 0.2);
}

@media (max-width: 767.98px) {
  .asset-why-it-works {
    padding: 70px 0;
  }
  .why-title {
    font-size: 1.15rem;
    margin-bottom: 30px;
  }
  .why-subtitle {
    font-size: 1rem;
    margin-bottom: 45px;
  }
  .features-list-wrapper {
    padding-left: 20px;
  }
  .feature-item h3 {
    font-size: 1rem;
  }
  .feature-item p {
    font-size: 0.88rem;
  }
  .action-wrapper {
    margin-top: 50px;
  }
}

/* Spoiler Cursos  */
.asset-courses-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0;
}

.asset-courses-section .courses-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}

.asset-courses-section .courses-subtitle {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 300;
  max-width: 780px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.asset-courses-section .courses-subtitle strong {
  font-weight: 700;
}

.asset-courses-section .course-card {
  background-color: #020202;
  border: 1px solid rgba(255, 0, 51, 0.12);
  border-radius: 6px;
  padding: 40px 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 15px rgba(255, 0, 51, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.asset-courses-section .course-card:hover {
  border-color: rgba(255, 0, 51, 0.25);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.05),
    inset 0 0 15px rgba(255, 0, 51, 0.03);
}

.asset-courses-section .card-header-accent h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.asset-courses-section .card-header-accent .course-lead {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 40px;
}

.asset-courses-section .info-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.asset-courses-section .info-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.asset-courses-section .info-list li {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 8px;
}

.asset-courses-section .info-list li:last-child {
  margin-bottom: 0;
}

.asset-courses-section .action-wrapper {
  margin-top: 60px;
}

.asset-courses-section .btn-asset-neon {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  padding: 13px 40px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 0 12px rgba(255, 0, 51, 0.1),
    inset 0 0 8px rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.asset-courses-section .btn-asset-neon:hover {
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.5),
    inset 0 0 5px rgba(255, 0, 51, 0.2);
}

@media (max-width: 767.98px) {
  .asset-courses-section {
    padding: 70px 0;
  }
  .asset-courses-section .courses-title {
    font-size: 1.15rem;
  }
  .asset-courses-section .courses-subtitle {
    font-size: 0.95rem;
    margin-bottom: 35px;
  }
  .asset-courses-section .course-card {
    padding: 30px 20px;
  }
  .asset-courses-section .card-header-accent .course-lead {
    margin-bottom: 25px;
  }
  .asset-courses-section .info-label {
    font-size: 0.9rem;
  }
  .asset-courses-section .info-list li {
    font-size: 0.88rem;
  }
  .asset-courses-section .action-wrapper {
    margin-top: 45px;
  }
}

/* Spoiler Metodologia */
.asset-methodology-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0;
}

.asset-methodology-section .methodology-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 35px;
}

.asset-methodology-section .methodology-subtitle {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 300;
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.6;
}

.asset-methodology-section .methodology-subtitle strong {
  font-weight: 700;
}

.asset-methodology-section .methodology-steps {
  padding-top: 10px;
}

.asset-methodology-section .step-item {
  margin-bottom: 28px;
}

.asset-methodology-section .step-item:last-child {
  margin-bottom: 0;
}

.asset-methodology-section .step-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.asset-methodology-section .step-item p {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0;
}

.asset-methodology-section .methodology-book-img {
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(255, 0, 51, 0.25));
}

.asset-methodology-section .btn-asset-neon {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  padding: 13px 40px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 0 12px rgba(255, 0, 51, 0.1),
    inset 0 0 8px rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.asset-methodology-section .btn-asset-neon:hover {
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.5),
    inset 0 0 5px rgba(255, 0, 51, 0.2);
}

@media (max-width: 991.98px) {
  .asset-methodology-section {
    padding: 70px 0;
  }
  .methodology-title {
    font-size: 1.15rem;
  }
  .methodology-subtitle {
    font-size: 0.95rem;
  }
  .ordering-mobile-img {
    order: 1;
    margin-top: 20px;
  }
  .ordering-mobile-text {
    order: 2;
  }
  .methodology-book-img {
    max-height: 380px;
  }
  .step-item {
    margin-bottom: 22px;
  }
  .step-item h3 {
    font-size: 0.95rem;
  }
  .step-item p {
    font-size: 0.88rem;
  }
}

/* Nossos alunos  */
.asset-testimonials-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0;
}

@media (min-width: 992px){
  .asset-testimonials-section{
      background-color: #000000 !important;
  
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 70%,
        rgba(0, 0, 0, 0.6) 85%,
        #000000 100%
      ), url("../images/home/bg-section.png") center center / cover no-repeat;
  }
}

.asset-testimonials-section .testimonials-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 60px;
}

.asset-testimonials-section .testimonials-lead {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 25px;
}

.asset-testimonials-section .testimonials-p {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 30px;
}

.asset-testimonials-section .testimonials-p strong {
  font-weight: 700;
}

.asset-testimonials-section .testimonials-callout {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0;
}

.asset-testimonials-section .video-placeholder-card {
  background-color: #8c8c8c;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.asset-testimonials-section .video-placeholder-card iframe{
  border-radius: 12px;
  border: 1px solid var(--color-primary);
  height: 100%;
}

.asset-testimonials-section .video-placeholder-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.asset-testimonials-section .video-placeholder-card span {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.asset-testimonials-section .action-wrapper {
  margin-top: 20px;
}

.asset-testimonials-section .btn-asset-neon {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  padding: 13px 35px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 0 12px rgba(255, 0, 51, 0.1),
    inset 0 0 8px rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.asset-testimonials-section .btn-asset-neon:hover {
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.5),
    inset 0 0 5px rgba(255, 0, 51, 0.2);
}

@media (max-width: 767.98px) {
  .asset-testimonials-section {
    padding: 70px 0;
  }
  .testimonials-title {
    font-size: 1.15rem;
    margin-bottom: 40px;
  }
  .testimonials-lead {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .testimonials-p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .testimonials-callout {
    font-size: 0.95rem;
  }
  .video-placeholder-card span {
    font-size: 0.95rem;
  }
}

/* Teste a Asset antes de decidir */
.asset-trial-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0;
}

.trial-box {
  background: linear-gradient(
    135deg,
    rgba(35, 7, 10, 0.4) 0%,
    rgba(15, 3, 4, 0.5) 100%
  );
  border: 1px solid rgba(255, 0, 51, 0.15);
  border-radius: 8px;
  padding: 60px 80px;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: inset 0 0 30px rgba(255, 0, 51, 0.03);
}

.trial-title {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.trial-subtitle {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
}

.trial-content {
  max-width: 760px;
  margin: 0 auto;
}

.trial-lead {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 45px;
}

.trial-steps-wrapper h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.trial-steps-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 45px;
}

.trial-steps-list li {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 6px;
}

.trial-footer-text p {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 4px;
}

.trial-footer-text p:last-child {
  margin-bottom: 0;
}

.action-wrapper {
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.btn-asset-neon {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  padding: 14px 40px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(255, 0, 51, 0.15),
    inset 0 0 8px rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.btn-asset-neon:hover {
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 25px rgba(255, 0, 51, 0.6),
    inset 0 0 5px rgba(255, 0, 51, 0.2);
}

@media (max-width: 767.98px) {
  .asset-trial-section {
    padding: 70px 0;
  }
  .trial-box {
    padding: 40px 25px;
  }
  .trial-title {
    font-size: 1.2rem;
  }
  .trial-subtitle {
    font-size: 0.75rem;
  }
  .trial-lead {
    font-size: 0.98rem;
    margin-bottom: 30px;
  }
  .trial-steps-wrapper h3 {
    font-size: 1rem;
  }
  .trial-steps-list {
    margin-bottom: 30px;
  }
  .trial-steps-list li {
    font-size: 0.98rem;
    line-height: 1.5;
  }
  .trial-footer-text p {
    font-size: 0.98rem;
  }
  .btn-asset-neon {
    padding: 13px 25px;
    font-size: 0.8rem;
  }
}

/* Dúvidas frequentes */
.asset-faq-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0;
}

@media (min-width: 992px){
  .asset-faq-section{
    background: url("../images/home/bg-faq.png") center center / cover no-repeat;
  }
}

.faq-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 60px;
}

.faq-accordion-wrapper {
  max-width: 920px;
}

.faq-item-box {
  background: linear-gradient(
    135deg,
    rgba(35, 7, 10, 0.25) 0%,
    rgba(15, 3, 4, 0.35) 100%
  );
  border: 1px solid rgba(255, 0, 51, 0.15);
  border-radius: 6px;
  margin-bottom: 22px;
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(255, 0, 51, 0.02);
  transition: border-color 0.3s ease;
}

.faq-item-box:hover {
  border-color: rgba(255, 0, 51, 0.3);
}

.faq-trigger-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.faq-question-text {
  font-size: 1.22rem;
  font-weight: 600;
  color: #ffffff;
  padding-right: 20px;
}

/* Container do ícone para manter alinhamento estável */
.faq-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Estilização direta do ícone Font Awesome */
.faq-icon-fa {
  font-size: 1rem;
  color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Rotação suave do ícone do Font Awesome quando ativo */
.faq-item-box.active .faq-icon-fa {
  transform: rotate(180deg);
}

.faq-collapse-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-inner-body {
  padding: 0 35px 25px;
  font-size: 1.05rem;
  color: #cccccc;
  font-weight: 300;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 767.98px) {
  .asset-faq-section {
    padding: 70px 0 90px;
  }
  .faq-title {
    font-size: 1.15rem;
    margin-bottom: 40px;
  }
  .faq-trigger-btn {
    padding: 18px 20px;
  }
  .faq-question-text {
    font-size: 1rem;
  }
  .faq-icon-fa {
    font-size: 0.85rem;
  }
  .faq-inner-body {
    padding: 0 20px 20px;
    font-size: 0.95rem;
  }
}

footer {
  background-color: #000000;
  color: #ffffff;
}

/* ==========================================================================
   Dropdown do menu (Contato) — tema escuro / neon
   ========================================================================== */

/* Rotação suave do caret nativo quando aberto */
nav.navbar.validnavs ul.nav > li.dropdown.on > a.dropdown-toggle::after {
  transform: rotate(180deg);
}

/* ---------- Desktop ---------- */
@media (min-width: 992px) {
  nav.navbar.validnavs li.dropdown ul.dropdown-menu.asset-dropdown {
    background: linear-gradient(135deg,
        rgba(25, 5, 8, 0.98) 0%,
        rgba(8, 2, 3, 0.98) 100%);
    border: 1px solid rgba(255, 0, 51, 0.25);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6),
      0 0 18px rgba(255, 0, 51, 0.12);
    padding: 12px;
    width: 240px;
    margin-top: 14px;
  }

  /* Setinha (pico) apontando para o item do menu */
  nav.navbar.validnavs li.dropdown ul.dropdown-menu.asset-dropdown::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 28px;
    width: 12px;
    height: 12px;
    background: rgba(25, 5, 8, 0.98);
    border-left: 1px solid rgba(255, 0, 51, 0.25);
    border-top: 1px solid rgba(255, 0, 51, 0.25);
    transform: rotate(45deg);
  }

  nav.navbar.validnavs ul li.dropdown ul.dropdown-menu.asset-dropdown li a {
    color: #e6e6e6 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 12px 16px !important;
    border-radius: 7px;
    display: flex !important;
    align-items: center;
    gap: 10px;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }

  nav.navbar.validnavs ul li.dropdown ul.dropdown-menu.asset-dropdown li a i {
    color: var(--color-primary);
    font-size: 14px;
    width: 16px;
    text-align: center;
    transition: color 0.25s ease;
  }

  nav.navbar.validnavs li.dropdown ul.dropdown-menu.asset-dropdown li a:hover {
    background-color: rgba(255, 0, 51, 0.12) !important;
    color: #ffffff !important;
    transform: translateX(3px);
  }

  nav.navbar.validnavs li.dropdown ul.dropdown-menu.asset-dropdown li a:hover i {
    color: #ffffff;
  }
}

/* ---------- Mobile (sidenav) ---------- */
@media (max-width: 991.98px) {
  nav.navbar.validnavs .dropdown-menu.asset-dropdown {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-left: 2px solid rgba(255, 0, 51, 0.4);
    margin: 4px 0 8px 18px;
    padding: 4px 0;
    border-radius: 0;
  }

  nav.navbar.validnavs .dropdown-menu.asset-dropdown li a {
    color: #cccccc !important;
    font-size: 15px !important;
    padding: 12px 20px !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
  }

  nav.navbar.validnavs .dropdown-menu.asset-dropdown li a i {
    color: var(--color-primary);
    width: 16px;
    text-align: center;
  }

  nav.navbar.validnavs .dropdown-menu.asset-dropdown li a:hover {
    color: #ffffff !important;
  }
}

.dropdown-menu{
  color: var(--color-primary);
}