  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold: #C9A84C;
      --gold-light: #E8C96A;
      --gold-dark: #9A7A30;
      --dark: #0D0D0D;
      --dark-2: #141414;
      --dark-3: #1C1C1C;
      --dark-4: #252525;
      --white: #FFFFFF;
      --gray: #A0A0A0;
      --gray-light: #E8E8E8;
      --red: #C0392B;
      --max-w: 900px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--dark);
      color: var(--white);
      line-height: 1.7;
      font-size: 16px;
    }

    /* ── STICKY BAR ── */
    .sticky-bar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: var(--gold);
      color: var(--dark);
      text-align: center;
      padding: 10px 20px;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.5px;
    }
    .sticky-bar a {
      color: var(--dark);
      text-decoration: underline;
      margin-left: 12px;
      font-weight: 800;
    }

    /* ── COUNTDOWN ── */
    .countdown-wrap {
      background: var(--dark-2);
      border-bottom: 1px solid #2a2a2a;
      padding: 14px 20px;
      text-align: center;
      margin-top: 20px;
    }
    .countdown-label {
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 8px;
    }
    .countdown-boxes {
      display: inline-flex;
      gap: 10px;
      align-items: center;
    }
    .cd-box {
      background: var(--dark-3);
      border: 1px solid var(--gold-dark);
      border-radius: 6px;
      padding: 8px 14px;
      min-width: 40px;
      text-align: center;
    }
    .cd-num {
      font-size: 18px;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
    }
    .cd-unit {
      font-size: 8px;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .cd-sep { font-size: 24px; font-weight: 800; color: var(--gold); }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(160deg, #0D0D0D 0%, #1a1208 50%, #0D0D0D 100%);
      padding: 20px 20px 70px;
      text-align: center;
      border-bottom: 1px solid #2a2a2a;
    }

    .hero .container{
      max-width: 1200px !important;
    }

    .hero-logo img{
        max-width: 250px;
        margin-bottom: 20px;
    }

    .hero-tag {
      display: inline-block;
      background: rgba(201,168,76,0.15);
      border: 1px solid var(--gold-dark);
      color: var(--gold);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 30px;
      margin-bottom: 28px;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 4vw, 42px);
      font-weight: 900;
      line-height: 1.2;
      max-width: 720px;
      margin: 0 auto 14px;
      color: var(--white);
    }
    .hero h1 em {
      font-style: normal;
      color: var(--gold);
      
    }
    .hero-sub {
      font-size: clamp(16px, 2vw, 19px);
      color: #ccc;
      max-width: 640px;
      margin: 0 auto 20px;
    }
    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--dark-3);
      border: 1px solid #333;
      border-radius: 30px;
      padding: 8px 18px;
      font-size: 13px;
      font-weight: 600;
      color: #ddd;
    }
    .badge span { color: var(--gold); font-weight: 800; }
    .badge-icon { font-size: 16px; }

    /* ── BUTTONS ── */
    .btn-primary {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
      color: var(--dark);
      font-weight: 800;
      font-size: 16px;
      padding: 18px 48px;
      border-radius: 6px;
      text-decoration: none;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(201,168,76,0.35);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(201,168,76,0.5);
    }
    .btn-secondary {
      display: inline-block;
      background: transparent;
      color: var(--gold);
      font-weight: 700;
      font-size: 15px;
      padding: 14px 36px;
      border-radius: 6px;
      text-decoration: none;
      border: 2px solid var(--gold);
      transition: background 0.2s, color 0.2s;
    }
    .btn-secondary:hover { background: var(--gold); color: var(--dark); }

    .cta-note {
      font-size: 12px;
      color: var(--gray);
      margin-top: 12px;
    }

    /* ── SECTION WRAPPER ── */
    section { padding: 80px 20px; }
    .container { max-width: var(--max-w); margin: 0 auto; }

    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .section-title em { font-style: normal; color: var(--gold); }
    .section-sub {
      font-size: 17px;
      color: #bbb;
      max-width: 680px;
      margin-bottom: 48px;
    }

    /* ── DIVIDER ── */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
      margin: 0;
    }

    /* ── PROBLEM SECTION ── */
    .problem { background: var(--dark-2); }
    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 48px;
    }
    .problem-card {
      background: var(--dark-3);
      border: 1px solid #2a2a2a;
      border-left: 3px solid var(--red);
      border-radius: 8px;
      padding: 20px 22px;
      font-size: 15px;
      color: #ccc;
      line-height: 1.6;
    }
    .problem-card strong { color: var(--white); }

    /* ── STATS ── */
    .stats { background: var(--dark); }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: #222;
      border: 1px solid #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 48px;
    }
    .stat-item {
      background: var(--dark-3);
      padding: 32px 20px;
      text-align: center;
    }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-desc {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.5;
    }

    /* ── HONORÁRIOS TABLE ── */
    .honorarios { background: var(--dark-2); }
    .hon-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 16px;
    }
    .hon-table thead tr {
      background: var(--gold);
      color: var(--dark);
    }
    .hon-table th {
      padding: 16px 20px;
      font-size: 13px;
      font-weight: 800;
      text-align: left;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    .hon-table tbody tr {
      border-bottom: 1px solid #2a2a2a;
      transition: background 0.15s;
    }
    .hon-table tbody tr:hover { background: var(--dark-4); }
    .hon-table tbody tr:last-child { border-bottom: none; }
    .hon-table td {
      padding: 18px 20px;
      font-size: 15px;
      color: #ddd;
    }
    .hon-table td:first-child { font-weight: 600; color: var(--white); }
    .hon-value { color: var(--gold); font-weight: 700; }
    .hon-note {
      font-size: 12px;
      color: var(--gray);
      text-align: right;
      margin-top: 8px;
    }

    /* ── METHODOLOGY ── */
    .methodology { background: var(--dark); }
    .pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 48px;
    }
    .pillar {
      background: var(--dark-3);
      border: 1px solid #2a2a2a;
      border-top: 3px solid var(--gold);
      border-radius: 10px;
      padding: 32px 24px;
    }
    .pillar-num {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      font-weight: 900;
      color: rgba(201,168,76,0.2);
      line-height: 1;
      margin-bottom: 4px;
    }
    .pillar-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .pillar-text { font-size: 14px; color: #bbb; line-height: 1.7; }

    /* depoimentos */


.depoimentos{
    padding-top: 8vh !important;
    padding-bottom: 0 !important;
}


.depoimentos::after{
	width: 100%;
	height: 50px;
	background-image: url(../../vendas-202602/depoimentos_bottom.svg);
	background-position: center bottom;
	background-repeat: no-repeat;
	content: "";		
    transform: translateY(40px);    

}


.depoimentos h2{
    color: #FFF;
    
}

.depoimentos h2 span{
    color: #FEDB37;
    
    
}


.depoimentos .depoimentos_videos{
    margin-left: 20px;
    border-radius: 10px !important;
    
}


.depoimentos .depoimentos_videos h3{
    background-color: #000;
    margin-left: 0 !important;
    width: 100%;
    
}

.depoimentos .depoimentos_videos .box{
    margin-bottom: 20px;    
    
}



.depoimentos h3{
    font-weight: 300;
    padding-top: 7px;    
    z-index: 999;
    position: absolute;
    margin-left: 20px;
    color: #B58136;
}


    .depoimentos .depoimentos_fotos img {
        width: 100%;        
        border-radius: 12px;
        filter: drop-shadow(0 16px 48px rgba(0,0,0,0.6));
        margin-bottom: 20px;
    }






.depoimentos .owl-carousel .owl-item a {
    overflow: hidden;
    
}



.depoimentos .owl-dots{
	text-align: center;
}

.depoimentos .owl-dot{
	width: 10px;
	height: 10px;
	background-color: #fff !important;
	margin: 2vh 5px 5vh 5px;	
	border-radius: 50%;
}

.depoimentos .owl-dot.active{
	background-color: #DC1F26 !important;
}

.youtube-player{
	display: block;	
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
    border-radius: 10px !important;
    overflow: hidden;    
    
}

.youtube-box h6{		
	font-size: 1rem;
	text-align: center;
	
}

.youtube-player i{
	font-size: 4rem;
	position: absolute;
	color: #000;	
	opacity: 0.7;
	
	
}

.youtube-player:hover i{
	color: #F00;
	opacity: 1;
}

.youtube-player i::before{
	z-index: 10;
	position: relative;
}

.youtube-player i::after{
	background-color: #FFF;	
	width: 40px;
	height: 30px;
	content: '';
	display: block;
	position: absolute;
	top: 17px;
	left: 17px;
	z-index: 1;
}

.depoimentos_fotos .itens .col img{    
    border-radius: 0;
    
    border-radius: 5px;
    opacity: 0.9;
    
}


#modalYoutube .modal-header{
	border: none;
	padding: 0;
	margin: 0;
}

#modalYoutube .modal-body{
	background-color:  #191B1D;
	background-image: url(../imgs/youtube-loading-animation.gif);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 280px auto;
	padding: 0;
	margin: 0;	

}

#modalYoutube .modal-header .close {
	font-size: 24px;
	background-color: #c00;
	padding: 0;
	width: 30px;
	height: 30px;
	text-align: center;
	opacity: 1;
	z-index: 999;
	color: #FFF;
	text-shadow: none;
	position: absolute;
	right: 5px;	
    border-radius: 50%;
}

#modalYoutube  .modal-content {
	background: none ;
	border: none;
}




.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
}




#modalDesconto .modal-dialog{
  

}

#modalDesconto .modal-header{
  border: none;
  
}

#modalDesconto .modal-body{
	background-color:  #191B1D;
	border: 2px solid #E6C768;
  border-radius: 5px !important;  
  padding: 40px !important;
}

#modalDesconto .modal-header .close {
    font-size: 24px;
    background-color: #c00;
    padding: 0;
    width: 30px;
    height: 30px;
    text-align: center;
    opacity: 1;
    z-index: 999;
    color: #FFF;
    text-shadow: none;
    position: absolute;
    right: 5px;	
    border-radius: 50%;
    transform: translateY(15px);
}

#modalDesconto  .modal-content {
	background: none ;
	border: none;
}





    /* ── PÓS-GRADUAÇÃO ── */
    .posgrad { background: var(--dark); }
    .posgrad-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .posgrad-img-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
    .posgrad-img-wrap img {
      width: 100%;
      max-width: 460px;
      border-radius: 12px;
      filter: drop-shadow(0 16px 48px rgba(0,0,0,0.6));
    }
    .posgrad-content .section-label { margin-bottom: 12px; }
    .posgrad-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(24px, 3.5vw, 36px);
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 24px;
      color: var(--white);
    }
    .posgrad-content h2 em {
      font-style: normal;
      color: var(--gold);
    }
    .posgrad-content p {
      font-size: 16px;
      color: #bbb;
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .posgrad-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
      justify-content: center;
    }
    .posgrad-tag {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,168,76,0.1);
      border: 1px solid var(--gold-dark);
      color: var(--gold);
      font-size: 13px;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 30px;
    }
    @media (max-width: 768px) {
      .posgrad-inner { grid-template-columns: 1fr; gap: 32px; }
      .posgrad-img-wrap img { max-width: 320px; }
    }

    /* ── CURRICULUM ── */
    .curriculum { background: var(--dark-2); }
    .curriculum-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 40px;
    }
    .curriculum-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: var(--dark-3);
      border: 1px solid #2a2a2a;
      border-radius: 8px;
      padding: 16px 18px;
      font-size: 14px;
      color: #ccc;
      line-height: 1.5;
    }
    .curriculum-list li .check {
      color: var(--gold);
      font-size: 16px;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .curriculum-list li strong { color: var(--white); }

    /* ── BONUSES ── */
    .bonuses { background: var(--dark); }
    .bonus-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 48px;
    }
    .bonus-card {
      background: var(--dark-3);
      border: 1px solid #2a2a2a;
      border-radius: 10px;
      padding: 28px 24px;
      position: relative;
      overflow: hidden;
    }
    .bonus-card::before {
      content: 'BÔNUS';
      position: absolute;
      top: 14px; right: -22px;
      background: var(--gold);
      color: var(--dark);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1.5px;
      padding: 4px 30px;
      transform: rotate(45deg);
    }
    .bonus-icon { font-size: 28px; margin-bottom: 14px; }
    .bonus-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }
    .bonus-text { font-size: 14px; color: #aaa; line-height: 1.6; }

    /* ── TESTIMONIALS ── */
    .testimonials { background: var(--dark-2); }
    .testimonial-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 48px;
    }
    .testimonial-card {
      background: var(--dark-3);
      border: 1px solid #2a2a2a;
      border-radius: 10px;
      padding: 28px 24px;
    }
    .testimonial-quote {
      font-size: 32px;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 12px;
      font-family: 'Playfair Display', serif;
    }
    .testimonial-text {
      font-size: 15px;
      color: #ccc;
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }
    .testimonial-text strong { color: var(--white); font-style: normal; }
    .testimonial-author {
      font-size: 13px;
      font-weight: 700;
      color: var(--gold);
    }
    .testimonial-role { font-size: 12px; color: var(--gray); margin-top: 2px; }

    /* ── FOR WHOM ── */
    .for-whom { background: var(--dark); }
    .for-whom-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 48px;
    }
    .for-whom-list li {
      display: flex;
      align-items: center;
      gap: 16px;
      background: var(--dark-3);
      border: 1px solid #2a2a2a;
      border-radius: 8px;
      padding: 18px 22px;
      font-size: 16px;
      color: #ddd;
    }
    .for-whom-list li .arrow {
      color: var(--gold);
      font-size: 18px;
      flex-shrink: 0;
    }

    /* ── MENTOR ── */
    .mentor { background: var(--dark-2); }
    .mentor-inner {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 48px;
      align-items: start;
    }
    .mentor-photo {
      width: 100%;
      border-radius: 10px;
      border: 2px solid var(--gold-dark);
      
      
      background: var(--dark-3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray);
      font-size: 13px;
      text-align: center;
    }
    .mentor-name {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 900;
      margin-bottom: 6px;
    }
    .mentor-title { color: var(--gold); font-size: 14px; font-weight: 600; margin-bottom: 20px; }
    .mentor-credentials {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 24px;
    }
    .credential {
      background: rgba(201,168,76,0.1);
      border: 1px solid var(--gold-dark);
      color: var(--gold);
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 30px;
    }
    .mentor-bio { font-size: 15px; color: #bbb; line-height: 1.8; }

    /* ── PRICING ── */
    .pricing { background: var(--dark); }
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 40px;
    }
    .price-card {
      background: var(--dark-3);
      border: 1px solid #2a2a2a;
      border-radius: 12px;
      padding: 36px 32px;
      text-align: center;
      position: relative;
    }
    .price-card.featured {
      border-color: var(--gold);
      background: linear-gradient(160deg, #1c1a10 0%, var(--dark-3) 100%);
    }
    .price-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--dark);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 20px;
      border-radius: 30px;
      white-space: nowrap;
    }
    .price-name {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 20px;
    }
    .price-from {
      font-size: 13px;
      color: var(--gray);
      text-decoration: line-through;
      margin-bottom: 4px;
    }
    .price-installment {
      font-size: 15px;
      color: #bbb;
      margin-bottom: 4px;
    }
    .price-installment strong {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      color: var(--white);
      font-weight: 900;
    }
    .price-or { font-size: 13px; color: var(--gray); margin: 8px 0; }
    .price-cash {
      font-size: 20px;
      font-weight: 800;
      color: var(--gold);
      margin-bottom: 28px;
    }
    .price-features {
      list-style: none;
      text-align: left;
      margin-bottom: 32px;
    }
    .price-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: #ccc;
      padding: 8px 0;
      border-bottom: 1px solid #2a2a2a;
    }
    .price-features li:last-child { border-bottom: none; }
    .price-features li .check { color: var(--gold); flex-shrink: 0; }

    /* ── GUARANTEE ── */
    .guarantee { background: var(--dark-2); }
    .guarantee-inner {
      display: flex;
      align-items: center;
      gap: 40px;
      background: var(--dark-3);
      border: 1px solid #2a2a2a;
      border-radius: 12px;
      padding: 40px 44px;
    }
    .guarantee-icon {
      font-size: 72px;
      flex-shrink: 0;
      line-height: 1;
    }
    .guarantee-title {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .guarantee-text { font-size: 15px; color: #bbb; line-height: 1.7; }

    /* ── FAQ ── */
    .faq { background: var(--dark); }
    .faq-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }
    .faq-item {
      background: var(--dark-3);
      border: 1px solid #2a2a2a;
      border-radius: 8px;
      overflow: hidden;
    }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      color: var(--white);
      font-size: 16px;
      font-weight: 600;
      padding: 20px 24px;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-family: 'Inter', sans-serif;
    }
    .faq-q:hover { color: var(--gold); }
    .faq-arrow { color: var(--gold); font-size: 18px; flex-shrink: 0; transition: transform 0.2s; }
    .faq-a {
      display: none;
      padding: 0 24px 20px;
      font-size: 15px;
      color: #bbb;
      line-height: 1.7;
      border-top: 1px solid #2a2a2a;
    }
    .faq-item.open .faq-a { display: block; }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }

    /* ── FINAL CTA ── */
    .final-cta {
      background: linear-gradient(160deg, #1a1208 0%, #0D0D0D 100%);
      padding: 100px 20px;
      text-align: center;
      border-top: 1px solid #2a2a2a;
    }
    .final-cta .section-title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 20px; }
    .final-cta .section-sub { margin: 0 auto 40px; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark-2);
      border-top: 1px solid #222;
      padding: 32px 20px;
      text-align: center;
      font-size: 13px;
      color: var(--gray);
    }
    footer a { color: var(--gray); text-decoration: underline; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .problem-grid, .pillars, .curriculum-list,
      .bonus-grid, .testimonial-grid, .pricing-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .mentor-inner { grid-template-columns: 1fr; }
      .mentor-photo { max-width: 240px; }
      .guarantee-inner { flex-direction: column; text-align: center; }
      .hon-table { font-size: 13px; }
      .hon-table th, .hon-table td { padding: 12px 14px; }
    }
    @media (max-width: 480px) {
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .hero { padding: 60px 20px 50px; }
      section { padding: 60px 20px; }
    }



    .atendimento{
	position: fixed;
	bottom: -300px;
	right: 100px;
	z-index: 99999;
}


.atendimento .icone::before{
	background-color: #26CC64;
	border: 4.5px #00800066 solid;		
	border-radius: 50%;		
	width: 65px !important;
	height: 65px !important;			
	content: "";
	display: flex;
	z-index: -1;
	position: absolute;
}


.atendimento .icone{		
	position: absolute;
	border-radius: 50%;		
	width: 60px;
	height: 60px;			
	color: #FFF;
	font-size: 36px;
	display: flex;
	justify-content: center;
	align-items: center;

}


.atendimento .icone::before{
	animation: girar 16s infinite linear;
	transform: rotate(30deg);
}		




    /* ── HEADER ── */
    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .section-title em { font-style: normal; color: var(--gold); }
    .section-sub {
      font-size: 17px;
      color: #aaa;
      max-width: 640px;
      margin-bottom: 48px;
      line-height: 1.7;
    }

    /* ── COUNTER BADGE ── */
    .modulos-count {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,168,76,0.1);
      border: 1px solid var(--gold-dark);
      color: var(--gold);
      font-size: 13px;
      font-weight: 700;
      padding: 7px 18px;
      border-radius: 30px;
      margin-bottom: 40px;
    }

    /* ── LAYOUT GRID ── */
    .modulos-layout {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 56px;
      align-items: start;
    }

    /* ── LEFT PANEL ── */
    .left-panel {}
    .course-visual {
      background: linear-gradient(145deg, #1a1208 0%, #1c1c1c 100%);
      border: 1px solid #2a2a2a;
      border-radius: 14px;
      padding: 32px 28px;
      margin-bottom: 28px;
    }
    .course-visual-icon {
      font-size: 52px;
      margin-bottom: 16px;
      display: block;
    }
    .course-visual-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .course-visual-title span { color: var(--gold); }
    .course-visual-desc {
      font-size: 14px;
      color: #999;
      line-height: 1.7;
    }
    .course-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .course-stat {
      background: var(--dark-3);
      border: 1px solid #2a2a2a;
      border-radius: 10px;
      padding: 16px;
      text-align: center;
    }
    .course-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 4px;
    }
    .course-stat-label {
      font-size: 12px;
      color: var(--gray);
      line-height: 1.4;
    }

    /* ── ACCORDION ── */
    .accordion {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .acc-item {
      background: var(--dark-3);
      border: 1px solid #272727;
      border-radius: 10px;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .acc-item.open {
      border-color: rgba(201,168,76,0.4);
    }

    .acc-header {
      width: 100%;
      background: none;
      border: none;
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 600;
      padding: 18px 22px;
      text-align: left;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: background 0.15s;
    }
    .acc-header:hover { background: rgba(255,255,255,0.03); }
    .acc-item.open .acc-header { background: rgba(201,168,76,0.05); }

    .acc-num {
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      min-width: 24px;
      letter-spacing: 0.5px;
      flex-shrink: 0;
    }
    .acc-title { flex: 1; }
    .acc-icon {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1.5px solid #444;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 16px;
      flex-shrink: 0;
      transition: transform 0.25s, border-color 0.2s;
      line-height: 1;
    }
    .acc-item.open .acc-icon {
      transform: rotate(45deg);
      border-color: var(--gold);
    }

    .acc-body {
      display: none;
      padding: 0 22px 20px 62px;
      border-top: 1px solid #222;
    }
    .acc-item.open .acc-body { display: block; }

    .acc-lessons {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .acc-lessons li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      color: #aaa;
      padding: 9px 0;
      border-bottom: 1px solid #1e1e1e;
      line-height: 1.5;
    }
    .acc-lessons li:last-child { border-bottom: none; }
    .acc-lessons li::before {
      content: '·';
      color: var(--gold);
      font-size: 18px;
      line-height: 1.2;
      flex-shrink: 0;
    }
    .acc-lessons li strong { color: var(--white); font-weight: 600; }

    .acc-tag {
      display: inline-block;
      background: rgba(201,168,76,0.12);
      color: var(--gold);
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      margin-top: 10px;
    }

    /* ── CTA ── */
    .modulos-cta {
      margin-top: 40px;
      text-align: center;
    }
    .btn-primary {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
      color: var(--dark);
      font-weight: 800;
      font-size: 15px;
      padding: 16px 44px;
      border-radius: 6px;
      text-decoration: none;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(201,168,76,0.3);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(201,168,76,0.5);
    }
    .cta-note { font-size: 12px; color: var(--gray); margin-top: 10px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      .modulos-layout { grid-template-columns: 1fr; }
      .left-panel { order: 2; }
      .accordion { order: 1; }
    }

        /* ── HEADER ── */
    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .section-title em { font-style: normal; color: var(--gold); }
    .section-sub {
      font-size: 17px;
      color: #aaa;
      max-width: 660px;
      margin-bottom: 32px;
      line-height: 1.7;
    }

    /* ── MEC BADGE ── */
    .badges-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 44px;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,168,76,0.1);
      border: 1px solid var(--gold-dark);
      color: var(--gold);
      font-size: 13px;
      font-weight: 700;
      padding: 7px 18px;
      border-radius: 30px;
    }
    .badge.mec {
      background: rgba(192,57,43,0.1);
      border-color: rgba(192,57,43,0.4);
      color: #e05a4a;
    }

    /* ── LAYOUT GRID ── */
    .modulos-layout {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 56px;
      align-items: start;
    }

    /* ── LEFT PANEL ── */
    .course-visual {
      background: linear-gradient(145deg, #1a1208 0%, #1c1c1c 100%);
      border: 1px solid #2a2a2a;
      border-radius: 14px;
      padding: 32px 28px;
      margin-bottom: 20px;
      position: relative;
      overflow: hidden;
    }

    .pos-graduacao .course-visual::before {
      content: 'PÓS-GRADUAÇÃO';
      position: absolute;
      top: 16px; right: -28px;
      background: var(--gold);
      color: var(--dark);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1.5px;
      padding: 5px 36px;
      transform: rotate(45deg);
    }
    .course-visual-icon {
      font-size: 52px;
      margin-bottom: 16px;
      display: block;
    }
    .course-visual-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .course-visual-title span { color: var(--gold); }
    .course-visual-desc {
      font-size: 14px;
      color: #999;
      line-height: 1.7;
    }

    .mec-box {
      background: rgba(192,57,43,0.08);
      border: 1px solid rgba(192,57,43,0.3);
      border-radius: 10px;
      padding: 18px 20px;
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .mec-icon { font-size: 28px; flex-shrink: 0; }
    .mec-title {
      font-size: 14px;
      font-weight: 700;
      color: #e05a4a;
      margin-bottom: 4px;
    }
    .mec-text { font-size: 13px; color: #999; line-height: 1.5; }

    .course-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .course-stat {
      background: var(--dark-3);
      border: 1px solid #2a2a2a;
      border-radius: 10px;
      padding: 16px;
      text-align: center;
    }
    .course-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 4px;
    }
    .course-stat-label {
      font-size: 12px;
      color: var(--gray);
      line-height: 1.4;
    }

    /* ── ACCORDION ── */
    .accordion {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .acc-item {
      background: var(--dark-3);
      border: 1px solid #272727;
      border-radius: 10px;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .acc-item.open {
      border-color: rgba(201,168,76,0.4);
    }

    .acc-header {
      width: 100%;
      background: none;
      border: none;
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 600;
      padding: 18px 22px;
      text-align: left;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: background 0.15s;
    }
    .acc-header:hover { background: rgba(255,255,255,0.03); }
    .acc-item.open .acc-header { background: rgba(201,168,76,0.05); }

    .acc-num {
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      min-width: 24px;
      letter-spacing: 0.5px;
      flex-shrink: 0;
    }
    .acc-title { flex: 1; }
    .acc-icon {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1.5px solid #444;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 16px;
      flex-shrink: 0;
      transition: transform 0.25s, border-color 0.2s;
      line-height: 1;
    }
    .acc-item.open .acc-icon {
      transform: rotate(45deg);
      border-color: var(--gold);
    }

    .acc-body {
      display: none;
      padding: 0 22px 20px 62px;
      border-top: 1px solid #222;
    }
    .acc-item.open .acc-body { display: block; }

    .acc-lessons {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .acc-lessons li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      color: #aaa;
      padding: 9px 0;
      border-bottom: 1px solid #1e1e1e;
      line-height: 1.5;
    }
    .acc-lessons li:last-child { border-bottom: none; }
    .acc-lessons li::before {
      content: '·';
      color: var(--gold);
      font-size: 18px;
      line-height: 1.2;
      flex-shrink: 0;
    }
    .acc-lessons li strong { color: var(--white); font-weight: 600; }

    .acc-tag {
      display: inline-block;
      background: rgba(201,168,76,0.12);
      color: var(--gold);
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      margin-top: 10px;
    }
    .acc-tag.red {
      background: rgba(192,57,43,0.12);
      color: #e05a4a;
    }

    /* ── STEP INDICATOR ── */
    .step-indicator {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 32px;
      background: var(--dark-3);
      border: 1px solid #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
    }
    .step {
      flex: 1;
      padding: 14px 16px;
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      color: var(--gray);
      border-right: 1px solid #2a2a2a;
      position: relative;
    }
    .step:last-child { border-right: none; }
    .step.active {
      background: rgba(201,168,76,0.08);
      color: var(--gold);
    }
    .step-num {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 900;
      color: var(--gold);
      margin-bottom: 2px;
    }

    /* ── CTA ── */
    .modulos-cta {
      margin-top: 40px;
      text-align: center;
    }
    .btn-primary {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
      color: var(--dark);
      font-weight: 800;
      font-size: 15px;
      padding: 16px 44px;
      border-radius: 6px;
      text-decoration: none;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(201,168,76,0.3);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(201,168,76,0.5);
    }
    .cta-note { font-size: 12px; color: var(--gray); margin-top: 10px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      .modulos-layout { grid-template-columns: 1fr; }
    }






    

@media(max-width: 991.9px){

    .depoimentos .depoimentos_videos h3{
        font-size: 0.8rem !important;            
    }

    .depoimentos .owl-dot {
        width: 5px;
        height: 5px;
        background-color: #666 !important;
        margin: 2px;
        border-radius: 50%;
    }


        .atendimento{
        right: 60px;
    }

    .atendimento .icone::before{
        width: 45px !important;
        height: 45px !important;			
    }

    .atendimento .icone{		
        width: 40px;
        height: 30px;			
        font-size: 25px;        
    
    }


    
}

