@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,400italic,600");
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'); /*arial*/
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap'); /*times*/
@import url("font-awesome.min.css");


body {
  font-family: Arial, 'Roboto', sans-serif;
  margin: 0 !important;
}


a {
    color: unset;
    text-decoration: none;
}


/* Cabeçalho */

.cabecalho1{
        max-width: 58%;
}

.cabecalho2 {
    white-space: nowrap;
    position: fixed;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #00365d;
    color: #fff !important;
    align-items: center;
    padding: 1.4em 0em;
}

.cabecalho2 a{
    color: white !important;
    text-decoration: none;
    font-family: 'Roboto';
    font-weight: 100 !important;
}

.cabecalho3 {
    margin-right: 1em;
}

.cabecalho4{
    height: 5em;
}

.cabecalho5 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1em;
}

.cabecalho6{
    margin: 0 15px; /* Espaçamento entre os itens */
    position: relative; /* Para a linha sob os itens */
    list-style-type: none;
}

.cabecalho7 {
    text-align: center;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 0;
    position: relative;
    font-family: 'Roboto';
    font-weight: 100;
}

.cabecalho7:hover {
    border-bottom: 1px solid #b6c72c !important; /* Cor do texto ao passar o mouse */
}



.cabecalho8 {
    margin-left: 3em;
    padding: .5em 0.5em;
    font-size: 0.9em;
    border-radius: 2em;
}

.cabecalho9{

}

.cabecalho10{

}



/* Menu Celular */


@media (max-width: 768px) {
            .menu-toggle {
                display: block; /* Mostra o botão hambúrguer no celular */
            }

        .cabecalho1 {
            max-width: 100%;
        }

        .cabecalho1 {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 5.2em;
            width: 100% !important;
            background-color: #00365d;
            z-index: 1000;
            padding: 10px 0;
        }

            .cabecalho1.show {
                display: flex; /* Mostra o menu quando ativado */
            }

            .cabecalho5 {
                flex-direction: column;
                gap: 10px;
            }

            .cabecalho8 {
                text-align: center;
                font-size: 0.63em;
                margin-left: 1em;
            }

            .cabecalho4 {
                height: 3em;
            }

            .cabecalho2 {
            justify-content: space-around;
            padding: 1em 0em;
            width: 100vw;
            }

            .menu-toggle {
                display: block !important;
            }

}

/* Botão Hambúrguer */
.menu-toggle {
    display: none;
    background: none;
    cursor: pointer;
    position: relative;
    border: 1px solid white;
    padding: 1em 0.5em;
}

.menu-icon {
    width: 19px;
    height: 3px;
    background-color: white;
    position: relative;
    display: block;
    transition: all 0.3s ease-in-out;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    width: 19px;
    height: 3px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.menu-icon::before {
    top: -8px; /* Barra superior */
}

.menu-icon::after {
    top: 8px; /* Barra inferior */
}

/* Estado ativo: transforma hambúrguer em "X" */
.menu-toggle.active .menu-icon {
    background-color: transparent; /* Esconde a barra do meio */
}

.menu-toggle.active .menu-icon::before {
    transform: rotate(45deg); /* Rotação da barra superior */
    top: 0;
}

.menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg); /* Rotação da barra inferior */
    top: 0;
}

/* Dropdown container */
.dropdown {
    position: relative;
}

/* Dropdown menu oculto por padrão */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    border-top: 1px solid white;
    left: 0;
    background-color: #00365d;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 10;
    border-radius: 5px;
}

/* Estilo dos links no dropdown */
.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background-color: #b6c72c;
    color: #00365d;
}

/* Mostrar o dropdown no hover (desktop) */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown no mobile (mostrar ao clicar) */
.dropdown-menu.show {
    display: block;
}

#cabecalho10{
    color: #b6c72c;
}

#cabecalho12{
    color: #b6c72c;
}

/* Submenu oculto por padrão */
.dropdown-menu .sub-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%; /* Aparece à direita do item pai */
    background-color: #00365d;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 5px;
    z-index: 10;
}

/* Exibir o submenu apenas com a classe .show */
.sub-dropdown.show {
    display: block;
}

/* Estilo para links do submenu */
.dropdown-menu .sub-dropdown li a {
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    color: white;
}

.dropdown-menu .sub-dropdown li a:hover {
    background-color: #b6c72c;
    color: #00365d;
}

/* Ícone de seta para o submenu */
.dropdown-menu .fa-caret-right {
    margin-left: 5px;
}


#cabecalho11{
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-size: 14px;
}


/* Oculta o submenu inicialmente */
.sub-dropdown {
    margin-left: 0.1em !important;
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #00365d;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 5px;
    z-index: 10;
}

/* Exibir o submenu apenas ao passar o mouse no item pai do submenu */
.dropdown:hover > .dropdown-menu > .dropdown:hover > .sub-dropdown {
    display: block;
}


/* Estilo para os links do submenu */
.sub-dropdown li a {
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    color: white;
}

.sub-dropdown li a:hover {
    background-color: #b6c72c;
    color: #00365d;
}


/* Index **********************************************/

.index1 {
    display: flex;
    justify-content: space-around;
    position: relative;
    max-width: 100%;
    margin: 0 10%;
    padding: 20px;
    top: 12em;
}

.index2 {
    text-align: left;
    margin-bottom: 30px;
}


.index3 {
    max-width: 25em;
    margin: 0 auto;
}

.index4 {
    font-size: 1.2em;
    /* font-family: 'Roboto'; */
    color: #2a5d84;
    margin: 1.5em 0 0.5em 0em;
    letter-spacing: 0.325em;
    text-align: center;
}

.index5 {
    font-size: 20px;
    color: #00365d;
    margin: 5px 0;
    FONT-WEIGHT: 800;
    TEXT-TRANSFORM: uppercase;
    FONT-SIZE: 1.23EM;
    LETTER-SPACING: 0.2EM;
}

.index6 {
    margin: 10px 0;
    FONT-SIZE: 0.9em;
    color: #00365d;
}

.index7 {
    width: 55%;
    text-align: left;
    display: block;
    align-items: center;
    margin-bottom: 30px;
}

.index8 {
    display: flex;
    gap: 15px;
}

.index9 {
    background-color: #b6c72c;
    padding: clamp(20px, 2vw, 30px);
    text-align: center;
    border-radius: 8px;
}

.index9 span {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.index10 {
    text-align: left;
}

.index10 p {
    margin: 5px 0;
}

.index11 {
    background-color: #2a5d84;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.index11:hover {
    background-color: #1f4568;
}

.index12 {
    margin-left: 4em;
    max-width: 41%;
    text-align: left;
    display: block;
}

.index13 {
    max-width: 100%;
    border-radius: 10px;
}

.index14 {
    max-width: 100%;
    margin-top: 1em;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.index15 {
    max-width: 70px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}

.index15:hover {
    transform: scale(1.1);
}

.index16 {
    text-align: center;
    color: #00365d;
    min-width: 20%;
}

.index17 {
    vertical-align: middle;
    display: flex;
    padding: 2em 0em;
    font-weight: 800;
    color: #1f4568;
}

#index18 {
    color: #b6c72c;
}

.index19 {
    color: #00365d;
}

.index20 {
    margin-top: 11em !important;
    width: 100%;
    height: 56.25vw;
    max-height: 42.4vw;
    overflow: hidden;
}

.index21 {
    position: absolute !important;
    top: -16% !important;
    left: 0 !important;
    width: 100% !important;
    height: 132% !important;
    object-fit: cover !important;
}

.index22 {
    background-image: url('../../images/img8.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 33vw;
    margin-top: -1em;
    text-align: center;
    color: #fff !important;
    display: grid;
    place-items: center;
}

.index24{

    margin-bottom: 2em;

}

.index24 a {
    font-size: 1.5em;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: 0.2em;
}

.index25 a{
    color: white;
    text-decoration: none;
}

.index25{
    margin-top: 1em;
}


.index26 {
    padding: 1em 0em;
    display: flex;
    justify-content: center;
}

.index27 {
    width: 26%;
    color: #00365d;
    margin-right: 5em;
    margin-top: 2em;
}

.index28{

}

.index29{
    font-weight: 700;
    font-size: 1.4em;
}

.index30 {
    color: #b6c72c;
    margin: .3em 0 1em  0;
}

.index31 {
    margin-bottom: 1em;
}

.index32{

}

.index33{

}

.index34 {
    list-style: none;
    padding: 0;
}

.index35{

}

#index36 {
    color: #b6c72c;
}

.index37 {
    width: 47%;
    gap: 1em;
    display: grid;
}

.index38 {
    display: flex;
    gap: 1em;
}

.index39 {
    background-color: #00365d;
    color: white;
    text-align: center;
    width: 100%;
    vertical-align: middle;
    display: grid;
    align-items: center;
}

.index40 {
    background-color: #00365d;
    color: white;
    text-align: center;
    width: 50%;
    vertical-align: middle;
    display: grid;
    align-items: center;
}

.index41 {
    color: #b6c72c;
    font-weight: 800;
    font-size: 3em;
}

.index42{
    font-size: 2em;
    font-weight: 600;
}

.index43 {
    font-size: 0.7em;
}

.index44 {
    display: grid;
}

.index45 {
    background-image: url('../../images/img9.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 50vw;
    text-align: center;
    color: #fff !important;
    display: flex;
    place-items: center;
    justify-content: center;
}

.index44{
    padding: 1em 0em;
}


.index46{

}

.index47 {
    width: 62%;
}

.index48 {
    max-width: 40%;
    text-align: left;
}

.index49 {
    margin-bottom: 2em;
    padding-bottom: 1em;
    border-bottom: 1px solid white;
}

.index50 {
    color: #b6c72c;
    font-weight: 700;
    margin-bottom: 1em;
}

.index51{

}

.index52 {
    background-color: #b6c72c;
    padding: 0.6em;
    color: #00365d;
    border-radius: 0.3em;
    width: fit-content;
}

#index53{
    font-size: 0.7em;
}

.index54{

}

.index55 {
    display: flex;
    padding: 3em 0em;
    justify-content: center;
}

.index56 {
    width: 33%;
    margin-right: 3em;
}

.index57 {
    display: flex;
    text-align: left;
    justify-content: flex-end;
}

.index58 {
    max-height: 37vw;
    border-radius: 0em 3em 0em 3em;
}

.index59 {
    text-align: end;
    color: rgb(0, 33, 106);
    margin-top: 1em;
    font-weight: 600;
}

.index60 {
    margin-top: -0.35em;
    font-size: 1.5em;
    color: #002b51;
    font-weight: 700;
    margin-bottom: 0.2em;
}

.index61 {
    margin-bottom: 0.7em;
    color: #b6c72c;
}

.index62 {
    max-width: 32%;
    text-align: justify;
    color: #7d7d7d;
    line-height: 1.15em;
}

.index63 {
    text-align: justify;
    color: #7d7d7d;
    line-height: 1.1em;
}

.index64 {
    display: flex;
}

.index65 {
    background-image: url('../../images/img13.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 40vw;
    width: 50%;
    text-align: center;
    color: #fff !important;
    display: grid;
    place-items: center;
}

.index66 {
/*    font-family: 'Libre+Baskerville'; */
    font-size: 3em;
}

.index67 {
    letter-spacing: 0.3em;
    font-size: 1.5em;
}

.index68 {
    font-weight: 800;
    font-size: 1.79em;
    letter-spacing: 0.03em;
}

.index69{

}

  .index70 {
    width: 50%; /* Ocupa metade da largura no desktop */
    margin: 0 auto; /* Centraliza o conteúdo */
    display: flex;
    justify-content: center; /* Alinha o iframe horizontalmente */
    align-items: center; /* Alinha o iframe verticalmente */
  }

.index70 iframe {
    width: 100%;
    height: 40vw;
    aspect-ratio: 16 / 9;
    border: 0;
}


.index72 {
    display: grid;
    gap: 1em;
    text-align: left;
}



.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(16vw, 1fr));
    gap: 1em;
    padding: 4em;
}

.gallery img {
  width: 100%;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.modal {
  display: none; /* Esconde o modal inicialmente */
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  align-items:center;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #ccc;
  text-decoration: none;
  cursor: pointer;
}

.index73{

}

.index74 {
    display: flex;
    justify-content: center;
    padding-bottom: 2em;
}

.index75 {
    padding: .7em 1em;
    color: white;
    background-color: #408bd1;
    width: fit-content;
}

#index76{

}

.index77 {
    margin: 3em 0em;
}

.index78 {
    display: flex;
    align-items: center;
    margin-left: 6vw;
}

.index79 {
    font-size: 0.7em;
}

.index80 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.index81{

}

.index82 {
    margin: 2em 0em;
    width: 100%;
    background-color: rgb(0, 28, 90);
    padding: 0.25em 0em;
}

.index85 {
    max-height: 3.75vw;
}

.index83 {
    max-height: 3vw;
}

.index84 {
    width: 78%;
}

.rodape1 {
    background-color: #00365d;
    margin-top: 6em;
    padding: 7em 0em;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white;
}

.rodape2{

}

.rodape3 {
    max-height: 13vw;
}

.rodape4{

}

.rodape5 {
    font-weight: 800;
    margin-bottom: 1em;
}

.rodape6{

}

.rodape7{

}

.rodape8{

}

.rodape9 {
    width: 25vw;
    font-weight: 700;
    font-size: 1.4em;
    line-height: 1.6em;
}

.rodape10 {
    display: flex;
    margin-top: 1em;
    gap: 1.2em;
    align-items: center;
}

.rodape11{

}

#rodape12 {
    font-size: 2.2em;
}

.rodape13 {
    max-height: 3vw;
}

.mobile{
    display: none;
}

#logoSbce{
    max-height: 4vw;
}

.mobile2{
        display: none;
}

@media screen and (min-width: 1px) and (max-width: 700px) {


.inscreva33 {
    width: auto;
    text-align: left;
    border-top: 1px solid #00365d;
    border-bottom: 1px solid #00365d;
    padding: 0em;
    margin-bottom: 2em;
    padding: 2em;
}

.classeOrientacao {
    margin-top: 2em;
    font-size: 1em;
    line-height: 1.5em;
}

.cliqueAquiOrange{
white-space: nowrap
}


    .desktop{
        display: none !important;
    }

    .mobile{
        display: block !important;
    }

    .index1 {
        display: block;
        justify-content: space-around;
        position: relative;
        max-width: 100%;
        margin: 0 2%;
        padding: 0;
        top: 6em;
    }

    .index7 {
    width: 100%;
    text-align: center;
    display: block;
    align-items: center;
    margin-bottom: 2em;
    }

    .index2 {
    text-align: center;
    margin-bottom: 2em;
    }

    .index8 {
    display: flex;
    gap: 0.3em;
    justify-content: center;
    }

    .index9 {
    background-color: #b6c72c;
    padding: clamp(15px, 2vw, 30px);
    text-align: center;
    border-radius: 8px;
    }

    .index10 p {
    margin: 5px 0;
    text-align: center;
    }

    .index3 {
    max-width: 20em;
    margin: 0 auto;
    }

    .index10 {
    text-align: center;
    }


    .index12 {
    margin: 1em;
    max-width: 100%;
    text-align: center;
    display: block;
    }

    .index20 {
    margin-top: 7em !important;
    width: 100%;
    height: 56.25vw;
    max-height: 42.4vw;
    overflow: hidden;
    }

    .index25 a {
    font-size: 0.9em;
    color: white;
    text-decoration: none;
    }

    .index25 {
    margin-top: 0.75em;
    }

    .index24 {
    margin-bottom: 1em;
    font-size: 0.9em;
    }

    .index22 {
    background-image: url('../../images/img8.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 59vw;
    margin-top: 0em;
    text-align: center;
    color: #fff !important;
    display: grid;
    place-items: center;
    }

    .index26 {
    padding: 1em 0em;
    display: block;
    justify-content: center;
    }

    .index45 {
        background-image: url('../../images/img9.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        height: 190vw;
        text-align: center;
        color: #fff !important;
        display: block;
        place-items: center;
        justify-content: center;
    }

    .index47 {
        width: 48vw;
        margin: 1.2em 0em;
    }

    .index48 {
    max-width: 100%;
    text-align: justify;
    margin: 1em 2em;
    }

    .index51 {
        font-size: 0.8em;
    }

    .index52 {
        font-size: 0.7em;
        background-color: #b6c72c;
        padding: 0.6em;
        color: #00365d;
        border-radius: 0.3em;
        width: 72vw;
    }

    .index27 {
    width: 95%;
    color: #00365d;
    margin: 0.5em;
    text-align: center;
    }

    .index29 {
    font-weight: 700;
    font-size: 1.3em;
    }

    .index35 {
    padding: 0.5em 0em;
    }

    .index37 {
    margin: 1em 1em;
    width: 90%;
    gap: 1em;
    display: grid;
    text-align: center;
    }

    .index41 {
        font-size: 2em !important;
    }

    .index42 {
    font-size: 1.5em;
    font-weight: 600;
    }

    .index43 {
    font-size: 0.57em;
    margin-bottom: 1em;
    }

    .index37 {
    justify-items: center;
    margin: 1em 1em;
    width: 90%;
    gap: 1em;
    display: grid;
    text-align: center;
    }

    .index40 {
    background-color: #00365d;
    color: white;
    text-align: center;
    width: 33vw;
    vertical-align: middle;
    display: grid;
    align-items: center;
    }

    .index62 {
        text-align: justify;
        color: #7d7d7d;
        max-width: 100%;
    }

    .index55 {
        display: block;
        padding: 2em 1em;
        font-size: 0.8em !important;
    }

    .index63 {
        text-align: justify;
        color: #7d7d7d;
        max-width: 100%;
    }

    .index56 {
        margin-top: 1.5em;
        width: 100%;
        margin-right: 0;
        text-align: center;
    }

    .index57 {
    display: block;
    text-align: center;
    justify-content: flex-end;
    }

    .index58 {
    max-height: 91vw;
    border-radius: 0em 3em 0em 3em;
    }

    .index59 {
    text-align: center;
    color: #63768c;
    margin-top: 0.51em;
    }

    #index55_2 {
        margin-top: -2.5em;
    }

    .index64 {
        display: block;
    }

    .index65 {
        background-image: url('../../images/img13.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 56vw;
        text-align: center;
        color: #fff !important;
        display: grid;
        place-items: center;
    }

    .index72 {
        display: grid;
        gap: 1em;
        text-align: center;
    }

    .index66 {
    font-family: 'Libre+Baskerville';
    font-size: 2em;
    }

    .index67 {
    letter-spacing: 0.3em;
    font-size: 1.25em;
    }

    .index68 {
    font-weight: 800;
    font-size: 1em;
    letter-spacing: 0.03em;
    }

    .index69 {
        font-size: 0.8em;
    }

    .index70 {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    }

    .index70 iframe {
    width: 100%;
    height: 62vw !important;
    aspect-ratio: 16 / 9;
    border: 0;
    }

    .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(16vw, 1fr));
    gap: 1em;
    padding: 2em 1em;
    }

    .index74 {
    display: flex;
    justify-content: center;
    padding-bottom: 0em;
    }

    .index75 {
    font-size: 0.8em;
    padding: .7em 1em;
    color: white;
    background-color: #408bd1;
    width: fit-content;
    }

    .index79 {
    font-size: 0.7em;
    text-align: center;
    margin-bottom: 3em;
    }

    .index84 {
    width: 100%;
    }


    .index78 {
        display: block;
        align-items: center;
        margin-left: 0;
    }

    .index83 {
    max-height: 7vw;
    max-width: 26vw;
    }

    .index85 {
    max-height: 9.5vw;
    max-width: 26.5vw;
    }

    #logoSbce {
        max-height: 9vw;
        max-width: 35vw;
    }

.index80 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.51em 1em;
    padding: 0em 0.75em;
}

    .rodape1 {
    background-color: #00365d;
    margin-top: 4em;
    padding: 3em 0em;
    display: block;
    text-align: center;
    align-items: center;
    justify-content: space-around;
    color: white;
    }

    .rodape3 {
    max-height: 32vw;
    }

    .rodape4 {
    padding: 1.5em 0em;
    }

     .rodape9 {
        width: 90vw;
        font-weight: 700;
        font-size: 1em;
        line-height: 1.6em;
        padding: 0em 1em 0em 1em;
    }
    
    .rodape10 {
        display: flex;
        margin-top: 2em;
        gap: 1.5em;
        align-items: baseline;
        justify-content: center;
    }

    .rodape13 {
     max-height: 8vw;
    }

    .dropdown-menu {
    display: none;
    position: unset;
    top: 100%;
    border-top: none;
    left: 0;
    background-color: #00365d;
    list-style: none;
    padding: 0em 0em 0.1em 0em;
    margin: 0;
    z-index: 10;
    border-radius: 5px;
    }

    .dropdown-menu .sub-dropdown {
    display: none;
    text-align: center;
    position: unset;
    top: 0;
    left: 100%;
    background-color: #00365d;
    list-style: none;
    padding: 0px 0;
    margin: 0;
    border-radius: 5px;
    z-index: 10;
    }

    #cabecalho11 {
    color: white;
    border-bottom: unset !important;
    background-color: #00365d;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-size: 14px;
    }

    .index4 {
    font-size: 1.2em;
    /* font-family: 'Roboto'; */
    color: #2a5d84;
    margin: .75em 0 0.5em 0em;
    letter-spacing: 0.325em;
    }

}

/*-----------inscreva-se.php-------------*/


.inscreva0 {
    background-color: #f1f1f1;
    display: grid;
    text-align: center;
    position: relative;
    width: 100%;
    top: 7em;
    padding-top: 4em;
    justify-content: center;
    margin-bottom: 14em;
}

.inscreva1{

}

.inscreva2 {
    padding-bottom: 1em;
    text-align: center;
    font-size: 1.3em;
    color: #00365d;
    font-weight: 600;
}

.inscreva3{

}

.inscreva4 {
    margin-right: 1.25em;
    color: #000018;
    font-style: italic;
    font-weight: 600;
}

.inscreva5 {
    -webkit-appearance: none;
    border: 0;
    background: #fafafa;
    border-radius: 0.5em;
    border: solid 1px #E5E5E5;
    padding: 1em;
}

.inscreva6 {
    margin-bottom: 1em;
    display: flex;
    align-items: center;
}

.inscreva7 {
    margin: 2em 0em;
    text-align: left;
}


.inscreva8 {
    display: flex;
    gap: 1em;
}

.inscreva9{

}

.inscreva10 {
    display: block;
    text-align: left;
    margin-bottom: 1em;
}

.inscreva11{
    background: #b6c72c;
    border: 2px solid white !important;
    border-radius: 0.5em;
    padding: 0.75em 0.5em;
    color: white;
    text-transform: uppercase;
}

.inscreva12 {
    text-align: left;
    margin-top: 2em;
    font-weight: 600;
    width: 19em;
}

.inscreva13 {
    margin-top: 1em;
    display: grid;
    gap: 0.5em;
}

.inscreva14 {
    margin-right: 1em;
    font-weight: 700;
    color: red;
}

.inscreva15 {
    font-size: 1em;
}

.inscreva16 {
    width: 25vw;
}

.inscreva17 {
    width: 23vw;
}

.inscreva18 {
    border: none;
    box-sizing: unset;
    border-collapse: collapse;
    margin-top: -1em;
    margin-bottom: 2em;
}

.inscreva19{

}

.inscreva20{

}

.inscreva21 {
    background-color: #00365d;
    color: white;
    padding: .5em 1em;
    border-radius: 0.25em;
}

.inscreva22 {
    color: #002a4e;
    border-bottom: 0.01vw solid #002a4e;
    padding: 1em;
}

.inscreva23 {
    text-align: left;
    padding: 0.75em 0.5em;
}

.inscreva24{

}

.inscreva25 {
    margin-bottom: 2em;
    justify-content: center;
    display: flex;
}

#tabelaPrecos{
    display: none;
}

.inscreva26 {
    background-color: #b6c72c;
    width: fit-content;
    padding: 0.5em 1em;
    border-radius: 0.5em;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    cursor: pointer;
}

.inscreva27{

}

.inscreva28 {
    display: flex;
    gap: 1em;
}

.inscreva29{

}

.inscreva30 {
    background-color: #b6c72c;
}

.inscreva31{

}


#results{
    margin-bottom: 1em;
}

@media screen and (min-width: 1px) and (max-width: 700px) {

.inscreva0 {
    background-color: #f1f1f1;
    display: grid;
    text-align: center;
    position: relative;
    width: 100%;
    top: 5em;
    padding-top: 3em;
    justify-content: center;
    margin-bottom: 7em;
}

.inscreva25 {
    margin-bottom: 1em;
    justify-content: center;
    display: flex;
}

.inscreva18 {
    font-size: 0.5em;
    border: none;
    box-sizing: unset;
    border-collapse: collapse;
    margin-top: -1em;
    margin-bottom: 2em;
}

.inscreva23 {
    text-align: left;
    padding: 0.5em 0em;
    max-width: 37vw;
}

.inscreva28 {
    display: block;
    gap: 1em;
}

.inscreva0, .inscreva6, .inscreva25, .inscreva32 {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.inscreva5 {
    width: 100%; /* Campo de input ocupa 100% da largura */
    max-width: 100%;
    margin-bottom: 10px; /* Espaçamento entre os campos */
}

.inscreva7 button {
    width: 32vw;
    max-width: 32vw;
}

.inscreva32{
    display: flex;
    justify-content: center;
}

.inscreva24 {
    width: 14vw;
}

.inscreva26 {
    font-size: 0.87em;
    background-color: #b6c72c;
    width: fit-content;
    padding: 0.5em 1em;
    border-radius: 0.5em;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    cursor: pointer;
}

.inscreva6 {
    margin-bottom: 1em;
    display: block;
    align-items: center;
}

.inscreva5 {
    width: 84%;
    max-width: 84%;
    margin-bottom: 10px;
    margin-top: 2vw;
    text-align: center;
}

.inscreva8 {
    display: flex;
    gap: 0.3em;
    font-size: 0.75em;
    margin-bottom: 1em;
    align-items: center;
    margin-left: 1vw;
    /* justify-content: center; */
}

.inscreva31{
    font-weight: 700;
}

.inscreva7 {
    margin: 2em 0em;
    text-align: center;
}

select[name="sexo"] {

    max-width: 43vw;

}

input[name="nascimento"] {

    max-width: 26vw;

}

input[name="cep"] {

    max-width: 42vw;

}

input[name="numero"] {

    max-width: 24vw;

}

input[name="complemento"] {

    max-width: 24vw;

}


input[name="estado"] {

    max-width: 8vw;

}

input[name="bairro"] {

    max-width: 58vw;

}

input[name="cidade"] {

    max-width: 60vw;

}

input[name="telefone"] {

    max-width: 37vw;

}

input[name="celular"] {

    max-width: 37vw;

}

input[name="documento"] {

    max-width: 57vw !important;

}

select[name="nacionalidade"] {

    max-width: 57vw;

}

.inscreva12 {
    margin-top: 2em;
    font-weight: 600;
    padding: 3vw;
    width: 94vw;
    display: flex;
    justify-content: center;
}

#captchaInscreva{
    display: flex;
    justify-content: center;
}

}


/*--------------------- palestrantes.php ---------------------------- */

.palestrantes0 {
    color: #00365d;
    font-weight: 900;
    font-size: 1.5em;
    margin-bottom: 2em;
}

.palestrantes1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40vw, 1fr));
    gap: 4px;
    justify-items: center;
    padding-left: 3em;
}

.palestrantes5 {
    background-color: rgb(0, 28, 90);
    max-width: 70%;
    display: grid;
    align-items: center;
    text-align: left;
}



.palestrantes2 {
    display: grid;
    text-align: center;
    position: inherit;
    width: 100%;
    padding-top: 11em;
}

.card {
    display: flex;
    align-items: center;
    background-color: #002a4e;
    border-radius: 3em 0px 3em 0px;
    padding: 1em 0em;
    width: 41vw;
    min-height: 24vw;
    color: white;
    margin-bottom: 1em;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card img {
    margin-left: -5em;
    border-radius: 50%;
    /* width: 100px; */
    height: 11vw;
    object-fit: cover;
    /* margin-right: 20px; */
    border: 3px solid white;
}

.card-content {
    flex: 1;
    padding: 1em 1em;
}

.card-content h3 {
    margin: 0;
    font-size: 1em;
    font-weight: 900;
    color: #b6c72c;
    /* font-weight: bold; */
    letter-spacing: 0.092em;
}

        .card-content p {
            margin: 10px 0 0;
            font-size: 0.7rem;
            line-height: 1.5;
        }

.paginacao {
    width: 30%;
    font-size: 2.5em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.paginacao a {
    margin: 0 5px;
    text-decoration: none;
    color: #002a4e;
}

.paginacao .ativoPagina {
    border-radius: 0.25em;
    background-color: #b6c72c;
    box-shadow: none !important;
    color: #002a4e !important;
    padding: 0.1em 0.3em;
}

.paginacao span {
    margin: 0 5px;
}

.paginacaoGeral {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 3em 0em;
}



@media screen and (min-width: 1px) and (max-width: 700px) {

.palestrantes1 {
    display: block;
    justify-items: center;
    padding-left: 0em;
}


.palestrantes2 {
    display: grid;
    text-align: center;
    position: inherit;
    width: 100%;
    padding-top: 7em;
}

.palestrantes0 {
    color: #00365d;
    font-weight: 900;
    font-size: 1.5em;
    margin-bottom: 1em;
}

.card {
    display: block;
    align-items: center;
    background-color: #002a4e;
    border-radius: 3em 0px 3em 0px;
    padding: 0em;
    width: 90vw;
    min-height: 0;
    color: white;
    margin-bottom: 1em;
    text-align: center;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.card img {
    margin-left: 0;
    margin-top: 1em;
    border-radius: 50%;
    /* width: 100px; */
    height: 27vw;
    /* object-fit: cover; */
    /* margin-right: 20px; */
    border: 2px solid white;
}

.card-content {
    flex: 1;
    padding: 1em 1em;
    text-align: justify;
}

.card-content h3 {
    margin: 0;
    text-align: center;
    font-size: 0.8em;
    font-weight: 900;
    color: #b6c72c;
    /* font-weight: bold; */
    letter-spacing: 0.02em;
}

}

/*----------Hospedagens.php-----------*/

.hospedagens1 {
    text-align: center;
    position: inherit;
    width: 100%;
    padding-top: 10em;
}

.hospedagens2{

}

.hospedagens3 {
    font-size: 2.3em;
    color: #00365d;
    font-family: 'Roboto';
    margin-bottom: .7em;
}

.hospedagens4 {
    font-size: 2.7vw;
    font-weight: 600;
    color: #00365d;
    font-family: 'Roboto';
    margin-bottom: .7em;
}

.hospedagens5 {
    margin-bottom: 4em;
    text-align: center;
    display: flex;
    justify-content: center;
}

.hospedagens6 {
    background-color: #b6c72c;
    padding: .7em 1em;
    color: white;
    text-decoration: underline;
}

.hospedagens7 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 16vw;
    margin-bottom: 2em;
    text-align: center;
    color: #fff !important;
    display: grid;
    place-items: center;
}

.hospedagens8 {
    font-size: 2.7em;
    font-weight: 600;
}

.hospedagens9 {
    font-size: 2.2em;
}

#hospedagens10{

}

.hospedagens11 {
    padding: 2em 0em;
}

.hospedagens12 {
    display: grid;
    gap: 1em;
}

#hospedagens7-1{
    background-image: url('../../images/hospedagens1.png');
}

#hospedagens7-2{
    background-image: url('../../images/hospedagens2.png');
}

#hospedagens7-3{
    background-image: url('../../images/hospedagens3.png');
}

.hospedagens13{
    padding: 1em;
    font-size: 2em;
    color: rgb(0, 28, 90)
}

.hospedagens14{
    border-bottom: 1px dotted #b6c72c;
}

@media screen and (min-width: 1px) and (max-width: 700px) {

.hospedagens1 {
    text-align: center;
    position: inherit;
    width: 100%;
    padding-top: 7em;
}

.hospedagens3 {
    font-size: 7vw;
    color: #00365d;
    font-family: 'Roboto';
    margin-bottom: .7em;
}

.hospedagens4 {
    font-size: 6vw;
    font-weight: 600;
    color: #00365d;
    font-family: 'Roboto';
    margin-bottom: .7em;
}

.hospedagens5 {
    margin-bottom: 2em;
    text-align: center;
    display: flex;
    justify-content: center;
}

.hospedagens9 {
    font-size: 1.7em;
}

.hospedagens8 {
    font-size: 1.7em;
    font-weight: 600;
}

.hospedagens7 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 44vw;
    margin-bottom: 2em;
    text-align: center;
    color: #fff !important;
    display: grid;
    place-items: center;
}

.hospedagens11 {
    padding: 0em 0em;
}


}

/*----------servicos-exclusivos.php-----------*/

.servicos-exclusivos1 {
    text-align: center;
    position: inherit;
    width: 100%;
    padding-top: 10em;
}

.servicos-exclusivos2{

}

.servicos-exclusivos3 {
    font-size: 2.3em;
    color: #00365d;
    font-family: 'Roboto';
    margin-bottom: .7em;
}

.servicos-exclusivos4 {
    font-size: 2.7vw;
    font-weight: 600;
    color: #00365d;
    font-family: 'Roboto';
    margin-bottom: .7em;
}

.servicos-exclusivos5 {
    margin-bottom: 4em;
    text-align: center;
    display: flex;

    justify-content: center;
}

.servicos-exclusivos6 {
    background-color: #b6c72c;
    padding: .7em 1em;
    color: white;
    text-decoration: underline;
}

.servicos-exclusivos7 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 16vw;
    margin-bottom: 2em;
    text-align: center;
    color: #fff !important;
    display: grid;
    place-items: center;
}

.servicos-exclusivos8 {
    font-size: 2.7em;
    font-weight: 600;
}

.servicos-exclusivos9 {
    font-size: 2.2em;
}

#servicos-exclusivos10{

}

.servicos-exclusivos11 {
    padding: 2em 0em;
}

.servicos-exclusivos12 {
    display: grid;
    gap: 1em;
}

#servicos-exclusivos7-1{
    background-image: url('../../images/hospedagens1.png');
}

#servicos-exclusivos7-2{
    background-image: url('../../images/hospedagens2.png');
}

#servicos-exclusivos7-3{
    background-image: url('../../images/hospedagens3.png');
}

@media screen and (min-width: 1px) and (max-width: 700px) {

.servicos-exclusivos1 {
    text-align: center;
    position: inherit;
    width: 100%;
    padding-top: 7em;
}

.servicos-exclusivos3 {
    font-size: 7vw;
    color: #00365d;
    font-family: 'Roboto';
    margin-bottom: .7em;
}

.servicos-exclusivos4 {
    font-size: 6vw;
    font-weight: 600;
    color: #00365d;
    font-family: 'Roboto';
    margin-bottom: .7em;
}

.servicos-exclusivos5 {
    margin-bottom: 2em;
    text-align: center;
    display: flex;
    justify-content: center;
}

.servicos-exclusivos9 {
    font-size: 1.7em;
}

.servicos-exclusivos8 {
    font-size: 1.7em;
    font-weight: 600;
}

.servicos-exclusivos7 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 44vw;
    margin-bottom: 2em;
    text-align: center;
    color: #fff !important;
    display: grid;
    place-items: center;
}

.servicos-exclusivos11 {
    padding: 0em 0em;
}

.servicos-exclusivos12 {
    display: grid;
    gap: 1em;
    max-width: 90vw;
    line-height: 2.5em;
}

.servicos-exclusivos6 {
    background-color: #b6c72c;
    padding: .7em 1em;
    max-width: 69vw;
    color: white;
    text-decoration: underline;
}


}

/*---simposio-de-cefaliatria-intervencionista.php--------*/

.simposio-cefaliatria0 {
    text-align: center;
    position: inherit;
    width: 100vw;
    padding-top: 11em;
}

.simposio-cefaliatria1{

}

.simposio-cefaliatria2 {
    max-width: 100vw;
}

.simposio-cefaliatria3{

}

.simposio-cefaliatria4 {
    margin-top: 6em;
}

.simposio-cefaliatria5 {
    font-size: 3.3em;
    font-weight: 600;
    color: #00365d;
    margin-bottom: 0.5em;
}

.simposio-cefaliatria6 {
    color: #00365d;
    margin-bottom: 4em;
    font-size: 1.1em;
    font-family: 'Roboto';
}

.simposio-cefaliatria7{

}

.simposio-cefaliatria8{
    color: #00365d;
    margin-bottom: .5em;
    font-size: 1.1em;
    font-family: Roboto;

}

.simposio-cefaliatria9 {
    font-weight: 700;
}

.simposio-cefaliatria10 {
    color: #b6c72c;
    font-weight: 700;
}

.simposio-cefaliatria11 {
    display: flex;
    justify-content: center;
    margin: 2em 0em 5em 0em;
}

.simposio-cefaliatria12 {
    background-color: #b6c72c;
    padding: 0.5em 1em;
    color: white;
    text-decoration: underline;
    border-radius: 0.54em;
}

.simposio-cefaliatria13 {
    background-color: #00365d;
    color: white;
    padding: 1em;
    margin-bottom: 14em;
}

.simposio-cefaliatria14 {
    font-size: 3.3em;
    font-weight: 600;
}

.simposio-cefaliatria15 {
    margin: 2em 0em;
    font-size: 1.3em;
}

.simposio-cefaliatria16 {
    color: #b6c72c;
    font-weight: 600;
    font-size: 1.4em;
}

.simposio-cefaliatria17 {
    display: flex;
    justify-content: center;
    margin: 2em 0em 1em 0em;
}

.simposio-cefaliatria18{

}

@media screen and (min-width: 1px) and (max-width: 700px) {


.simposio-cefaliatria3 {
    width: 100vw;
}

.simposio-cefaliatria0 {
    text-align: center;
    position: inherit;
    width: 100vw;
    padding-top: 8em;
}

.simposio-cefaliatria4 {
    margin-top: 3em;
}

.simposio-cefaliatria5 {
    font-size: 2.3em;
    font-weight: 600;
    color: #00365d;
    margin-bottom: 0.5em;
}

.simposio-cefaliatria6 {
    color: #00365d;
    margin-bottom: 3em;
    font-size: .9em;
    font-family: 'Roboto';
}

.simposio-cefaliatria8 {
    color: #00365d;
    margin-bottom: .5em;
    font-size: .95em;
    font-family: Roboto;
    padding: 0em 1em;
}

.simposio-cefaliatria11 {
    display: flex;
    justify-content: center;
    margin: 2em 0em 3em 0em;
}

.simposio-cefaliatria14 {
    font-size: 2.3em;
    font-weight: 600;
}

.simposio-cefaliatria15 {
    margin: 2em 0em;
    font-size: 1em;
}

.simposio-cefaliatria16 {
    color: #b6c72c;
    font-weight: 600;
    font-size: 1.14em;
}

.simposio-cefaliatria13 {
    background-color: #00365d;
    color: white;
    padding: 1em;
    margin-bottom: 4em;
}

}

/*--simposios-e-workshops.php---*/


.simposios-workshops0 {
    text-align: center;
    position: inherit;
    width: 100vw;
    padding-top: 11em;
    margin-bottom: 12em;
}

.simposios-workshops1{

}

.simposios-workshops2{
    font-size: 2.7vw;
    font-weight: 600;
    color: #00365d;
    font-family: 'Roboto';
    margin-bottom: .7em;
}

.simposios-workshops3 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 16vw;
    margin-bottom: 2em;
    text-align: center;
    color: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5em;
}

#simposios-workshops3-1{
    background-image: url('../../images/hospedagens1.png');
}

#simposios-workshops3-2{
    background-image: url('../../images/hospedagens2.png');
}

#simposios-workshops3-3{
    background-image: url('../../images/hospedagens3.png');
}

.simposios-workshops4 {
    width: 15vw;
}

.simposios-workshops5 {
    background-color: #b6c72c;
    padding: 1.25em 0em .5em 0em;
    border-radius: 1.25em 1.25em 0em 0em;
    font-weight: 600;
    font-size: 1.55em;
}

.simposios-workshops6 {
    background-color: white;
    height: 7vw;
    display: grid;
    justify-content: center;
    align-items: center;
    border-radius: 0em 0em 1.25em 1.25em;
}

.simposios-workshops7 {
    max-width: 11vw;
    /* background-color: white; */
}

.simposios-workshops8 {
    display: grid;
    gap: 1em;
}

.simposios-workshops9 {
    font-size: 1.5em;
    font-weight: 900;
}

.simposios-workshops10 {
    display: flex;
    justify-content: space-around;
}

.simposios-workshops11{

}

.simposios-workshops12 {
    color: #b6c72c;
    font-weight: 800;
}

.simposios-workshops13{

}

.simposios-workshops14 {
    font-weight: 700;
}

.simposios-workshops15{

}

.simposios-workshops16{

}

.simposios-workshops17{

}

.simposios-workshops18{

}

@media screen and (min-width: 1px) and (max-width: 700px) {

.simposios-workshops0 {
    text-align: center;
    position: inherit;
    width: 100vw;
    padding-top: 8em;
    margin-bottom: 7em;
}

.simposios-workshops2 {
    font-size: 6.7vw;
    font-weight: 600;
    color: #00365d;
    font-family: 'Roboto';
    margin-bottom: 1.7em;
}

.simposios-workshops3 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 73vw;
    margin-bottom: 2em;
    text-align: center;
    color: #fff !important;
    display: grid;
    justify-content: center;
    gap: 1em;
    padding-bottom: 1em;
}

.simposios-workshops5 {
    margin-top: 1em;
    background-color: #b6c72c;
    padding: 0.5em 0em .25em 0em;
    border-radius: 1em 1em 0em 0em;
    font-weight: 600;
    font-size: 1.25em;
    width: 40vw;
}

.simposios-workshops4 {
    width: 100vw;
    text-align: center;
    display: grid;
    justify-content: center;
}

.simposios-workshops6 {
    background-color: white;
    height: 11vw;
    display: grid;
    width: 40vw;
    justify-content: center;
    align-items: center;
    border-radius: 0em 0em 1.25em 1.25em;
}

.simposios-workshops7 {
    max-width: 22vw;
    background-color: white !important;
}

.simposios-workshops9 {
    font-size: .85em;
    font-weight: 900;
}

.simposios-workshops10 {
    font-size: 0.8em;
    display: flex;
    justify-content: space-around;
}

.simposios-workshops13 {
    max-width: 100vw;
    text-align: center;
    display: grid;
    gap: 0.5em;
    font-size: 0.8em;
}

.simposios-workshops14 {
    font-weight: 700;
    font-size: 1.3em;
}

}


/*------------------------Login.php-----------------------*/

.login1 {
    background-color: #f1f1f1;
    display: grid;
    text-align: center;
    /* position: inherit; */
    width: 100%;
    justify-content: center;
    padding-top: 7em;
    padding-bottom: 5em;
}

.login2{

}

.login3 {
    padding: 2em;
    border-bottom: 1px solid #00365d;
    text-align: left;
}

.login4 {
    padding-bottom: .1em;
    text-align: center;
    font-size: 1.3em;
    color: #00365d;
    font-weight: 600;
}

.login5 {
    display: grid;
    gap: 1em;
}

.login6{
    -webkit-appearance: none;
    border: 0;
    background: #fafafa;
    border-radius: 0.5em;
    border: solid 1px #E5E5E5;
    padding: 1em;
}

.login7{

}

.login8{

}

.login9{

}

.login10{

}

.login11 {
    margin-top: 1em;
    background: #b6c72c;
    border: 2px solid white !important;
    border-radius: 0.5em;
    padding: 0.75em 0.5em;
    color: white;
    text-transform: uppercase;
}

.login12 {
    font-weight: 600;
}

.login13{

}

#login14{

}

#login15{
    max-width: 20vw;
}

.login16 {
    background: #b6c72c;
    border-radius: 0.5em;
    padding: 0.25em 0.35em;
    color: white;
    text-transform: uppercase;
    font-size: .8em;
}

.login17{

}

.login18{

}

.login19{

}


.botao-luz {
    position: relative;
    background-color: #e67e22;
    border: 1px solid #2a5da5 !important;
    color: white;
    border: none;
    padding: 0em 1em;
    /* font-size: 16px; */
    border-radius: 0.3em;
    cursor: pointer;
    height: 2em;
    line-height: 1em;
    overflow: hidden;
    font-weight: 600;
    margin-right: 1em;
}

 .botao-luz::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -75%;
      width: 10%;
      height: 200%;
      background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 20%,
        rgba(255, 255, 255, 0) 90%
      );
      transform: rotate(25deg);
      animation: reflexo 2.5s infinite;
    }

    @keyframes reflexo {
      0% {
        left: -75%;
      }
      100% {
        left: 125%;
      }
    }

#botao-luz-1{
    margin-top: 1em;
    font-size: 1.1em;
}


.AreaInscrito1 {
    top: 10em;
    position: relative;
    margin-bottom: 10em;
}

.AreaInscrito2 {
    width: 35vw;
    color: #00365d;
}

.AreaInscrito3 {
    text-align: center;
    font-size: 1.35em;
    margin-bottom: 1em;
}

.AreaInscrito4 {
    font-size: 2em;
    /* text-align: center; */
    margin-bottom: 0.3em;
    font-weight: 700;
}

.AreaInscrito5 {
    margin-bottom: 0.5em;
}

.AreaInscrito6 {
    width: 1em;
    margin-right: 1em;
}

.AreaInscrito7 {
    font-weight: 700;
}

.AreaInscrito8 {
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    vertical-align: initial;
    gap: 20px;
    height: 16vh;
    margin-bottom: 0em !important;
    padding: 2.5em;
}

.AreaInscrito9 {
    padding: 1em 0em;
    background-color: #b6c72c;
    text-decoration: underline;
    width: 17em;
    border-radius: 0.72em;
        font-weight: 600;
}

.AreaInscrito10 {
    display: flex;
    justify-content: center;
    gap: 5em;
}

.AreaInscrito11 {
    background-color: #e67e22;
    color: white;
    display: flex;
    text-align: center;
    align-items: anchor-center;
    gap: 1em;
    padding: 1em;
    margin: 5em 0em;
    border-radius: 1em;
}

.AreaInscrito12{

}

.AreaInscrito13 {
    text-decoration: underline;
}

.AreaInscrito14{

}

.AreaInscrito15 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 2em;
    height: 13vw;
    margin-bottom: 0 !important;
}

.AreaInscrito16 {
    font-size: 1.8em;
    font-weight: 700;
}

.AreaInscrito17{

}

.AreaInscrito18 {
    height: 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.AreaInscrito19{
    padding: 1em 1em;
    background-color: #b6c72c;
    border-radius: 0.72em;
    font-weight: 600;
    color: white;
}

.AreaInscrito20 {
    padding: 1em 1em;
    background-color: #e67e22;
    border-radius: 0.72em;
    font-weight: 600;
    color: white;
}

.AreaInscrito21 {
    background-image: url('../../images/bannerIHCAreaInscrito.png');
    height: 35vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 24vw;
    align-items: center !important;
    text-align: end;
    color: #fff !important;
    display: grid;
    place-items: flex-end;
    margin-bottom: 13em;
}

.AreaInscrito22 {
    margin-right: 8em;
    display: flex;
    background-color: #e67e22;
    padding: 1em;
    align-items: center;
}

.AreaInscrito23 {
    margin-right: 1em;
}

.AreaInscrito24 {
    width: 4em;
}

.AreaInscrito25{

}

.AreaInscrito26 {
    text-align: center;
    text-decoration: underline;
    font-size: 0.8em;
}

.AreaInscrito27 {
    text-align: center;
    margin-top: 1em;
}

.AreaInscrito28 {
    height: 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.AreaInscrito29{
        padding: 1em 1em;
    background-color: #b6c72c;
    border-radius: 0.72em;
    font-weight: 600;
    color: white;
}

.AreaInscrito30{

}

.AreaInscrito31 {
    display: flex;
    justify-content: center;
    margin-bottom: 3em;
}

.AreaInscrito32{

}

.AreaInscrito33 {
    display: grid;
    text-align: center;
    gap: 0.3em;
    margin-right: 3em;
}

.AreaInscrito34 {
    border: 1px solid rgb(0, 28, 90);
  width: 14em;
  height: 14em;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.AreaInscrito35 {
    text-decoration: underline;
    color: #b6c72c;
    font-weight: 700;
    cursor: pointer;
}

  .upload-input {
    display: none;
  }

@media screen and (min-width: 1px) and (max-width: 700px) {

.AreaInscrito1 {
    top: 7em;
    position: relative;
    margin-bottom: 7em;
}

.AreaInscrito2 {
    width: 80vw;
    color: #00365d;
}

.AreaInscrito4 {
    font-size: 1.5em;
    margin-bottom: 0.3em;
    font-weight: 700;
}

.AreaInscrito10 {
    display: grid;
    justify-content: center;
    gap: 0em;
}

.AreaInscrito11 {
    background-color: #e67e22;
    color: white;
    display: flex;
    text-align: center;
    align-items: anchor-center;
    gap: 1em;
    padding: 1em;
    margin: 2em 0em;
    border-radius: 1em;
    width: 80vw;
}

.AreaInscrito13 {
    text-decoration: underline;
    margin-bottom: 0.51em;
}

.AreaInscrito15 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 2em;
    height: auto;
    margin-bottom: 0 !important;
}

.AreaInscrito18 {
    height: 53vw;
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding: 2em 0em;
}

.AreaInscrito19 {
    padding: 1em 1em;
    background-color: #b6c72c;
    border-radius: 0.72em;
    font-weight: 600;
    color: white;
    width: 80vw;
}

.AreaInscrito20 {
    padding: 1em 1em;
    background-color: #e67e22;
    border-radius: 0.72em;
    font-weight: 600;
    color: white;
    width: 80vw;
}

.AreaInscrito29 {
    padding: 1em 1em;
    background-color: #b6c72c;
    border-radius: 0.72em;
    font-weight: 600;
    color: white;
    width: 80vw;
}

.AreaInscrito17 {
    margin-bottom: 2em;
}

.AreaInscrito22 {
    margin-right: 0em;
    display: flex;
    background-color: #e67e22;
    padding: 1em;
    align-items: center;
    margin-bottom: 2em;
}

.AreaInscrito21 {
    background-image: url('../../images/bannerIHCAreaInscritoMobile.png');
    height: 35vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: initial;
    height: 106vw;
    align-items: end !important;
    text-align: center;
    color: #fff !important;
    display: grid;
    place-items: center;
    margin-bottom: 11em;
    justify-content: center;
}


}


.inscreva33 {
    width: 49vw;
    text-align: left;
    border-top: 1px solid #00365d;
    border-bottom: 1px solid #00365d;
    padding: 0em;
    margin-bottom: 2em;
    padding: 2em;
}

.inscreva34{
    text-align: center;
    text-transform: uppercase;
    font-size: 1.5em;
    color: #00365d;
}

.inscreva35{
    margin-left: 1em;
    font-size: 0.78em;
    line-height: 0.8em;
}

.inscreva36{
    display: grid;
    align-items: flex-end;
    justify-content: left;
    gap: 1em;
}

.inscreva37{
    width: 23em;
}

#paraAssociados{

}

#naoAssociados{

}

#palestrantes{

}

#estudantes{

}

.classeOrientacao {
    margin-top: 2em;
    font-size: 1em;
}


/* Programação Científica */

  .tabs {
      display: flex;
      background: #2e3192;
    }

    .tab {
      color: white;
      padding: 10px 20px;
      cursor: pointer;
      border-right: 1px solid #fff;
    }

    .tab:hover {
      background: #1d1f75;
    }

    .agenda-date {
      font-size: 24px;
      font-weight: bold;
      padding: 20px;
    }

    .agenda {
      display: grid;
      grid-template-columns: 100px repeat(4, 1fr);
      border-top: 1px solid #ccc;
    }

    .time-col {
      background: #f0f0f0;
      padding: 10px;
      font-weight: bold;
      border-right: 1px solid #ccc;
    }

    .room-header {
      background: #222;
      color: white;
      text-align: center;
      padding: 10px;
      font-weight: bold;
      border-right: 1px solid #ccc;
    }

    .session {
      border-right: 1px solid #ccc;
      border-bottom: 1px solid #ccc;
      padding: 10px;
      background: #e3f9f8;
    }

    .pre-meeting {
      background: #b2f0ff;
      font-weight: bold;
    }

    .teaching-course {
      background: #d3f8cb;
      font-weight: bold;
    }

    .speaker {
      margin-top: 10px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .flag {
      width: 20px;
      height: auto;
      border-radius: 50%;
    }

    .discussion {
      background: #f6f6f6;
      font-style: italic;
    }

    .programacao-cientifica1{
    justify-content: space-around;
    position: relative;
    max-width: 100%;
    margin: 0 10%;
    padding: 20px;
    top: 12em;
    margin-bottom: 15em;
    }


.verifica1 {
    display: grid;
    top: 12em;
    position: relative;
    text-align: center;
    margin-bottom: 20em;
}

.verifica2 {
    display: grid;
    justify-content: center;
}

.verifica3 {
    font-size: 2em;
    margin-bottom: 1em;
    color: rgb(0, 28, 90);
}

.verifica4 {
    text-align: left;
    font-size: 1.3em;
    gap: 1em;
    display: grid;
    padding: 2em 1em;
    border-top: 1px solid #00365d;
    border-bottom: 1px solid #00365d;
}

.verifica5{

}

.verifica6 {
    font-weight: 700;
}

.verifica7 {
    font-size: 2em;
    font-weight: 700;
}

@media screen and (min-width: 1px) and (max-width: 700px) {

.verifica1 {
    display: grid;
    top: 7em;
    position: relative;
    text-align: center;
    margin-bottom: 10em;
}

.verifica3 {
    font-size: 1.2em;
    margin-bottom: 1em;
    color: rgb(0, 28, 90);
    /* padding: 0em 2em; */
    font-weight: 600;
    /* width: 74vw; */
    text-align: left;
    margin-left: 1em;
}

.verifica2 {
    display: grid;
    justify-content: center;
    width: 100vw;
}

.verifica1 {
    display: grid;
    top: 7em;
    position: relative;
    text-align: center;
    margin-bottom: 10em;
    width: 100vw;
}

.verifica4 {
    text-align: left;
    font-size: 1.3em;
    gap: 1em;
    display: grid;
    padding: 2em 1em;
    border-top: 1px solid #00365d;
    border-bottom: 1px solid #00365d;
    /* margin-left: 0em; */
    padding-right: 2em;
}

}   


@media screen and (min-width: 1px) and (max-width: 700px) {


.inscreva33 {
    width: auto;
    text-align: left;
    border-top: 1px solid #00365d;
    border-bottom: 1px solid #00365d;
    padding: 0em;
    margin-bottom: 2em;
    padding: 2em;
}

.classeOrientacao {
    margin-top: 2em;
    font-size: 1em;
    line-height: 1.5em;
}

.cliqueAquiOrange{
white-space: nowrap
}

.inscreva35 {
    margin-left: 0;
    font-size: 1em;
    line-height: 1.3em;
}

.inscreva9 {
    font-size: 1.1em;
}

.inscreva31 {
    font-size: 1.2em;
}

.inscreva3 {
    text-align: left;
    margin-left: 0.5em;
}

.AreaInscrito31 {
    display: grid;
    justify-content: center;
    margin-bottom: 3em;
}

.AreaInscrito33 {
    display: grid;
    text-align: center;
    gap: 0.3em;
    margin-right: 0em;
    text-align: center;
    justify-content: center;
    margin-bottom: 2em;
}


}


.programacao-cientifica1{   
    top: 9em;
}

.programacao-cientifica2 {
    display: flex;
    gap: 1em;
    margin-bottom: 2em;
    font-size: 1.5em;
}

.programacao-cientifica3 {
    padding: 0.51em 1em;
    background-color: #abc600;
    color: white;
    border-radius: 0.3em;
}

.menu-programacao-selected{
    background-color: rgb(0 54 93);
}

.programacao-cientifica4 {
    margin-bottom: 1em;
    font-size: 2em;
    color: rgb(0, 28, 90);
}

.programacao-cientifica5 {
    display: flex;
    border-top: 1px solid #d1d0d0;
    border-bottom: 1px solid #d1d0d0;
    padding: 2em 0em;
    align-items: flex-start; /* para alinhar topo */
    margin-bottom: 2em;
}

.scroll-top-wrapper {
  display: grid;
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  gap: 1em;

}

.programacao-cientifica6 {
    font-size: 1.3em;
    font-weight: 600;
    padding: 1em 1em;
    background-color: #00365d;
    color: white;
    margin-right: 1em;
    border-radius: 0.2em;

}

.programacao-cientifica7 {
  display: flex;
  gap: 1em;
  padding: 0em 1em;

}

.programacao-cientifica7 > div {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal; /* isso garante que o texto possa quebrar */
}


.programacao-cientifica8 {
    color: #555;
}

.programacao-cientifica9{

}

.programacao-cientifica10 {
    font-size: 1.1em;
    font-weight: 700;
}

.programacao-cientifica11 {
    width: 12%;
    background-color: #b6c72c;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 0.51em .2351em;
    border-radius: 2em;
    font-size: 0.75em;
    text-transform: uppercase;
}

.programacao-cientifica12 {
    display: flex;
    gap: 1em;
    align-items: center;
    padding-bottom: 0.5em;
    padding-top: 0.5em;
}

.programacao-cientifica13{

}

.programacao-cientifica14 {
    max-height: 4em;
    border-radius: 1.3em;
}

.programacao-cientifica15{

}

.programacao-cientifica16{

}

.programacao-cientifica17{

}

#programacao-cientifica18 {
    margin-right: 0.51em;
}

.programacao-cientifica19 {
    max-height: 1.5em;
}

.programacao-cientifica20 {
    background-color: #b6c72c;
    color: white;
    font-weight: 700;
    text-align: center;
    max-height: 1em;
    padding: 0.51em 0em;
}

.programacao-cientifica21{

}

.programacao-cientifica22 {
    gap: 0.31em;
    display: grid;
    margin-bottom: 1em;
    border-bottom: 1px solid #d3d3d3;
    min-height: 15em;
}

.programacao-cientifica23 {
    gap: 1em;
    display: grid;
    min-width: 40vw;
}

.comitees{
    background-color: rgb(0, 28, 90) !important;
}

.geral-programacao-cientifica{
    display: flex;
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  gap: 1em;
}

.scroll-button {
  position: fixed;
  top: 60%;
  transform: translateY(-50%);
  background-color: transparent; /* fundo transparente */
  color: #00365d; /* azul marinho para a seta */
  border: 0px solid #00365d;
  padding: 0.8em;
  border-radius: 50%;
  font-size: 1.5em;
  cursor: pointer;
  z-index: 10;
  box-shadow: none; /* remove sombra se n? quiser */
  transition: background-color 0.2s, color 0.2s;
}



#chevron{
    font-size: 2.5em;
  color: white;
  text-shadow:
    -1px -1px 0 #00365d,
     1px -1px 0 #00365d,
    -1px  1px 0 #00365d,
     1px  1px 0 #00365d;
}

.scroll-button.left {
  left: 10px;
}

.scroll-button.right {
  right: 10px;
}


.dia-da-programacao{
    
}

.programacao-cientifica24{
    margin-bottom: 1em;
    font-size: 2em;
    font-weight: 600;
    color: rgb(0, 28, 90);
    text-transform: uppercase;
    text-align: center;
}

@media screen and (min-width: 1px) and (max-width: 700px) {

.programacao-cientifica1 {
    top: 24em;
}

.programacao-cientifica24 {
    margin-bottom: 1em;
    font-size: 1.53em;
    font-weight: 600;
    color: rgb(0, 28, 90);
    text-transform: uppercase;
    text-align: center;
}

.programacao-cientifica1 {
    top: 6em;
    padding: 0;
    margin: 0em 1em;
    margin-bottom: 9em;
}

.programacao-cientifica4 {
    margin-bottom: 1em;
    font-size: 1.5em;
    color: rgb(0, 28, 90);
}

.scroll-button {
    position: fixed;
    top: 90%;
    transform: translateY(-50%);
    background-color: transparent;
    color: #00365d;
    border: 0px solid #00365d;
    padding: 0.8em;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 10;
    box-shadow: none;
    transition: background-color 0.2s, color 0.2s;
}

.programacao-cientifica6 {
    font-size: 1.1em;
    font-weight: 600;
    padding: 1em 0.45em;
    background-color: #00365d;
    color: white;
    margin-right: -1em;
    border-radius: 0.2em;
}

.programacao-cientifica20 {
    background-color: #b6c72c;
    color: white;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    max-height: 1em;
    padding: 0.51em 0.3em;
    font-size: 0.8em;
}

.programacao-cientifica8 {
    color: #555;
    font-size: 0.9em;
}

.programacao-cientifica10 {
    font-size: 0.95em;
    font-weight: 700;
}

.programacao-cientifica9 {
    font-size: 0.75em;
}

.programacao-cientifica11 {
    width: 7em;
    background-color: #b6c72c;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 0.51em .2351em;
    border-radius: 2em;
    font-size: 0.7em;
    text-transform: uppercase;
}

.programacao-cientifica23 {
    gap: .51em;
    display: grid;
    min-width: 51vw;
}

}

@media (max-width: 768px) {

.paginacao {
    width: auto !important;
}

.programacao-cientifica22 {
    gap: 0.31em;
    display: grid;
    margin-bottom: 1em;
    border-bottom: 1px solid #d3d3d3;
    min-height: 17em;
    min-width: 12em;
    padding-right: 3em;
}

.programacao-cientifica12 {
    display: grid !Important;
}

}

/* CSS da rea de Simpsio */


.inscrevaSimposio0{

    top: -14em !important;
}

@media screen and (min-width: 1px) and (max-width: 700px) {

.inscrevaSimposio0 {
    top: -6em !important;
}

.inscrevaSimposio1 {
    max-width: 73vw;
}

.inscrevaSimposio2 {
    text-align: center;
}

.inscrevaSimposio3 {
        max-width: 79vw;
}

.inscrevaSimposio4 {
        padding: 1em;
}

.inscrevaSimposio5{
    margin-bottom: 1em;
    display: grid;
    justify-content: center;
}

.inscrevaSimposio6{
    max-width: 80vw;
    padding-left: 10vw;
}



}



/* CSS POP-UP */

.popup2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup2-content {
    position: relative;
    background: #fff;
    width: 50%;
    aspect-ratio: 16 / 6;
    max-width: 800px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    padding: 1em;
    text-align: center;
    border: 5px solid rgb(0, 28, 90);
    border-radius: 1em;
    font-size: 1.2em;
}

.video-wrapper {
  width: 100%;
  height: 100%;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

@media (max-width: 768px) {
.popup2-content {
    width: 69vw;
    height: 27em;
}
}


/* CSS CURSO DE ANATOMIA CRANIANA 3D */

.curso-anatomia1 {
    display: grid;
    justify-content: center;
    margin-top: 2em;
}

.curso-anatomia2 {
    display: flex;
    align-items: center;
    width: 90vw;
    margin-bottom: 3em;
}

.curso-anatomia3{

}

.curso-anatomia4 {
    border-radius: 100%;
    border: 2px solid #00365d;
    width: 21vw;
    margin-right: 1em;
}

.curso-anatomia5 {
    text-align: left;
    align-items: flex-start;
    display: grid;
}

.curso-anatomia6 {
    font-size: 1.7em;
    font-weight: 700;
    color: #00365d;
    margin-right: 1em;
}

.curso-anatomia7{

}

.curso-anatomia8 {
    text-align: justify;
    color: #00365d;
}

.curso-anatomia9 {
    background-image: url('../../images/bcg curso desktop.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 2em 0em;
    color: white;
    display: grid;
    gap: 1em;
}

.curso-anatomia10 {
    font-weight: 900;
    font-size: 1.2em;
}

.curso-anatomia11{

}

.curso-anatomia12 {
    font-size: 0.7em;
    font-weight: 100;
}

.curso-anatomia13{

}

.curso-anatomia14 {
    background-color: #b6c72c;
    padding: 0.3em 1em;
    text-decoration: underline;
    border-radius: 0.35em;
}

.curso-anatomia15 {
    background-color: #e67e22;
    padding: 0.51em 0em;
    font-size: 1.74em;
    font-weight: 700;
    margin: 0.7em 0em;
}

.curso-anatomia16{

}

.curso-anatomia17 {
    color: #fbe105;
}

.curso-anatomia18 {
    font-size: 1.74em;
    font-weight: 700;
}

.curso-anatomia19 {
    margin: 0.5em 0em;
}

.curso-anatomia20 {
    background-color: #e67e22;
    text-decoration: underline;
    padding: 0.5em 0.7em;
    border-radius: 0.3em;
    font-size: 0.8em;
}

.curso-anatomia21 {
    margin-bottom: -1em;
    font-size: 0.7em;
}

.curso-anatomia22 {
    font-size: 0.7em;
    color: #b6c72c;
}

.curso-anatomia23 {
    display: flex;
    margin-bottom: 1.5em;
}

.curso-anatomia24{

}

@media screen and (min-width: 1px) and (max-width: 700px) {

.curso-anatomia2 {
    display: grid;
    align-items: center;
    width: 90vw;
    margin-bottom: 3em;
}

.curso-anatomia4 {
    border-radius: 100%;
    border: 2px solid #00365d;
    width: 56vw;
    margin-right: 0em;
}

.curso-anatomia6 {
    font-size: 1em;
    font-weight: 700;
    color: #00365d;
    margin-right: 0em;
    width: 64vw;
}

.curso-anatomia23 {
    display: flex;
    margin-bottom: 1.5em;
    margin: 1em 0em;
    justify-content: center;
}

.curso-anatomia7 {
    height: 1.5em;
}

.curso-anatomia8 {
    text-align: justify;
    color: #00365d;
    font-size: 0.9em;
}

}


/*POP UP FIM DAS INSCRIES */


.close-btn2 {
    position: absolute;
    top: 8px;
    right: 12px;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.popup2-content2 {
    position: relative;
    background: #00216a;
    /* width: 50%; */
    /* aspect-ratio: 16 / 6; */
    /* max-width: 800px; */
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    /* padding: 1em; */
    text-align: center;
    border: 5px solid rgb(0, 28, 90);
    border-radius: 1em;
    font-size: 1.2em;
}

    .imgAlertaDias{
        height: 38vw;
    }

@media (max-width: 768px) {
    .imgAlertaDias{
        width: 77vw;
        height: 100vw;
    }

    .popup2-content2 {
    position: relative;
    display: flex;
    justify-content: flex-start;
    background: #00216a;
    margin-left: -3em;
    /* width: 50%; */
    /* aspect-ratio: 16 / 6; */
    /* max-width: 800px; */
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    /* padding: 1em; */
    text-align: left;
    border: 5px solid rgb(0, 28, 90);
    border-radius: 1em;
    font-size: 1.2em;
}

}

/*Novo CSS*/


.simposios-workshops5 {
    background-color: #b6c72c;
    color: #00365d;
    padding: 1.25em 0em .5em 0em;
    border-radius: 1.25em 1.25em 0em 0em;
    font-weight: 600;
    font-size: 1.55em;
}

.simposios-workshops9 {
    font-size: 1.5em;
    font-weight: 900;
    width: 48vw;
}

.simposios-workshops4 {
    width: 12vw;
}

.simposios-workshops7 {
    max-width: 8vw;
    /* background-color: white; */
}

.simposios-workshops13 {
    font-weight: 700;
}

@media (max-width: 768px) {

.simposios-workshops3 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 101vw;
    margin-bottom: 2em;
    text-align: center;
    color: #fff !important;
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 0em;
    place-items: center;
}

.simposios-workshops10 {
    display: grid;
    justify-content: space-around;
    gap: 0.51em;
}

.simposios-workshops8 {
    display: grid;
    gap: 0.51em;
    text-align: center;
    justify-content: center;
    place-items: center;
}

.simposios-workshops5 {
    background-color: #b6c72c;
    color: #00365d;
    padding: 0.5em 0em .25em 0em;
    border-radius: 1.25em 1.25em 0em 0em;
    font-weight: 600;
    font-size: 1em;
    width: 29vw;
}

.simposios-workshops6 {
    background-color: white;
    height: 20vw;
    display: grid;
    width: 29vw;
    justify-content: center;
    align-items: center;
    border-radius: 0em 0em 1.25em 1.25em;
}

.simposios-workshops7 {
    max-width: 21vw;
    margin-top: 0.5em;
}

.simposios-workshops9 {
    font-size: 1.15em;
    font-weight: 900;
    width: 92vw;
}

.simposios-workshops13 {
    max-width: 70vw;
    text-align: center;
    display: grid;
    gap: 0.5em;
    font-size: 0.8em;
}

}



/*NOVO CSS*/



@media (max-width: 768px) {

.programacao-cientifica22 {
    gap: 0.31em;
    display: grid;
    margin-bottom: 1em;
    border-bottom: 1px solid #d3d3d3;
    min-height: 20em;
    min-width: 12em;
    padding-right: 3em;
}

.programacao-cientifica11 {
    width: 20vw !important;
    background-color: #b6c72c;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 0.51em .2351em;
    border-radius: 2em;
    font-size: 0.75em;
    text-transform: uppercase;
}

}

.programacao-cientifica11 {
    width: 7vw;
    background-color: #b6c72c;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 0.51em .2351em;
    border-radius: 2em;
    font-size: 0.75em;
    text-transform: uppercase;
}
