@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


body {
    font-family: 'Roboto', sans-serif;
    /* overflow-x: hidden; */
}


strong {
    color: #0B2124;
}

a {
    color: #2A3D8E;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #3448a3;
    text-decoration: underline;
}

.modal-dialog-centered {
    align-items: start;
}

/*
    --------------------------------
    BRAND
 */


header {
    width: 100%;
    background: #fff;
}

.logo-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.logo-wrapper {
    width: 613px;
    height: 232px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    width: 613px;
    height: 232px;
    object-fit: contain;
}

.points-badge {
    position: absolute;
    right: 20px;
    bottom: -83.5px;
    width: 167px;
    height: 167px;
    z-index: 2;
}

.info-bar {
    background-color: #37BCED;
    padding: 12px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-bar p {
    color: #051728;
    font-size: 17px;
    line-height: 1.2rem;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}




@media (max-width: 768px) {
    .logo-wrapper {
        width: 100%;
        height: auto;
    }

    .main-logo {
        width: 100%;
        height: auto;
    }

    .points-badge {
        width: 80px;
        height: 80px;
        right: 0px;
        bottom: -30px;
    }

    .info-bar p {
        font-size: 14px;
        padding: 0 15px;
    }
}

@media (min-width:670px) and (max-width: 940px) {
    .points-badge {
        width: 110px;
        height: 110px;
        bottom: -66px;
    }
}


@media (max-width: 480px) {
    .points-badge {
        width: 70px;
        height: 70px;
    }

}



.hero {
    position: relative;
    background-image: url('img/header.jpg');
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    padding: 210px 0;
}


.hero h2 {
    font-size: 27px;
    line-height: 2rem;
    color: #fff;
    margin-bottom: 30px;
    max-width: 650px;
    text-transform: none;
}

.description {
    color: #fff;
    font-size: 17px;
    line-height: 1.6rem;
    max-width: 650px;
    margin-bottom: 40px;
}

.description p {
    margin-bottom: 20px;
}

.button-group {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2rem;
    border-radius: 26px;
    transition: transform 0.3s ease;
}

.btn-black {
    background-color: #051728;
    color: #fff;
    padding: 12px 40px;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #37BCED;
    color: #051728;
    padding: 16px 40px;
    border: none;
    font-weight: bold;
}

.btn-outline {
    background-color: transparent;
    color: #37BCED;
    padding: 16px 30px;
    border: 1px solid #37BCED;
    font-weight: bold;
}

.btn:hover {
    transform: scale(1.05);
    color: #fff;
    background: #37BCED;
    border-color: #37BCED;
}

.btn:active {
    background-color: #37BCED !important;
    border-color: #37BCED !important;
}

.btn:focus {
    outline: none;
    box-shadow: none !important;
}


.scroll-indicator {
    position: absolute;
    right: 30px;
    bottom: 16%;
    cursor: pointer;
}

.arrow-container {
    width: 31px;
    height: 60px;
    border: 2px solid #ffffff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow {
    width: 32px;
    height: 32px;
    animation: arrowAnimation 2s ease-in-out infinite;
}

@keyframes arrowAnimation {
    0% {
        transform: translateY(-5px);
        opacity: 1;
    }

    50% {
        transform: translateY(5px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .hero h2 {
        font-size: 22px;
    }

    .description {
        font-size: 16px;
    }

    .button-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }
}

.title-p {
    color: #37BCED;
}

.inscricao-section {
    background: #EEEAE6;
    padding-bottom: 60px;
}


.inscricao-button-container {
    text-align: center;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.inscricao-button {
    background: linear-gradient(to right, #37BCED, #0C91C4);
    border-radius: 425px;
    color: white;
    border: none;
    padding: 20px 80px;
    font-size: 24px;
    font-weight: bold;
    max-width: 430px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0px 3px 12px #00000029;
}

.inscricao-button:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #37BCED, #0C91C4);
    color: white;
}

.inscricao-container {
    max-width: 800px;
    margin: 0 auto;
}

.inscricao-card {
    background: white;
    padding: 10%;
    border-radius: 10px;
    position: relative;
    margin-top: -150px;
    z-index: 10;
    box-shadow: 0px 3px 16px #00000029;
}

.inscricao-card h2 {
    color: #37BCED;
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: bold;
}

.inscricao-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.inscricao-table th {
    background: #E8EDE8;
    padding: 15px;
    text-align: left;
    font-weight: normal;
    font-size: 16px;
}

.inscricao-table td {
    padding: 10px 15px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.inscricao-info {
    text-align: center;
    margin: 20px 0;
    color: #333;
}

.warning-container,
.payment-section,
.cancellation-container {
    font-size: 80%;
}

.warning-container p,
.payment-section p,
.cancellation-container p {
    margin-bottom: 0;
}

.warning-container {
    margin: 30px 0;
}

.warning-item {
    padding: 10px 15px;
    background: #f8f9fa;
    margin-bottom: 2px;
    position: relative;
}

.warning-orange::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #FF8700;
}

.payment-section {
    margin: 30px 0;
}

.payment-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
}

.payment-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.cancellation-container {
    background: #f8f9fa;
    position: relative;
    padding: 20px;
    margin-top: 30px;
}

.cancellation-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #dc3545;
}

.cancellation-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.cancellation-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .inscricao-table {
        font-size: 14px;
    }

    .info-card-wrapper {
        padding: 0 1%;
    }

    .inscricao-button {
        padding: 20px 24px;
        width: 100%;
        font-size: 20px;
    }
}

@media (max-width: 996px) {
    .inscricao-card {
        padding: 60px 20px;
        margin-top: 0;
    }
}

.division {
    border: 1px solid #C7C6C6;
    width: 100%;
    display: block;
    margin: 40px 0;
}


/* header {
    position: relative;
    background-color: #121325;
    color: #4e000e;
    background-image: url(img/header-bg1.jpg)!important;
    background-size: cover;
    background-position: center center;
    z-index: 5;
}

header #nav {
    margin: 0;
    background-color:#013062;;
    box-shadow: 0px 8px 13px 0px rgba(0,0,0,0.52)
}

.is-sticky #nav {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.31);
    
}

#nav ul {
    padding: 0;
    margin: 0;
}

#nav li {
}

#nav a, #nav a:link, #nav a:visited {
    color: #fff;
    display: block;
    background-color: #013062;
    text-align: center;
    padding: 7px;
    font-weight: 700;
    text-transform: uppercase;
}

#nav a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.18);
    text-decoration: none;
    cursor: pointer;
}

#nav a[disabled], #nav a[disabled]:hover {
    color: #ececec;
    background-color: rgba(5, 36, 83, 0.17);
    cursor: default;
}

.brand {
    text-align: center;
    padding: 10% 20px 17% 20px;
    position: relative;
    color: white;
}

.brand .splash {
    margin-bottom: -30px;
    
}

.splash{
   @media (min-width: 996px){
	 position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(50%, 50%);
		
	}
;
   align-items: center;
   text-align: center;
} */

.logo-container {
    /* border: solid yellow 1px; */
    position: relative;
    z-index: 3;
}

.logo-container__logo {
    position: relative;
    /* border: solid 2px red; */
}

.brand .splash img {}

.brand h1 {

    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 0;
    text-shadow: 1px 0px 5px #000000b8;
}

.brand h1 small {}


.brand .date {
    font-family: Montserrat;
    text-align: center;
    border-top: #10c3fd solid 5px;
    padding: 20px 0 0 0;
    margin: 22px 0px 0;
    color: #D7DED8;

}

.date h3 {
    font-size: 1.7em !important;
}

#resumos {
    background-color: # color: #fff;

    & h2,
    & h3 {
        color: #fff;
        text-transform: none;
    }

    @media (min-width: 996px) {
        padding-bottom: 250px;

        & h2 {
            text-align: center;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    ;
    position: relative;
    z-index: 1;
}


#resumos h2,
#resumos h3 {
    color: #051728;
}

#resumos li,
#resumos p {
    color: #051728;
}

#resumos>.container {
    margin-top: -3rem;
}

#resumos .intro-img {
    /* border: solid red 1px; */
    object-fit: cover;
    object-position: center;
    height: 50vh;

    @media (min-width: 996px) {
        height: auto;
    }
}

.box-cronograma {
    border: solid 1px #26466454;
    padding: 40px;
    font-size: 0.9em;
    background: #D3EBF5;

    & a,
    & a:visited {
        color: #051728;
        text-decoration: underline;
    }
}





/*
    --------------------------------
    HIGHLIGHT
 */
.highlight-banner {
    background-color: #cc430d;
    display: block;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.highlight-banner .badge {
    color: #cc430d;
    font-size: 1em;
}

/*
    --------------------------------
    BUTTONS
 */
.btn {}

.btn-primary {
    background-color: #10c3fd;
    border: 1px solid #10c3fd;
    text-transform: uppercase;
}

.btn-secondary {}

/*
    --------------------------------
    MENU
 */
#header #nav {
    /*colors*/
    color: #262239;
}

/*
    --------------------------------
    HEADINGS
 */
h2 {
    color: #262239;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5em;
    font-size: 1.8em;
}

h2>span {
    color: #6d738b;
}

h2::before,
h2::after {}

h2.text-left::after {
    display: none;
}

.iziModal-header-title::before,
.iziModal-header-title::after {
    display: none;
}

.brand h3 {}

h3 small {}

.border_title::before {
    content: "";
    display: block;
    border-left: solid #fff 1px;
    position: absolute;
    height: 60%;
    left: -8px;
}

.text-big {
    font-size: 1.2em;
    line-height: 1.3em;
    font-weight: 700;
    /* margin-bottom: 100px; */
    /* padding-top: 80px; */
    /* padding-left: 12px; */
}

.text-med {
    /* border-left: solid #d8b5ea 3px; */
    /* padding: 0 0 0 10px; */
    /* margin: 1em; */
}

.text-small {
    font-size: .8em;
    line-height: 1.3em;
}

.small-title {
    text-transform: uppercase;
}

.realizacao a,
.patrocinio-prata a {
    margin-right: 15px;
    margin-left: 15px;
    display: inline-block;
    padding: 1rem 0;
}

.link-patrocinio img {
    max-width: 140px;
}

/*
    --------------------------------
    TABLE
 */
.table {
    font-size: 0.9em;
}

.abc-table {
    max-width: 600px;
    margin: 0 auto;
}

.table td,
.table th,
.table thead th {
    border-color: #fff;
}

.table td small,
.table th small,
.table thead th small {
    display: block;
    line-height: 1em;
}

.table thead tr {
    background-color: #a9b8bd;
    text-transform: uppercase;
    color: #fff;
}

.table tr {
    background-color: #f1f5f7;
}

.table .highlight td {
    background-color: #d7e5ec;
}


.speaker-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
  }
  
  .speaker-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }

.td-ouro,
.td-prata,
.td-bronze {
    text-align: center;
}

th.td-ouro {
    background-color: goldenrod;
}

th.td-prata {
    background-color: gray;
}

th.td-bronze {
    background-color: #C77B30;
}

td.td-ouro {
    vertical-align: middle;
    background-color: #daa52033;
}

td.td-prata {
    vertical-align: middle;
    background-color: #80808036;
}

td.td-bronze {
    vertical-align: middle;
    background-color: #c77b3047;
}

td.td-ouro .check,
td.td-prata .check,
td.td-bronze .check {
    width: 16px;
    fill: #5da14c;
}

/*
    --------------------------------
    CARD
 */
.place-card {
    background-color: #fff;
    padding: 1.5rem 0 1.5rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.38);
    position: relative;
    width: 100%;
    border-radius: 5px;
    /* margin-top: 3.5em; */
}


.place-card .card-section {
    padding: 15px;
    color: #262239;
}

.place-card .card-section .title {
    border-left: solid 5px #37BCED;
    padding-left: 12px;
    font-size: 0.9em;
    color: #10c3fd;
    margin-left: -15px;
}

.place-card .card-section p {
    margin-bottom: .5rem;
    font-size: 0.9em;
    color: #262239;
}

.card-deck .card-subtitle {
    color: #e48ea2;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9em;
}

.card-deck .card-title {
    color: #0256a4;
    font-weight: 700;
    margin-top: 1rem;
}

.card-deck .card-text {
    font-size: 0.8em;
}

.card-deck .card-text a {
    display: inline-block;
    margin-right: 0.7em;
}

.card-deck i[class*=icon-] {
    font-size: 2em;
}

footer {
    border-top: #eee solid 1px;
    margin: 40px 0 0 0;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9em;
    color: rgb(148, 148, 148);
}

footer a:link,
footer a:visited {
    color: inherit;
}

footer img {
    /* margin: 1em 1.6em; */
    max-width: 100%;
    /* width: 100%; */
}

.section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-objetivo {
    background-image: url(img/intro-bg.jpg) !important;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    color: #121A22 !important;
}


.section-intro {
    /* background-color: #D7DED8; */
    background-image: url(img/intro-bg.jpg) !important;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    color: #121A22 !important;
}

.right-7 {
    right: 7px;
}

#ComiteTecnico {
    /* margin-top: -15em; */
}

.abc-flex {
    gap: 20px;
}

.abc-flex>div {
    flex: 1;
}

.section-medium {
    /* max-width: 900px; */
    padding: 40px;
    /* background: rgb(169,184,189); */
    background: linear-gradient(138deg, #121A22 0%, #013062 45%, #013062 100%);
}

.section-medium h2 {
    color: #D7DED8
}

.participante-comite {
    padding-bottom: .5em;
    padding-top: .5em;
}

.l-bar {
    border-bottom: 1px solid #ffffff33;
}

.nome,
.instituicao {
    color: white;
    letter-spacing: .1em;
}

.patrocione {
    /* margin-top: 40px; */
    /* max-width: 930px; */
    cursor: pointer;
}

.section-light {
    background-color: #D7F0F9;
}

.section-box {
    padding: 0;
    position: relative;
    z-index: 4;
}

.section-box>.container>.row>.col {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2196078431372549);
    border-radius: 5px;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #fff;
}

.objetivo {

    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.header-img {
    margin-bottom: -15%;
    text-align: center;
}

.header-img img {
    /*width: 100%;*/
    height: auto;
}

.working-modal .modal-content {
    background-color: #ECDD6E;
    text-align: center;
    font-weight: 700;
}

.modal-open .modal {
    top: 40%;
}

/* .l-bar {
    border-left: solid 3px #0256a4;
    padding-left: 0.7em;
} */
.lblob {
    position: relative;
}

.lblob::after {
    content: "*";
    /* position: absolute; */
    top: 9px;
    right: -5px;
    color: #C10001;
    font-size: 18px;
    margin-left: 4px;
}

.hidhlight-box {
    padding: 10px 20px;
    background-color: rgb(247, 241, 235);
    margin: 30px 0;
}

.hidhlight-box .box-label {
    text-transform: uppercase;
    font-size: 0.8em;
    margin-top: 10px;
}

.hidhlight-box strong {}

.hidhlight-box a {}

.ng-valid.form-control:focus {
    border-color: #b1eca2;
    box-shadow: 0 0 0 0.2rem rgba(12, 160, 24, 0.16);
}

.form-control.ng-invalid {
    border-left: solid 2px red;
}

.card-deck .card {
    background-color: #f1f5f7;
    box-shadow: 0 0 11px rgba(0, 0, 0, 0.16);
    border: none;
    min-width: 270px;
    margin-left: .5rem;
    margin-right: .5rem;
}

.msg-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.67);
    overflow: hidden;
    transition: bottom .6s;
}

.msg-overlay.open {
    bottom: 0;
}

.msg-overlay .msg-content {
    background-color: #fff;
    width: 100%;
    max-width: 300px;
    min-height: 260px;
    border-radius: 5px;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -70%);
    padding: 20px;
}

.msg-overlay.working-modal .msg-content {
    background-color: #eda232;
    font-weight: 700;
}

.msg-overlay.error-modal .msg-content {
    color: #AF0204;
    font-weight: 700;
    max-width: 500px;
}

.msg-overlay.success-modal .msg-content {
    background-color: #65F59E;
    text-align: center;
    font-weight: 400;
    width: 100%;
    max-width: 500px;
}

.box-comite {
    border-left: solid 1px #0517285E;
    padding-left: 1rem;
    margin: 4rem 0;
}

.box-comite__title {
    text-shadow: none;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.box-comite__nomes {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    color: #fff;
    font-size: 15px;

    /* border: solid 1px red; */
    & li {
        line-height: 1.4em;
        margin: .6rem 0;
    }

    @media (min-width: 996px) {
        display: flex;
        flex-wrap: wrap;

        & li {
            flex: 0 0 50%;
        }
    }
}

.box-comite.tecnico .box-comite__nomes {
    display: flex;
    flex-direction: column-reverse;

    & li {
        line-height: 1.5em;
    }

    @media (min-width: 996px) {
        flex-direction: row;
    }
}

/**
    *SMARTPHONE
*/
@media screen and (max-width: 760px) {
    .patrocinio-ouro {
        max-width: 340px;
    }
}

/**
 * TABLET
*/
@media all and (min-width: 765px) {
    h1 {
        font-size: 3.1em;
    }

    .place-card {
        /* float: right; */
        /* max-width: 370px; */
    }

    .patrocinio-ouro {
        max-width: 320px;
    }

    header #nav {
        position: -webkit-sticky;
        position: sticky;
        /* position: fixed; */
        top: 0;
        z-index: 9;
        display: block;
        height: 54px;
    }

    #nav ul {
        display: table;
        margin-left: auto;
        margin-right: auto;
    }

    #nav li {
        display: table-cell;
        margin-left: -1px;
    }

    #nav a,
    #nav a:link,
    #nav a:visited {
        padding: 15px 20px;
        border-bottom: none;
        border-right: solid 1px rgba(255, 255, 255, 0.38);
    }

    #nav li:not(:last-child) a {
        /* border-right: none; */
    }

    #nav li:first-child a {
        border-left: solid 1px rgba(255, 255, 255, 0.38);
    }

    #nav li:last-child a {
        /* border-radius: 0 30px 30px 0; */
    }

    .text-big {
        font-size: 1.6em;
        margin-top: 1em;
    }

    .brand .splash {
        position: absolute;
        right: 0;
        bottom: 16%;
    }

    .brand h3 {
        font-size: 2.5em;
    }

    td.td-ouro .check,
    td.td-prata .check,
    td.td-bronze .check {
        width: 30px;
    }
}

/**
 * DESKTOP SMALL
*/
@media all and (min-width: 996px) {
    body {
        /*font-size: 16px;*/
        /*line-height: 1.5em;*/
    }

    header {
        background-image: url(img/header-bg.jpg);
    }

    h1 {
        /* margin-top: 15%; */
    }

    .brand .date {
        max-width: 790px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.7em;
    }

    .columns-2 {}

    header #nav {
        /* margin: 40px 0 60px; */
        color: #262239;
    }

    #nav ul {}

    #nav li {}

    #nav a {}

    .hidhlight-box {
        /* column-count: 2; */
        /* column-gap: 30px; */
        padding: 10px 30px 20px;
    }

    .text-big {
        margin: 0em 0 1em;
        /* font-size: 2.1em; */
    }

    .section-box>.container>.row>.col {
        padding-right: 50px;
        padding-left: 50px;
        margin-top: -6rem;
    }

    .inicio-bg {
        /* background-image: url(img/intro.png); */
        /* background-position: center top; */
        /* background-size: contain; */
        /* background-repeat: no-repeat; */
    }

    .text-med {
        /* margin-left: 10%; */
        /* max-width: 520px; */
        font-size: 1em;
    }

    .brand .splash {
        right: 12%;
        bottom: 21%;
    }
}

/**
 * BIG DESKTOP
*/
@media all and (min-width: 1200px) {
    .brand {
        padding: 5% 0 10% 0;
    }

    .patrocinio-ouro {
        max-width: 320px;
    }

    .brand h1 {
        font-size: 4em;
    }

    .section-box>.container>.row>.col {
        padding-right: 50px;
        padding-left: 50px;
    }

    .text-big {
        /* margin: 2.5em 0; */
        /* font-size: 2.2em; */
    }

    .section-intro {
        /* min-height: 840px; */
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    img.separador {
        margin-top: -30px;
    }

    .brand .splash {
        right: 5%;
        bottom: 12%;
    }
}

.realizacao {
    gap: 30px;
}