:root {
    --color-black       : #000;
    --color-white       : #fff;
    --color-dark        : #011D3D;
    --color-light       : #f6f6f8;
    --color-light-2     : #f5f5f7;
    --color-primary     : #3476f9;
    --color-primary-25  : #457eef;
    --color-danger      : #d7605c;
    --color-danger-25   : #df706c;
    --color-warning     : #e7a650;
    --color-warning-25  : #eaae60;
    --color-success     : #112074;
    --color-success-25  : #142587;
}

.text-dark{color: var(--color-dark) !important;}
.pt-5 {padding-top: 4.5rem !important;}
.pb-5 {padding-bottom: 4.5rem !important;}
.txt-primary {color: var(--color-primary) !important;}
.txt-dark {color: var(--color-dark) !important;}
.text-success {color: var(--color-success) !important;}
.border-success{border-color: var(--color-success) !important;}
.btn-primary{background-color: var(--color-primary);border-color: var(--color-primary);}
.btn-primary:hover{background-color: var(--color-primary-25);}

.btn-warning{
    background-color: var(--color-warning);
    border-color: var(--color-warning);
    color: var(--color-white);
}

.btn-warning:hover{background-color: var(--color-warning-25);color: var(--color-white);}

.btn-outline-warning{
    background-color: transparent;
    border-color: var(--color-warning);
    color: var(--color-warning);
}

.btn-outline-warning:hover{background-color: var(--color-warning-25);color: var(--color-white);}
.btn-success{background-color: var(--color-success);border-color: var(--color-success);color: var(--color-white);}
.btn-success:hover{background-color: var(--color-success-25);color: var(--color-white);}

.btn-outline-success{
    background-color: transparent;
    border-color: var(--color-success);
    color: var(--color-success);
}

.btn-outline-success:hover{background-color: var(--color-success-25);color: var(--color-white);}

.btn-danger{
    background-color: var(--color-danger);
    border-color: var(--color-danger);
    color: var(--color-white);
}

.btn-danger:hover{
    background-color: var(--color-danger-25);
    background-color: var(--color-danger-25);
    color: var(--color-white);
}

.btn-dia,
.btn-dia-oradores{border-color: var(--color-success);color: var(--color-success);}

.btn-dia:hover,
.btn-dia-oradores:hover{color: var(--color-success);}

.btn-dia.active,
.btn-dia-oradores.active{
    background-color: var(--color-success);
    border-color: var(--color-success);
    color: var(--color-white);
}

.btn-dia.active:hover,
.btn-dia-oradores.active:hover{
    background-color: var(--color-success-25);
    background-color: var(--color-success-25);
    color: var(--color-white);
}

.bg-success{background-color: var(--color-success) !important;}
.bg-dark{background-color: var(--color-dark) !important;}
.rounded-2{border-radius: .85rem !important;}
.rounded-3{border-radius: 1rem !important;}
.text-succcess{color: var(--color-success);}

.text-truncate-3{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-radius: 0 !important;
    font-family: "Sofia Sans", sans-serif;
}

html {scroll-behavior: smooth;}
section {scroll-margin-top: 75px;}
html, body {height: 100%;margin: 0;}

body {
    display: flex;
    flex-direction: column;
    padding-top: 75px;
    color: var(--color-dark);
}

footer {background: var(--color-dark);color: var(--color-white);}
a {text-decoration: none;}
.text-muted {font-size: 0.95rem;}
p {font-size: 1.05rem;}
label {font-weight: 500;}
hr {background-color: var(--color-dark);}

.navbar-toggler {
    color: var(--color-white) !important;
    padding: .5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .4rem;
    border-radius: 4px !important;
}

.navbar-toggler span {
    width: 25px;
    height: .125rem;
    background-color: var(--color-dark);
}

#navbar {
    padding: 0 10px !important;
    min-height: 65px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(35px) saturate(235%) contrast(0.75);
    margin-top: 10px;
    border-radius: 8px !important;
    box-shadow: 0px 0px 3px 1px #7a878d38, inset 0 0 0 1px var(--color-light-2);
}

.navbar-brand {padding: 0 !important;}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 65px;
    position: relative;
    transition: .3s;
}

.nav-link {
    color: var(--color-dark) !important;
    padding: 0 15px !important;
    display: flex;
    align-items: center;
    height: 65px;
    font-weight: 500;
}

.dropdown-menu > .pag-active > a{color: var(--color-success) !important;}
.nav-link.dropdown-toggle.pag-active,
.nav-item.pag-active .nav-link {color: var(--color-success) !important;}

.nav-link.dropdown-toggle.pag-active::before,
.nav-item.pag-active .nav-link::after {
    content: "";
    z-index: 9999999999;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--color-success);
    bottom: 0px;
    left: 0;
}

.nav-item:hover {background-color: #fff;}

.nav-item-btn {
    background-color: var(--color-success);
    height: 42px !important;
    border-radius: 5px !important;
}

.nav-item-btn:hover {background-color: var(--color-success-25) !important;}
.nav-item-btn .nav-link {color: var(--color-white) !important;height: 45px !important;}
.navbar-toggler span {transition:.3s;}
.navbar-toggler:not(.collapsed) span:nth-child(1) {transform: translate(0, 9px) rotate(135deg);}
.navbar-toggler:not(.collapsed) span:nth-child(3) {transform: translate(0, -8px) rotate(-135deg);}
.navbar-toggler:not(.collapsed) span:nth-child(2) {opacity: 0;}

.dropdown-item {
    display: flex;
    font-weight: 500;
    height: 50px;
    align-items: center;
    border-top: 2px solid var(--color-light-2);
}

.dropdown-item:active {color: var(--color-success);background-color: var(--color-light-2);}

#user-name {
    white-space: nowrap;        
    overflow: hidden;           
    text-overflow: ellipsis;    
    max-width: 225px;           
}

@media only screen and (max-width: 992px) {
    .list-languages{
        position: absolute;
        top: 14px;
        right: 73px;
    }

    .container{padding-inline: 20px;}

    #navbar {
        width: 100%;
        padding: 15px !important;
        max-height: 95vh;
        overflow: auto ;
    }

    .nav-item {border-bottom: 1px solid var(--color-light-2);height: fit-content;}

    .nav-link{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-nav .dropdown-menu{
        width: 100%;
        border: 0;
        text-align: center;
    }

    .dropdown-item {
        width: 100%;
        height: 65px;
        justify-content: center;
    }

    .nav-item-btn {height: 65px !important;margin-bottom: 5px;}

    .nav-link.dropdown-toggle.pag-active::before,
    .nav-item.pag-active .nav-link::after{
        height: 100%;
        z-index: -1;
        background-color:var(--color-success);
        opacity: .15;
    }

    #login {margin-bottom: 20px;}

    #menu-details{margin-top: 25px;}
}

.scrollToTop {
    z-index: 999;
    position: fixed;
    bottom: 12px;
    right: 12px;
    color: var(--color-success);
    display: none;
    background-color: var(--color-light-2);
}

.scrollToTop:hover {color: var(--color-success-25);}
.scrollToTop i {font-size: 1.4rem !important;}

@media only screen and (max-width: 992px) {
    .menu-f,
    .contacts-f{display: block !important;}
}

.footer-link{color: var(--color-light);}
.footer-link:hover{color: var(--color-light-2);}
.copyright a{color: var(--color-success);}
.input-group-text{background-color: var(--color-light-2);color: var(--color-dark);}

.alert-success{
    border-color: var(--color-success);
    background-color: var(--color-success-25);
    color: var(--color-success);
}

.slick-slide {margin: 0 5px;}
.slick-list {margin: 0 -5px;}
.hero {color: var(--color-dark);padding: 150px 0 85px;}
#speakers{background: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.7)), url('../img/doted_bg.png') no-repeat top center / cover !important;}
.hero h1 {font-size: 3rem;font-weight: 700;}
.hero p {font-size: 1.2rem;margin-top: 15px;}
.agenda .card {transition: transform .2s;}
.agenda .card:hover {transform: translateY(-5px);}
.speaker{cursor: pointer;}

.speaker-img {
    object-fit: cover;
    border: 1px solid rgb(203, 203, 203);
    border-radius: 6px !important;
}

.slick-dots{bottom: -45px !important;}

.speaker-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.speaker-info {
    text-align: left;
    min-width: 0;           
    flex: 1;                
    word-wrap: break-word;  
    overflow-wrap: break-word; 
}

.descricao {
  display: -webkit-box;
  -webkit-line-clamp: 3;     
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media only screen and (max-width: 992px) {
    .speaker{margin: 0 !important;}
    .speaker-info{width: 100%;}

    .speaker > div{
        justify-content: center;
        text-align: center;
        flex-wrap: wrap !important;
    }

    .speaker-info {
        text-align: center;
        min-width: 100%;            
        flex: 1;                    
        word-wrap: break-word;      
        overflow-wrap: break-word;  
    }

    .countdown .card{width: 70px !important;padding: 10px 5px !important;}
    .countdown .small{font-size: 11px;}
}

@media only screen and (max-width: 768px) {
    .hero .img-cont{order: -1;}
    .hero{padding: 130px 0 70px;}
}

.slick-prev:before,
.slick-next:before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background-color: var(--color-success);
    opacity: 1;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    color: transparent !important;
}

.slick-prev:before {
    mask-image: url("../../../shared/icons_svg/left-chevron.svg");
    -webkit-mask-image: url("../../../shared/icons_svg/left-chevron.svg");
    transform: scale(2.2);
    transform-origin: center;
    margin-right: -5px;
}

.slick-next:before {
    mask-image: url("../../../shared/icons_svg/right-chevron.svg");
    -webkit-mask-image: url("../../../shared/icons_svg/right-chevron.svg");
    margin-left: -20px;
    transform: scale(2.2);
    transform-origin: center;
}

.timeline {padding-left: 30px;}

.timeline__line {
    content: "";
    position: absolute;
    top: 0;
    left: 7px;
    width: 2px;
    height: 100%;
    background: var(--color-success);
}

.timeline__item {position: relative;margin-bottom: 60px;}
.timeline__item:last-child{margin-bottom: 0;}
.timeline__item .info {position: relative;}

.timeline__item .dot {
    position: absolute;
    left: -30px;
    top: 0px;
    outline: 15px solid var(--color-white);
    background-color: var(--color-white);
    color: var(--color-success);
}

.timeline__item .time {
    font-weight: 700;
    color: var(--color-success);
    display: block;
    margin-bottom: 5px;
}

.timeline__item .title {font-size: 1.1rem;font-weight: 600;}
.form-select,
.form-control{height: 50px;}
.contador {color: var(--color-success);}
.slick-dots li.slick-active button:before {color:var(--color-success); }
.skiptranslate {display: none !important;}
.custom-select-wrapper {position: relative;display: inline-block;}

.custom-select {
    height: 42px;
    width: 42px;
    background: var(--color-light);
    border: 1px solid #ccc;
    border-radius: 6px !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.custom-select:hover {border-color: #666;}

.custom-options {
    position: absolute;
    top: 110%;
    left: 0;
    width: 42px;
    background: var(--color-light);
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    border-radius: 6px !important;
}

.custom-options .option {
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.custom-options .option:hover {background: var(--color-light-2);}