    /* Variáveis de Cores (Opcional, mas recomendado para manutenção futura) */
:root {
    --blue-primary: #2E2D69;
    --red-primary: #CE1B28;
    --dark-blue: #1D1D42;
    --dark-red: #A31720;
    --light-grey: #e3e3e3;
    --white: #fff;
    --light-color: #afafaf;
    --text-color-dark: #323537;
    --black: #000;
}

/* Base e Tipografia */
html, body {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Times New Roman" !important;
}

@font-face {
    font-family: 'Wide Latin';
    font-style: normal;
    font-weight: normal;
    src: local('Wide Latin'), url('../fonts/LATINWD.woff') format('woff');
}

a {
    text-decoration: none !important;
    transition: color 0.5s;
    font-family: "Inter" !important;
}

a:active,
a:focus-visible {
    color: var(--light-color);
    outline: 0 !important;
    border: none !important;
}

hr {
    border: 1px solid var(--light-grey);
}

textarea:focus,
input:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Utilitários de Cores e Fundo */
.text-blue {
    color: var(--blue-primary) !important;
}

.text-red {
    color: var(--red-primary) !important;
}

.border-blue {
    border-color: var(--blue-primary) !important;
}

.bg-blue {
    background-color: var(--blue-primary) !important;
}

.bg-blue-gradient {
    background-color: var(--blue-primary) !important; /* Fallback */
    background: linear-gradient(90deg, rgba(46, 45, 105, 1) 0%, rgba(29, 29, 66, 1) 50%);
}

.bg-blue-gradient-invert {
    background-color: var(--blue-primary) !important; /* Fallback */
    background: linear-gradient(90deg, rgba(29, 29, 66, 1) 0%, rgba(46, 45, 105, 1) 50%);
}

.bg-red-gradient {
    background: var(--red-primary); /* Fallback */
    background: linear-gradient(90deg, rgba(206, 27, 40, 1) 0%, rgba(163, 23, 32, 1) 50%);
}

.bg-red-gradient-invert {
    background: var(--dark-red); /* Fallback */
    background: linear-gradient(90deg, rgba(163, 23, 32, 1) 0%, rgba(206, 27, 40, 1) 50%);
}

/* Botões */
.btn {
    transition: all 0.3s;
}

.btn-action {
    color: var(--white);
    background-color: var(--blue-primary);
}

.btn-action-invert {
    color: var(--red-primary);
    background-color: var(--white);
}

.btn-action-invert-red {
    color: var(--white);
    background-color: var(--red-primary);
}


/* Hover Boões somente para desktop */
@media (min-width: 1140px) {
    .btn-action:hover {
        color: var(--blue-primary);
        transition: all 0.3s;
        background-color: var(--white);
    }
    .btn-action-invert:hover {
        color: var(--red-primary);
        transition: all 0.3s;
        background-color: var(--white);
    }
    .btn-action-invert-red:hover{
        color: var(--red-primary);
        transition: all 0.3s;
        background-color: var(--white);
    }
    .btn-light:hover { /* Estilo do arquivo style.css, aparentemente para botões claros */
        background-color: var(--blue-primary) !important;
    }
    
    .slick-slide > img:hover {
        margin: -10px 0 10px;
        transition: all 0.3s;
        cursor: pointer;
        box-shadow: none !important;
    }
    
    .action-color:hover {
        background-color: var(--light-grey);
        color: var(--blue-primary);
    }
    .item-list:hover {
        color: var(--red-primary);
    }
    a:hover {
        color: var(--light-color);
    }
}
/* Cursores */
.cursorPointer {
    cursor: pointer;
}

/* Estilos de Sucesso e Erro (Checkmark e X) */
.success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;
}

.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid var(--blue-primary);
}

.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 3.75s ease-in;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
    content: "";
    height: 100px;
    position: absolute;
    background: var(--white);
    transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: var(--blue-primary);
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 1s;
}

.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 1s;
}

.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(46, 45, 105, 0.5);
}

.success-checkmark .check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: var(--white);
}

/* Animações Checkmark */
@keyframes rotate-circle {
    0% { transform: rotate(-45deg); }
    5% { transform: rotate(-45deg); }
    12% { transform: rotate(-405deg); }
    100% { transform: rotate(-405deg); }
}

@keyframes icon-line-tip {
    0% { width: 0; left: 1px; top: 19px; }
    54% { width: 0; left: 1px; top: 19px; }
    70% { width: 50px; left: -8px; top: 37px; }
    84% { width: 17px; left: 21px; top: 48px; }
    100% { width: 25px; left: 14px; top: 45px; }
}

@keyframes icon-line-long {
    0% { width: 0; right: 46px; top: 54px; }
    65% { width: 0; right: 46px; top: 54px; }
    84% { width: 55px; right: 0px; top: 35px; }
    100% { width: 47px; right: 8px; top: 38px; }
}

.circle,
.circle-border {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.circle {
    z-index: 1;
    position: relative;
    background: var(--white);
    transform: scale(1);
    animation: success-anim 700ms ease;
}

.circle-border {
    z-index: 0;
    position: absolute;
    transform: scale(1.1);
    animation: circle-anim 400ms ease;
    background: var(--red-primary);
}

/* Animações Círculo */
@keyframes success-anim {
    0% { transform: scale(0); }
    30% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes circle-anim {
    from { transform: scale(0); }
    to { transform: scale(1.1); }
}

.error::before,
.error::after {
    content: "";
    display: block;
    height: 6px;
    background: var(--red-primary);
    position: absolute;
}

.error::before {
    width: 77px;
    top: 46%;
    left: 12%;
    transform: rotateZ(50deg);
}

.error::after {
    width: 77px;
    top: 45%;
    left: 12%;
    transform: rotateZ(-50deg);
}

#modulos{
  margin-top: 50px;
  font-size: 19px;
  font-weight: 700;
}
.modulo{
  margin: 20px 0 50px !important;
}
.titulo-modulo{
  margin: 0 0 20px 10px;
}

.slick-slide{
  margin:10px;
}
.slick-dots li button:before {
  color:grey;
}
.slick-initialized{
  visibility:visible;
  opacity:1;
}
.slick-track {
 margin-left: 0 !important;
}

.slick-slide>img{
  width:100%;
  transition: all 0.3s;
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, .08) !important;
}

.slick-disabled{
  display: none !important;
}
.slick-prev{
  left: 30px !important;
}
.slick-next{
  right: 30px !important;
}
.slick-prev, 
.slick-next {
  width: 55px !important;
  height: 55px !important;
  border-radius: 100px;
  background: #fff !important;
  z-index: 799;
}
.slick-prev:before,
.slick-next:before{
  font-family: 'Font Awesome 5 Free' !important;
  font-size: 40px !important;
  color: #dce0df !important;
  font-weight: 900;
}
.slick-next:before{
  content: '\f105' !important;
}
.slick-prev:before{
  content: '\f053' !important;
}

.slick-arrow{
  opacity: 0 !important;
  transition: .2s all;
}
.carousel>.col{
  width: 0;
}
.no-carousel-title{
  margin: 0 0 20px 0;
}

/* Layout e Componentes Específicos */
.action-color {
    background-color: var(--blue-primary);
    color: var(--white);
    transition: all 0.5s;
    border: none;
}



.bg-home {
    flex-shrink: 0;
    background-image: url(../images/bgComoAprender.png);
    background-position: center;
    background-size: cover;
    height: 95vh;
}

.bg-homeAulasGratuitas {
    flex-shrink: 0;
    background-image: url(../images/bgComoAprender.png);
    background-position: center;
    background-size: cover;
    min-height: 95vh;
}

.divLightMaterials{
    margin-top:-70px
}

.content {
    max-width: 1920px;
}

#inicio {
    padding: 125px 0 50px;
}

.title-class {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text-color-dark);
}

.subtitle-class {
    font-size: 16px;
    font-weight: 300;
}

.subtitle-class > a {
    color: var(--light-color) !important;
}

.collapse-classes {
    margin-top: 30px !important;
}

.accordion-item {
    border: none !important;
}

.accordion-body {
    padding: 15px 0 0 0 !important;
}

.accordion-header {
    cursor: pointer;
}

.item-list {
    height: 41px;
    color: var(--blue-primary);
}



.icon-finish {
    color: var(--blue-primary);
}

.icon-doing {
    color: var(--red-primary);
}

.fa-circle {
    margin-left: 3px;
}

.text-item-list {
    font-size: 14.5px;
    font-weight: 400;
    cursor: pointer;
}

.text-item-list-normal {
    color: var(--black);
}

.progressCircle {
    width: 25px;
    height: 25px;
    margin-left: -5px;
}

.active {
    color: var(--red-primary) !important;
    font-weight: bold;
}

.active > span {
    margin-left: 21px !important;
}

.text-finished {
    background-color: var(--blue-primary) !important;
    transition: all 0.3s;
    color: var(--white) !important;
    padding: 10px 15px;
}

/* Estilos de Páginas Específicas (extraídos do `index`) */
.bgInicio {
    background: url('../images/bgHome.png') center/cover no-repeat fixed;
    background-position: top;
    height: 100vh;
}

.titleInicio {
    color: var(--blue-primary);
}

.titleInicioSobre{
    color: var(--black);
}

       
.btnComprarAgora {
    margin-left: 80px;
}

.imgComprarAgora {
    margin-left: 90px;
    width: 90%;
}

.subtitleComprarAgora {
    margin-left: 70px;
}

.quadradoAzul {
    height: 100vh;
    max-width:600px;
}
.quadradoAzulSales {
    margin-top: -35%;
    height: 100vh;
    max-width:600px;
}
.etiqueta{
    width: 200%;
    
}

#freeClass {
    background: url('../images/bgHome2.png') left/cover no-repeat fixed;
    background-position: top;
    min-height: 90vh;
    box-shadow: inset 0px 0px 22px black;
}

.logoIav,       
.logoRodape {
    width: 400px;
}

.bgMatGrat{
    background: url('../images/bgComoAprender.png') center/cover no-repeat; 
    min-height: 100vh;
}

.imgClass{
    width:100%;
    height:auto;
}

.produtos{
    min-height: 60vh;
    box-shadow: inset 0px 0px 22px black;
}

.chooseMaterial{
    width: 100px;
    transition: transform 0.5s ease-in-out;
}

.divComprarCursoCompleto{
    background: url('../images/bg-red.jpeg') center/cover no-repeat; 
    padding-top:20px;
}

/* Media Queries */
@media (max-width: 1139px) {
    .bgInicio {
        background: url('../images/bgHome.png') center/cover no-repeat;
        height: 100vh;
    }
    .bg-home {
        flex-shrink: 0;
        background: none; /* Remove background-image para mobile, se necessário */
        background-color: var(--blue-primary);
        height: 95vh;
    }
    .bg-homeAulasGratuitas {
        flex-shrink: 0;
        background: none; /* Remove background-image para mobile, se necessário */
        background-color: var(--blue-primary);
        min-height: 95vh;
    }
    #inicio {
        padding: 160px 0 50px;
    }
    .titleInicioSobre,
    .titleInicio {
        color: var(--white);
    }
    .btnComprarAgora,
    .subtitleComprarAgora {
        margin-left: -10px;
        margin-top: -12vh;
    }
    .btnComprarAgoraSobre{
        margin-left: 0;
    }
    .imgComprarAgora {
        margin-left: 10px;
        width: 80%;
    }
    .quadradoAzul {
        height: auto;
        max-width: 100%;
    }
    .quadradoAzulSales {
        margin-top: -5%;
        height: auto;
        max-width: none;
    }
    .etiquetaMob{
        margin-top: -5%;
        width: 50%;
        max-width: 290px;
    }
    .adjMobile{
        margin-top: -40px;
    }
    #freeClass {
        background: none;
        background-color: var(--blue-primary);
        min-height: 90vh;
        box-shadow: inset 0px 0px 22px black;
    }
    
    .bgMatGrat{
        background: url('../images/bgHome.png') center/cover no-repeat; 
        min-height: 60vh;
    }
    .aulasMobile{
        background: none;
        background-color: #2E2D69 !important;
        min-height: 100vh;
        margin-top: -150px;
    }
    
    .imgClass{
        width:100%;
        height:auto;
    }
    
    .produtos{
        min-height: 65vh;
        box-shadow: inset 0px 0px 22px black;
    }
    .divComprarCursoCompleto{
        background: url('../images/bg-red.jpeg') center/cover no-repeat; 
        padding-top: 100px;
    }
    .logoIav,
    .logoRodape {
        width: 250px;
    }
    .rodape { 
        height: 65vh;
    }
    .menuMob {
        height: 80px;
        font-size: 25px;
        color: var(--blue-primary);
        cursor: pointer;
    }
}

@media (min-width: 768px) and (max-width: 1140px) {
    .divComprarCursoCompleto{
        padding-top: 100px;
    }
    .rodape { 
        height: 100%;
    }
    
}

@media (min-width: 960px) and (max-width: 1140px) {
    .imgComprarAgora {
        margin-left: none;
        width: 70%;
    }
    .bg-home {
        flex-shrink: 0;
        background-image: url(../images/bgComoAprender.png);
        background-position: center;
        background-size: cover;
    }
    
}
@media (min-width: 1400px) {
    .divLightMaterials{
        margin-top:-95px
    }
    .quadradoAzulSales {
        margin-top: -42%;
    }
    .etiqueta{
        width: 290px;
    }
}