/* Contorno branco para palavra em destaque nos banners da home */
.destaque-contorno {
    text-shadow:
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff;
    font-weight: bold;
}

/* Filtro preto e branco para imagens dos banners da home */
.banner-pb {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    transition: filter 0.3s;
}

/* Card Alunos Impactados - vermelho, texto branco em todos os temas */
.card-impactados {
    background: #d90429 !important;
    color: #fff !important;
}

.card-impactados h2,
.card-impactados p,
.card-impactados i {
    color: #fff !important;
}

/* Card Aulas Ministradas - texto preto sempre */
.card-aulas {
    color: #111 !important;
}

.card-aulas h2,
.card-aulas p,
.card-aulas i {
    color: #111 !important;
}

/********** Template CSS **********/
/* Regras globais para títulos */
h1 {
    font-weight: bolder !important;
}

h2 {
    font-weight: bold !important;
}

/* Nota: Variáveis de tema movidas para theme-toggle.css */

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 18px !important;

    /* Garantir que não fique alinhado à direita por sobreposição */
    bottom: 18px;
    z-index: 99;
}

@media (max-width: 480px) {
    .back-to-top {
        left: 12px !important;
        bottom: 12px;
    }
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        top: -6px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* Estilos para dropdown mobile */
@media (max-width: 991.98px) {
    .navbar .nav-item .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        background-color: rgba(10, 77, 140, 0.1);
        border-left: 3px solid var(--primary);
        margin-left: 15px;
        padding: 10px 0;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item {
        padding: 10px 20px;
        color: #060315;
        font-size: 14px;
        text-transform: none;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        background-color: rgba(10, 77, 140, 0.1);
        color: var(--primary);
    }

    .navbar .nav-item .dropdown-menu .dropdown-header {
        padding: 8px 20px;
        font-size: 11px;
        font-weight: 600;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .navbar .nav-item .dropdown-menu .dropdown-divider {
        margin: 8px 20px;
        border-top: 1px solid rgba(10, 77, 140, 0.2);
    }
}

/* Estilos para dropdown desktop */
@media (min-width: 992px) {
    .navbar .dropdown-menu {
        background-color: #fff;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        border-radius: 0;
        padding: 0;
    }

    .navbar .dropdown-menu .dropdown-item {
        padding: 12px 20px;
        color: #060315;
        font-size: 14px;
        text-transform: none;
        transition: .3s;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar .dropdown-menu .dropdown-item:last-child {
        border-bottom: none;
    }

    .navbar .dropdown-menu .dropdown-item:hover {
        background-color: var(--primary);
        color: #fff;
    }

    .navbar .dropdown-menu .dropdown-header {
        padding: 8px 20px;
        font-size: 11px;
        font-weight: 600;
        color: var(--secondary);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .navbar .dropdown-menu .dropdown-divider {
        margin: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
}



/*** Header ***/
.header-carousel .owl-carousel-item {
    position: relative;
    max-height: 75vh;
    overflow: hidden;
}

.header-carousel .owl-carousel-item img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
        max-height: none;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service, Price & Team ***/
.service-item,
.price-item,
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item img,
.team-item img {
    transition: .5s;
}

.service-item:hover img,
.team-item:hover img {
    transform: scale(1.1);
}

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
}

.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
}

.team-item div.btn-slide span a i {
    padding: 0 10px;
}

.team-item div.btn-slide span a:hover i {
    background: var(--secondary);
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
    padding-left: 0;
    left: -100%;
    z-index: 1;
}

.service-item:hover a.btn-slide i,
.price-item:hover a.btn-slide i,
.team-item:hover div.btn-slide i {
    border-radius: 0;
}

.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
    left: 0;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span {
    background: var(--secondary);
}

/* Team social icons */
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 77, 140, 0.9);
    transition: .5s;
    opacity: 0;
}

.team-item:hover .team-social {
    opacity: 1;
}

.team-item .team-social .btn-square {
    margin: 0 5px;
    transform: translateY(20px);
    transition: .3s;
}

.team-item:hover .team-social .btn-square {
    transform: translateY(0);
}

.team-item .team-social .btn-square:nth-child(1) {
    transition-delay: 0.1s;
}

.team-item .team-social .btn-square:nth-child(2) {
    transition-delay: 0.2s;
}

.team-item .team-social .btn-square:nth-child(3) {
    transition-delay: 0.3s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    animation: pulse 1s ease-out .5s;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact-page {
        max-width: 100% !important;
    }

    .contact-page .contact-form {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5));
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

/*** Select2 Custom Styles ***/
.select2-container--default .select2-selection--single {
    height: 55px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background-color: #fff !important;
    padding: 0 15px !important;
    font-size: 14px !important;
    line-height: 55px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #6c757d !important;
    line-height: 53px !important;
    padding-left: 0 !important;
    padding-right: 20px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d !important;
    line-height: 53px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 53px !important;
    right: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #6c757d transparent transparent transparent !important;
    border-width: 5px 5px 0 5px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #6c757d transparent !important;
    border-width: 0 5px 5px 5px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    right: 30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #6c757d !important;
    font-size: 16px !important;
}

.select2-dropdown {
    border: 1px solid #ced4da !important;
    border-radius: 0 !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.select2-container--default .select2-results__option {
    padding: 8px 15px !important;
    font-size: 14px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary) !important;
    color: #fff !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--secondary) !important;
    color: #fff !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da !important;
    border-radius: 0 !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    height: auto !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(10, 77, 140, 0.25) !important;
}

/*** Criteria Page ***/
.criteria-item {
    transition: all 0.3s ease;
    background: #fff;
}

.criteria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(10, 77, 140, 0.15) !important;
}

.criteria-item .btn-lg-square {
    width: 60px;
    height: 60px;
}

.criteria-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

.list-group-numbered .list-group-item {
    border: 1px solid rgba(10, 77, 140, 0.1);
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}

.list-group-numbered .list-group-item:hover {
    background-color: rgba(10, 77, 140, 0.05);
}

/*** Timeline ***/
.main-timeline {
    position: relative;
}

/* The actual timeline (the vertical ruler) */
.main-timeline::after {
    content: "";
    position: absolute;
    width: 4px;
    background-color: var(--secondary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

/* Container around content */
.timeline {
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* The circles on the timeline */
.timeline::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    right: -15px;
    background-color: var(--primary);
    border: 5px solid var(--secondary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

/* Place the container to the left */
.left {
    padding: 0px 40px 20px 0px;
    left: 0;
}

/* Place the container to the right */
.right {
    padding: 0px 0px 20px 40px;
    left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
    content: " ";
    position: absolute;
    top: 18px;
    z-index: 1;
    right: 30px;
    border: medium solid var(--light);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--light);
}

/* Add arrows to the right container (pointing left) */
.right::before {
    content: " ";
    position: absolute;
    top: 18px;
    z-index: 1;
    left: 30px;
    border: medium solid var(--light);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--light) transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
    left: -15px;
}

.timeline .card {
    border: none;
    box-shadow: 0 0 30px rgba(6, 3, 21, 0.1);
    transition: all 0.3s ease;
}

.timeline .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(10, 77, 140, 0.2);
}

.timeline .card-body h3 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline .card-body p {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.6;
}

/* Media queries - Responsive timeline on screens less than 768px wide */
@media screen and (max-width: 768px) {

    /* Place the timeline to the left */
    .main-timeline::after {
        left: 31px;
    }

    /* Full-width containers */
    .timeline {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    /* Make sure that all arrows are pointing leftwards */
    .timeline::before {
        left: 60px;
        border: medium solid var(--light);
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--light) transparent transparent;
    }

    /* Make sure all circles are at the same spot */
    .left::after,
    .right::after {
        left: 15px;
    }

    .left::before {
        right: auto;
    }

    /* Make all right containers behave like the left ones */
    .right {
        left: 0%;
    }
}

/*** Brackets - Estilos para chaves de batalha ***/
.brackets {
    width: 100%;
    min-height: 100%;
    font-family: "Arial", sans-serif;
}

.brackets>div {
    vertical-align: top;
    clear: both;
}

.brackets>div>div {
    float: left;
    height: 100%;
}

.brackets>div>div>div {
    margin: 50px 0;
}

.brackets div.bracketbox {
    position: relative;
    width: 100%;
    height: 100%;
    border-top: 1px solid #555;
    border-right: 1px solid #555;
    border-bottom: 1px solid #555;
}

.brackets div.bracketbox>span.info {
    position: absolute;
    top: 25%;
    left: 25%;
    font-size: 0.8em;
    color: #BBB;
}

.brackets div.bracketbox>span {
    position: absolute;
    left: 5px;
    font-size: 0.85em;
}

.brackets div.bracketbox>span.teama {
    top: -20px;
}

.brackets div.bracketbox>span.teamb {
    bottom: -20px;
}

.brackets div.bracketbox>span.teamc {
    bottom: 1px;
}

.brackets>.group2 {
    height: 260px;
}

.brackets>.group2>div {
    width: 49%;
}

.brackets>.group3 {
    height: 320px;
}

.brackets>.group3>div {
    width: 32.7%;
}

.brackets>.group4>div {
    width: 24.5%;
}

.brackets>.group5>div {
    width: 19.6%;
}

.brackets>.group6 {
    height: 2000px;
}

.brackets>.group6>div {
    width: 16.3%;
}

.brackets>div>.r1>div {
    height: 60px;
}

.brackets>div>.r2>div {
    margin: 80px 0 110px 0;
    height: 110px;
}

.brackets>div>.r3>div {
    margin: 135px 0 220px 0;
    height: 220px;
}

.brackets>div>.r4>div {
    margin: 250px 0 445px 0;
    height: 445px;
}

.brackets>div>.r5>div {
    margin: 460px 0 0 0;
    height: 900px;
}

.brackets>div>.r6>div {
    margin: 900px 0 0 0;
}

.brackets div.final>div.bracketbox {
    border-top: 0px;
    border-right: 0px;
    height: 0px;
}

.brackets>div>.r4>div.drop {
    height: 180px;
    margin-bottom: 0px;
}

.brackets>div>.r5>div.final.drop {
    margin-top: 345px;
    margin-bottom: 0px;
    height: 1px;
}

.brackets>div>div>div:last-of-type {
    margin-bottom: 0px;
}

/*** Podium Cards - Pódio de premiações ***/
.podium-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.podium-export-btn {
    display: none;
}

.podium-card:hover .podium-export-btn {
    display: inline-flex;
}


/* Botão de exportação do card de pódio */
.podium-export-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: opacity 0.2s;
}

.podium-export-btn:hover {
    opacity: 1;
    background: var(--primary);
    color: #fff;
}

/* Tema escuro para exportação */
.dark-theme .podium-card {
    background: #222;
    color: #fff;
}

.podium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.podium-card h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
    border-bottom: 3px solid var(--secondary);
    padding-bottom: 15px;
}

.podium-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    margin-top: 20px;
    min-height: 250px;
}

.podium-place {
    flex: 1;
    max-width: 180px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.podium-place.second {
    order: 1;
}

.podium-place.first {
    order: 2;
}

.podium-place.third {
    order: 3;
}

.podium-rank {
    font-size: 3rem;
    margin-bottom: 10px;
    line-height: 1;
}

.podium-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--dark);
    word-wrap: break-word;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podium-score {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.podium-base {
    border-radius: 8px 8px 0 0;
    padding: 15px 10px;
    font-weight: 700;
    color: white;
    position: relative;
}

.podium-place.first .podium-base {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podium-place.second .podium-base {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podium-place.third .podium-base {
    background: linear-gradient(135deg, #CD7F32 0%, #B8732D 100%);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podium-position {
    font-size: 2rem;
}

/* Responsivo para podium */
@media (max-width: 768px) {
    .podium-container {
        flex-direction: column;
        align-items: center;
        min-height: auto;
    }

    .podium-place {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .podium-place.second,
    .podium-place.first,
    .podium-place.third {
        order: unset;
    }

    .podium-place.first .podium-base,
    .podium-place.second .podium-base,
    .podium-place.third .podium-base {
        height: 100px;
    }
}

/* Template User Profile Bio Graph and Total Sales */
body {
    color: #797979;
    background: #f1f2f7;
    font-family: 'Open Sans', sans-serif;
    padding: 0px !important;
    margin: 0px !important;
    font-size: 13px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

.profile-nav,
.profile-info {
    margin-top: 30px;
}

.profile-nav .user-heading {
    background: #fbc02d;
    color: #fff;
    border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
    padding: 30px;
    text-align: center;
}

.profile-nav .user-heading.round a {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.profile-nav .user-heading a img {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
}

.profile-nav .user-heading h1 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 5px;
}

.profile-nav .user-heading p {
    font-size: 12px;
}

.profile-nav ul {
    margin-top: 1px;
}

.profile-nav ul>li {
    border-bottom: 1px solid #ebeae6;
    margin-top: 0;
    line-height: 30px;
}

.profile-nav ul>li:last-child {
    border-bottom: none;
}

.profile-nav ul>li>a {
    border-radius: 0;
    -webkit-border-radius: 0;
    color: #89817f;
    border-left: 5px solid #fff;
}

.profile-nav ul>li>a:hover,
.profile-nav ul>li>a:focus,
.profile-nav ul li.active a {
    background: #f8f7f5 !important;
    border-left: 5px solid #fbc02d;
    color: #89817f !important;
}

.profile-nav ul>li:last-child>a:last-child {
    border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
}

.profile-nav ul>li>a>i {
    font-size: 16px;
    padding-right: 10px;
    color: #bcb3aa;
}

.r-activity {
    margin: 6px 0 0;
    font-size: 12px;
}


.p-text-area,
.p-text-area:focus {
    border: none;
    font-weight: 300;
    box-shadow: none;
    color: #c3c3c3;
    font-size: 16px;
}

.profile-info .panel-footer {
    background-color: #f8f7f5;
    border-top: 1px solid #e7ebee;
}

.profile-info .panel-footer ul li a {
    color: #7a7a7a;
}

.bio-graph-heading {
    background: #fbc02d;
    color: #fff;
    text-align: center;
    font-style: italic;
    padding: 40px 110px;
    border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
    font-size: 16px;
    font-weight: 300;
}

.bio-graph-info {
    color: #89817e;
}

.bio-graph-info h1 {
    font-size: 22px;
    font-weight: 300;
    margin: 0 0 20px;
}

.bio-row {
    width: 50%;
    float: left;
    margin-bottom: 10px;
    padding: 0 15px;
}

.bio-row p span {
    width: 100px;
    display: inline-block;
}

/* Ranking score style */
.ranking-score {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    min-width: 88px;
}

.ranking-score .medal {

    display: inline-block;
    margin-right: 6px;
}

.ranking-score .position {
    color: var(--primary);
    display: block;
    font-size: 0.85rem;
}

.bio-chart,
.bio-desk {
    float: left;
}

.bio-chart {
    width: 40%;
}

.bio-desk {
    width: 60%;
}

.bio-desk h4 {
    font-size: 15px;
    font-weight: 400;
}

.bio-desk h4.terques {
    color: #4CC5CD;
}

.bio-desk h4.red {
    color: #e26b7f;
}

.bio-desk h4.green {
    color: #97be4b;
}

.bio-desk h4.purple {
    color: #caa3da;
}

.file-pos {
    margin: 6px 0 10px 0;
}

.profile-activity h5 {
    font-weight: 300;
    margin-top: 0;
    color: #c3c3c3;
}

.summary-head {
    background: #ee7272;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #ee7272;
}

.summary-head h4 {
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.summary-head p {
    color: rgba(255, 255, 255, 0.6);
}

ul.summary-list {
    display: inline-block;
    padding-left: 0;
    width: 100%;
    margin-bottom: 0;
}

ul.summary-list>li {
    display: inline-block;
    width: 19.5%;
    text-align: center;
}

ul.summary-list>li>a>i {
    display: block;
    font-size: 18px;
    padding-bottom: 5px;
}

ul.summary-list>li>a {
    padding: 10px 0;
    display: inline-block;
    color: #818181;
}

ul.summary-list>li {
    border-right: 1px solid #eaeaea;
}

ul.summary-list>li:last-child {
    border-right: none;
}

.activity {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

.activity.alt {
    width: 100%;
    float: right;
    margin-bottom: 10px;
}

.activity span,
.activity.alt span {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    background: #eee;
    text-align: center;
    color: #fff;
    font-size: 16px;
}

.activity.terques span {
    background: #8dd7d6;
}

.activity.terques h4 {
    color: #8dd7d6;
}

.activity.purple span {
    background: #b984dc;
}

.activity.purple h4 {
    color: #b984dc;
}

.activity.blue span {
    background: #90b4e6;
}

.activity.blue h4 {
    color: #90b4e6;
}

.activity.green span {
    background: #aec785;
}

.activity.green h4 {
    color: #aec785;
}

.activity h4 {
    margin-top: 0;
    font-size: 16px;
}

.activity p {
    margin-bottom: 0;
    font-size: 13px;
}

.activity .activity-desk i,
.activity.alt .activity-desk i {
    float: left;
    font-size: 18px;
    margin-right: 10px;
    color: #bebebe;
}

.activity .activity-desk {
    margin-left: 70px;
    position: relative;
}

.activity.alt .activity-desk {
    margin-right: 70px;
    position: relative;
}

.activity.alt .activity-desk .panel {
    float: right;
    position: relative;
}

.activity-desk .panel {
    background: #F4F4F4;
    display: inline-block;
}


.activity .activity-desk .arrow {
    border-right: 8px solid #F4F4F4 !important;
}

.activity .activity-desk .arrow {
    border-bottom: 8px solid transparent;
    border-top: 8px solid transparent;
    display: block;
    height: 0;
    left: -7px;
    position: absolute;
    top: 13px;
    width: 0;
}

.activity-desk .arrow-alt {
    border-left: 8px solid #F4F4F4 !important;
}

.activity-desk .arrow-alt {
    border-bottom: 8px solid transparent;
    border-top: 8px solid transparent;
    display: block;
    height: 0;
    right: -7px;
    position: absolute;
    top: 13px;
    width: 0;
}

.activity-desk .album {
    display: inline-block;
    margin-top: 10px;
}

.activity-desk .album a {
    margin-right: 10px;
}

.activity-desk .album a:last-child {
    margin-right: 0px;
}