/* projeto mobile-first */

@charset "UTF-8";

@media (min-width: 865px) {
    .desktop-none {
        display: none!important;
    }

    .insc-mobile {
        display: none;
    }
}


/* Menu hamburguer mobile */

@media (max-width: 864px) {
      
    .mobile-none {
        display: none;
    }
    
    .menu-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .menu-header .menu-list {
        display: flex;
        position: relative;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.3s, transform 0.3s;
        position: absolute;
        top: 58px;
        right: 0px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 16px rgba(0,0,0,0.08);
        flex-direction: column;
        gap: 0;
        padding: 16px;
        min-width: 180px;
        z-index: 999;
        width: 100%;
        height: 90vh;
    }

    .menu-header .menu-list.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
 
    .menu-header .logo img {
        max-width: 160px;
    }

    .menu-list {
        text-align: center;
    }
    .menu-list li {
        padding: 10px 0px
    }

    .insc-desktop {
        display: none;
    }

    .cronograma-card h3 {
        font-size: 17px;
    }

    .menu-list .btn-primary-ex {
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        border-radius: 6px;
        color: #fff;
        background: var(--primaria);
        border: none;
        padding: 16px 0;
        cursor: pointer;
        text-align: center;
        margin-left: 0;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primaria);
        color: #fff;
        border: none;
        font-size: 25px;
        line-height: 1;
        cursor: pointer;
        margin-left: 16px;
        height: 30px;
        width: 30px;
        border-radius: 4px;
    }


    .menu-toggle.menu-close {
        font-size: 32px;
        padding-bottom: 0;
    }

    .grid-2 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .grid-3 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .grid-5 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    
    .img-quiz {
        right: 150px;
    }

    .cronograma-tabs .tab {
        min-width: 100px;
        font-size: 13px;
        padding: 8px 10px;
    }
    .cronograma-scroll-msg {
        font-size: 14px;
        color: var(--primaria);
        margin-bottom: 8px;
        text-align: center;
        
    }

    .hg-hoteis {
        height: auto;
    }

    .cidades-tabs .tab {
       margin-bottom: 10px;
    }

    .cronograma-card p {
        font-size: 15px;
    }

    
    .info-card {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: start;
    }  
    
    .cronograma-hora {
        font-size: 12px
    }

    .card-quiz {
        height: auto;
        padding: 10px;
    }

    .btn-area {
        position: static !important;
        width: 100%;
        margin-top: 24px;
        display: flex;
        justify-content: center;
        text-align: center;
        max-width: 100%;
    }

    .pt-email {
        padding-top: 10px;
    }

    .section-quiz {
        height: auto;
        background-image: url(../img/bg-quiz.png);
        background-position: bottom;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .card-quiz {
        border-radius: 0px;
    }

    .section-quiz .card-quiz {
        margin: 0;
    }

    .img-quiz {
        right: 20px;
        bottom: 20px;
        
    }

    .img-quiz img {
        width: 120px;
    }

    .fotos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}


@media (max-width: 1224px) {
    .grid-sobre {
        margin-top: 0px;
    }

}

