/* Fonte PG-SBM */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'PT Sans', sans-serif;
}

html{
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.center{
    max-width: 100%;
    margin: 0 auto;
    padding: 2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

header{
    background-color: white;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

header.scrolled{
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

header .center{
    max-width: 1280px;
    justify-content: space-between;
    align-items: center;
    padding: 4px 40px;
}

.logo{
    position: relative;
    display: block;
    width: 95px;
    height: 70px;
    background-image: url(/img/SProativa/Logo\ Pro-Ativa.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
    z-index: 9999;
    transition: opacity 0.3s ease;
}
.logo:hover{
    cursor: pointer;
    opacity: 0.75;
}

/* nova versão do menu hamburger version --2.0 */
#nav{
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    position: relative;
}
#menu{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}
#menu li{
    list-style-type: none;
    padding: 0;
}
#menu li a{
    padding: 8px 16px;
    display: block;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #2c3e50;
    border-radius: 6px;
    transition: color 0.25s ease;
    position: relative;
    letter-spacing: 0.2px;
}
#menu li a::after{
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: #007bff;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}
#menu li a:hover{
    color: #007bff;
}
#menu li a:hover::after{
    transform: scaleX(1);
}

#menu li a.active{
    color: #007bff;
}
#menu li a.active::after{
    transform: scaleX(1);
}

/* Botão CTA - Contato */
#menu li a.menu-cta{
    color: white;
    background-color: #007bff;
    border-radius: 8px;
    padding: 8px 22px;
    margin-left: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
#menu li a.menu-cta::after{
    display: none;
}
#menu li a.menu-cta:hover{
    color: white;
    background-color: #0056b3;
    transform: translateY(-1px);
}
#menu li a.menu-cta.active{
    background-color: #0056b3;
}

.hide{
    display: none;
}

#btnMenu{
    display: none;
}

/*
Section main - Hero
*/
section.main{
    background-image: url('/img/SProativa/Home.png');
    padding: 100px 0 60px;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

section.main::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,20,40,0.65) 0%, rgba(0,30,60,0.50) 100%);
}

section.main .center{
    position: relative;
    z-index: 1;
}

.main_cta{
    width: 100%;
    margin: 40px 0 50px;
    text-align: center;
}

.main_cta h2{
    color: white;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.main_cta p{
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    margin: 12px 0 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.main_cta button{
    background-color: #007bff;
    display: inline-block;
    padding: 12px 36px;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.main_cta button:hover{
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.diferenciais{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.diferencial_single{
    border-radius: 14px;
    background-color: white;
    width: calc(25% - 20px);
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.diferencial_single:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.diferencial-icon{
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e8f2ff 0%, #d0e4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.diferencial_single i{
    color: #007bff;
    font-size: 22px;
}

.diferencial_single h2{
    color: #124265;
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.3px;
}

.diferencial_single p{
    text-align: center;
    color: #6c7a8a;
    font-size: 13px;
    line-height: 21px;
    flex-grow: 1;
    margin-bottom: 18px;
}

.diferencial-link{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #007bff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.diferencial-link:hover{
    color: #0056b3;
    gap: 10px;
}

.diferencial-link i{
    font-size: 11px;
    transition: transform 0.3s ease;
}

.diferencial-link:hover i{
    transform: translateX(2px);
}

.diferencial_single button{
    background-color: transparent;
    display: inline-block;
    padding: 8px 24px;
    color: #007bff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid #007bff;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.diferencial_single button:hover{
    background-color: #007bff;
    color: white;
}

.diferencial_single button a{
    color: inherit;
    text-decoration: none;
    text-align: center;
}

/*      SEÇÃO OBJETIVOS PRINCIPAIS      */
.objetivos-section{
    padding: 60px 20px;
    background-color: #f0f5fa;
}

.objetivos-section .center{
    flex-direction: column;
    align-items: center;
}

.objetivos-header{
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.objetivos-header h2{
    color: #124265;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.objetivos-header p{
    font-size: 14px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 22px;
    font-style: italic;
}

.objetivos-grid{
    display: flex;
    gap: 30px;
    justify-content: center;
    width: 100%;
    max-width: 960px;
}

.objetivo-card{
    background: white;
    border-radius: 12px;
    padding: 36px 30px;
    flex: 1;
    max-width: 460px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid #007bff;
}

.objetivo-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.objetivo-num{
    font-size: 56px;
    font-weight: 800;
    color: rgba(0, 123, 255, 0.08);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.objetivo-card h3{
    color: #124265;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.objetivo-card p{
    color: #555;
    font-size: 14px;
    line-height: 23px;
}

/*      SEÇÃO RELÓGIO      */
.relogio-section{
    background-color: white;
    padding: 44px 20px;
    text-align: center;
}

.relogio-label{
    color: #124265;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 22px;
    font-weight: 600;
}

.relogio-display{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.relogio-bloco{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.relogio-numero{
    font-size: 42px;
    font-weight: 700;
    color: #124265;
    background: #f0f5fa;
    border-radius: 12px;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 2px;
    font-variant-numeric: tabular-nums;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.relogio-separador{
    font-size: 32px;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 28px;
}

.relogio-legenda{
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

/* Rodapé */
.footer{
    background: #0c2d48;
    padding: 0;
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-content{
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 24px 36px;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.footer-brand{
    flex: 1.3;
}

.footer-logo{
    width: 80px;
    height: auto;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
}

.footer-brand p{
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 21px;
    margin: 0;
}

.footer-links{
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links h4{
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.footer-links a{
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-links a:hover{
    color: #5db8fe;
}

.footer-bottom{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 18px 24px;
}

.footer-bottom span{
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

footer span{
    color: white;
    font-size: 13px;
}

footer p{
    color: white;
    font-size: 13px;
    margin: 5px auto;
}

footer p a{
    color: rgb(51, 172, 51);
}

/*      PAGINA BEMVINDO-SBM      */
.diferencial_single-sbm{
    border-radius: 10px;
    background-color: white;
    width: 26%;
    margin-right: 2%;
    margin-left: 37.2%;
    text-align: center;
    background:transparent;
    padding: 0 20px;
}

.diferencial_single-sbm i{
    color: #855d36;
    font-size: 21px;
}

.diferencial_single-sbm h1{
    color: #855d36;
    font-size: 35px;
    margin-top: 10%;
    margin-bottom: 10%;
    margin-right: 0;
}

.diferencial_single-sbm p{
    text-align: justify;
    color: #855d36;
    padding-bottom: 10px;
    width: 100%;
}

.diferencial_single-sbm button{
    background-color: #855d36;
    margin-right: 0;
    display: inline-block;
    padding: 8px 30px;
    color: white;
    border-radius: 6px;
    font-size: 12px;
    border: 0;
    cursor: pointer;
    text-align: center;
}

.diferencial_single-sbm button a{
    color: white;
    text-decoration: none;
    text-align: center;
}

.background-parchment{
    background-image: url(/img/SProativa/papel_parchment_background_opition.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 500px;
    height: 1000px;
    left: 400px;
}

.especial{
    font-family: 'Great Vibes', cursive;
    font-size: 20px;
}

/*      ScrollReveal Index      */
.scrollRevealTwo{
    visibility: hidden;
}
#scrollRevealOne, #scrollRevealTwoo, #scrollRevealThree, #scrollRevealFour{
    visibility: hidden;
}

#scrollRevealObj, #scrollRevealObjTwo{
    visibility: hidden;
}

/*      SUBPAGES - Objetivos, Áreas, Diretrizes, Fundamentos      */
.subpage-hero{
    background: linear-gradient(135deg, #024B75 0%, #0a6baa 50%, #1a8ad4 100%);
    background-size: cover;
    background-position: center top;
    position: relative;
    padding: 70px 24px 60px;
    text-align: center;
}

.subpage-hero::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2,75,117,0.88) 0%, rgba(10,107,170,0.82) 100%);
}

.hero-sobre{
    background-image: url('/img/SProativa/Home2.png');
}

.hero-objetivos{
    background: linear-gradient(135deg, #024B75 0%, #0b6fad 50%, #1890d0 100%);
}
.hero-objetivos::before{
    background: none;
}

.hero-areaatua{
    background: linear-gradient(135deg, #065a60 0%, #0a9396 50%, #38b2ac 100%);
}
.hero-areaatua::before{
    background: none;
}

.hero-diretrizes{
    background: linear-gradient(135deg, #1a1a5e 0%, #2d3a8c 50%, #4361b8 100%);
}
.hero-diretrizes::before{
    background: none;
}

.hero-fundamentos{
    background: linear-gradient(135deg, #1b2a4a 0%, #2c4a7c 50%, #3a6baa 100%);
}
.hero-fundamentos::before{
    background: none;
}

.hero-contato{
    background: linear-gradient(135deg, #0a3d2f 0%, #0d6b4f 50%, #14a06e 100%);
}
.hero-contato::before{
    background: none;
}

.hero-editais{
    background: linear-gradient(135deg, #0c3547 0%, #145a7a 50%, #1a7aaa 100%);
}
.hero-editais::before{
    background: none;
}

/*      PORTAL DE CREDENCIAMENTO      */
.portal-container{
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.portal-welcome{
    padding: 56px 0;
    background: white;
}

.portal-welcome > .portal-container > h2{
    color: #124265;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700;
}

.portal-welcome > .portal-container > p{
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 36px;
    font-style: italic;
}

.portal-info-grid{
    display: flex;
    gap: 24px;
}

.portal-info-card{
    flex: 1;
    padding: 28px 24px;
    background: #f8fbfe;
    border-radius: 10px;
    border-left: 4px solid #007bff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portal-info-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.portal-info-card h4{
    color: #124265;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 700;
}

.portal-info-card p{
    color: #555;
    font-size: 14px;
    line-height: 22px;
}

.portal-editais{
    padding: 56px 0 70px;
    background: #f0f5fa;
}

.portal-editais > .portal-container > h2{
    color: #124265;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700;
}

.portal-editais-desc{
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 32px;
}

.portal-editais-list{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.edital-card{
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.edital-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.edital-card-icon{
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: #fef2f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edital-card-icon i{
    font-size: 24px;
    color: #dc2626;
}

.edital-card-info{
    flex: 1;
}

.edital-card-info h3{
    color: #124265;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.edital-meta{
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    align-items: center;
}

.edital-tag{
    background: #e8f2ff;
    color: #007bff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.edital-status{
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.edital-status.aberto{
    background: #ecfdf5;
    color: #059669;
}

.edital-status.encerrado{
    background: #fef2f2;
    color: #dc2626;
}

.edital-card-info p{
    color: #666;
    font-size: 13px;
    line-height: 20px;
}

.edital-download{
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.edital-download:hover{
    background-color: #0056b3;
    transform: translateY(-1px);
}

@media screen and (max-width: 768px){
    .portal-info-grid{
        flex-direction: column;
    }
    .edital-card{
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
    .edital-meta{
        justify-content: center;
    }
    .edital-card-info p{
        text-align: center;
    }
}

.subpage-hero *{
    position: relative;
    z-index: 1;
}

.subpage-hero h1{
    color: white;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 700;
}

.subpage-hero .subpage-subtitle{
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 24px;
}

.subpage{
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    min-height: calc(100vh - 400px);
}

.subpage-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subpage-content.subpage-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.subpage-card{
    background: white;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #007bff;
}

.subpage-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.subpage-card h3{
    color: #124265;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.subpage-card p{
    color: #5a6a7a;
    font-size: 14px;
    line-height: 22px;
}

.subpage-list-card{
    background: white;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.subpage-list-card p{
    color: #444;
    font-size: 15px;
    line-height: 26px;
    text-align: justify;
    margin-bottom: 16px;
}

.subpage-list-card p:last-child{
    margin-bottom: 0;
}

.subpage-list-card h3{
    color: #124265;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.subpage-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.subpage-list li{
    padding: 14px 0;
    border-bottom: 1px solid #f0f2f5;
    color: #444;
    font-size: 15px;
    line-height: 24px;
    padding-left: 16px;
    position: relative;
}

.subpage-list li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #007bff;
}

.subpage-list li:last-child{
    border-bottom: none;
}

.subpage-actions{
    text-align: center;
    margin-top: 40px;
}

.subpage-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.subpage-btn:hover{
    background-color: #0056b3;
    transform: translateY(-2px);
}

.subpage-btn i{
    font-size: 13px;
}

/* Responsividade - TABLET */
@media screen and (max-width: 600px){
    header{
        height: auto;
        position: sticky;
        top: 0;
    }
    header .center{
        padding: 0 16px;
    }
    .logo{
        width: 60px;
        height: 60px;
    }
    .relogio-display{
        gap: 8px;
    }
    .relogio-numero{
        font-size: 30px;
        width: 64px;
        height: 64px;
        border-radius: 10px;
    }
    .relogio-separador{
        font-size: 24px;
        margin-bottom: 18px;
    }
    .relogio-section{
        padding: 30px 16px;
    }
    .diferencial_single{
        width: 100%;
        margin-bottom: 0;
        padding: 24px 20px;
        flex-direction: column;
    }
    .objetivos-grid{
        flex-direction: column;
        gap: 20px;
    }
    .objetivo-card{
        max-width: 100%;
    }
    .objetivo-num{
        font-size: 42px;
    }
    .objetivos-section{
        padding: 40px 0;
    }
    .relogio-legenda{
        font-size: 9px;
        letter-spacing: 1px;
    }
    .footer-content{
        flex-direction: column;
        gap: 28px;
        padding: 36px 20px 28px;
    }
    .footer-links{
        gap: 6px;
    }
    /* Menu version 2.0 */
    #nav{
        display: flex;
        position: relative;
        height: auto;
        z-index: 99999;
    }
    #menu{
        display: block;
        position: absolute;
        width: 200px;
        right: 0;
        top: 50px;
        height: 0;
        background: white;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        border-radius: 12px;
        transition: height 0.35s ease, visibility 0.35s ease, opacity 0.35s ease;
        visibility: hidden;
        overflow-y: hidden;
        opacity: 0;
    }
    #nav.active #menu{
        height: auto;
        visibility: visible;
        overflow-y: visible;
        padding: 8px 0;
        opacity: 1;
    }
    #menu li{
        width: 100%;
        border-right: none;
    }
    #menu li a{
        width: 100%;
        font-size: 14px;
        padding: 12px 20px;
        margin: 0;
        border-bottom: none;
        border-radius: 0;
        text-align: left;
        color: #2c3e50;
    }
    #menu li a::after{
        display: none;
    }
    #menu li a:hover{
        background-color: #f0f7ff;
        color: #007bff;
    }
    #menu li a.menu-cta{
        background-color: transparent;
        color: #007bff;
        font-weight: 600;
        margin: 0;
        padding: 12px 20px;
        border-radius: 0;
        border-top: 1px solid #f0f0f0;
    }
    #menu li a.menu-cta:hover{
        background-color: #f0f7ff;
        transform: none;
    }
    #btnMenu{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        padding: 0;
        font-size: 1rem;
        border: none;
        border-radius: 10px;
        background: none;
        color: #2c3e50;
        cursor: pointer;
        transition: background-color 0.25s ease;
    }
    #btnMenu:hover{
        background-color: #f0f7ff;
    }
    #hamburger{
        display: block;
        border-top: 2px solid currentColor;
        width: 20px;
    }
    #hamburger::after, #hamburger::before{
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: .4s ease;
        position: relative;
    }
    /* Transforma em X */
    #nav.active #hamburger{
        border-top-color: transparent;
    }
    #nav.active #hamburger::before{
        transform: rotate(135deg);
    }
    #nav.active #hamburger::after{
        transform: rotate(-135deg);
        top: -7px;
    }

    section.main{
        background-image: url(/img/SProativa/Home.png);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 60px 0 40px;
    }
    .main_cta h2{
        font-size: 24px;
    }
    .main_cta p{
        font-size: 16px;
    }

    /* Subpages responsivo */
    .subpage-hero{
        padding: 50px 16px 40px;
    }
    .subpage-hero h1{
        font-size: 24px;
    }
    .subpage{
        padding: 30px 16px 40px;
    }
    .subpage-content.subpage-grid{
        grid-template-columns: 1fr;
    }
    .subpage-card{
        padding: 22px 18px;
    }
    .subpage-list-card{
        padding: 22px 18px;
    }

    /* Pergaminho */
    .background-parchment{
        max-width: 100%;
        background-size: 100%;
    }
    .diferencial_single-sbm{
        width: 70%;
        text-align: center;
        margin-left: 15%;
        margin-right: 0;
        padding: 0 15px;
    }
}

@media screen and (max-width: 480px){
    #menu li{
        margin-right: 30px;
    }

    /* Pergaminho */
    .diferencial_single-sbm h1{
        margin-bottom: 2%;
    }
    .background-parchment{
        max-width: 100%;
        background-size: 100%;
    }
    .diferencial_single-sbm{
        width: 65%;
        margin-left: 18%;
        padding: 0 10px;
    }
    .diferencial_single-sbm button{
        margin-top: 30px;
    }
    .hide{
        display: none;
    }
}
