/* ==========================================================
   HERO MOBILE
========================================================== */

.hero{

    display:none;

}

.hero-mobile{

    display:block;

    position:relative;

    overflow:hidden;

    padding:0 0 56px;

    background:
        radial-gradient(circle at top center,
        rgba(14,78,166,.10) 0%,
        rgba(14,78,166,0) 48%),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f9fc 100%
        );

}

.hero-mobile::before{

    content:"";

    position:absolute;

    left:50%;

    top:-260px;

    transform:translateX(-50%);

    width:760px;

    height:760px;

    border-radius:50%;

    background:

        radial-gradient(circle,

        rgba(37,99,235,.22) 0%,

        rgba(37,99,235,.10) 35%,

        rgba(37,99,235,.03) 60%,

        transparent 80%);

    filter:blur(18px);

    z-index:0;

}



.hero-mobile .container{

    position:relative;

    z-index:2;

    width:100%;

    max-width:430px;

    margin:0 auto;

    padding:0 22px;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

}



.hero-mobile-image{

    position:relative;

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-top:-58px;

    margin-bottom:4px;

    z-index:5;

}

.hero-mobile-image img{

    display:block;

    width:100%;

    max-width:400px;

    height:auto;

    position:relative;

    z-index:3;

    filter:
        drop-shadow(0 18px 24px rgba(0,0,0,.12))
        drop-shadow(0 38px 65px rgba(0,0,0,.20));

    transition:.35s ease;

}


.hero-mobile-image::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:2px;

    transform:translateX(-50%);

    width:78%;

    height:44px;

    border-radius:50%;

    background:

        radial-gradient(

            ellipse,

            rgba(25,40,80,.22),

            rgba(25,40,80,.08),

            transparent 75%

        );

    filter:blur(18px);

    z-index:1;

}

.hero-mobile-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 20px;

    border-radius:999px;

    background:#edf4ff;

    color:#1f5fd6;

    font-size:.92rem;

    font-weight:700;

    margin-top:-70px;
    margin-bottom:10px;
    position:relative;
    z-index:10;

    box-shadow:

        0 12px 28px rgba(31,95,214,.10);

}

.hero-mobile h1{

    margin:0 0 10px;

    max-width:340px;

    font-size:2.7rem;

    line-height:1.02;

    letter-spacing:-.055em;

    font-weight:900;

    color:#14213d;

}

.hero-mobile p{

    max-width:335px;

    margin:12px 0 24px;

    font-size:1rem;

    line-height:1.75;

    color:#66758c;

}

.hero-mobile .btn{

    width:100%;

    max-width:330px;

    min-height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    font-size:1rem;

    font-weight:700;

    box-shadow:

        0 18px 35px rgba(14,78,166,.20);

}

/* ==========================================================
   HEADER MOBILE
========================================================== */

.header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    height:64px;

    background:rgba(11,34,72,.96);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.06);

    z-index:9999;

}

.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:64px;

    padding:0 16px;

}

.logo{

    display:flex;

    align-items:center;

    flex:1;

}

.logo img{

    display:block;

    width:148px;

    height:auto;

}

.navbar-menu{

    display:none;

}

.navbar-actions{

    display:none;

}

/* ==========================================================
   HAMBURGER BUTTON
========================================================== */

.navbar-toggle{

    display:flex;

    align-items:center;

    justify-content:center;

    width:46px;

    height:46px;

    border:none;

    border-radius:12px;

    background:transparent;

    color:#ffffff;

    cursor:pointer;

    transition:
        background .25s ease,
        transform .20s ease;

}

.navbar-toggle:hover{

    background:rgba(255,255,255,.08);

}

.navbar-toggle:active{

    transform:scale(.95);

}

.menu-icon{

    width:28px;

    height:28px;

    fill:none;

    stroke:currentColor;

    stroke-width:2.2;

    stroke-linecap:round;

    stroke-linejoin:round;

    transition:transform .25s ease;

}

.navbar-toggle:hover .menu-icon{

    transform:scale(1.05);

}

/* ==========================================================
   MOBILE MENU
========================================================== */

.navbar-menu{

    position:fixed;

    top:72px;

    right:-100%;

    width:85%;

    max-width:360px;

    height:calc(100vh - 72px);

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    justify-content:flex-start;

    gap:0;

    padding:28px 24px 40px;

    background:#0B2248;

    box-shadow:

        -18px 0 40px rgba(0,0,0,.22);

    transition:right .35s ease;

    overflow-y:auto;

    z-index:9998;

}

.navbar-menu.active{

    right:0;

}

.navbar-menu a{

    width:100%;

    display:flex;

    align-items:center;

    justify-content:flex-start;

    padding:18px 0;

    color:#ffffff;

    text-decoration:none;

    font-size:1.05rem;

    font-weight:600;

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:

        color .25s ease,

        padding-left .25s ease;

}

.navbar-menu a:hover{

    color:#D4AF37;

    padding-left:8px;

}

.navbar-menu a:last-child{

    border-bottom:none;

}

/* ==========================================================
   MENU OVERLAY
========================================================== */

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:

        opacity .30s ease,

        visibility .30s ease;

    z-index:9997;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

/* ==========================================================
   HAMBURGER
========================================================== */

.navbar-toggle{

    display:flex;

    align-items:center;

    justify-content:center;

    width:46px;

    height:46px;

    border:none;

    border-radius:12px;

    background:transparent;

    color:#ffffff;

    cursor:pointer;

    transition:

        background .25s ease,

        transform .25s ease;

}

.navbar-toggle:hover{

    background:rgba(255,255,255,.08);

}

.navbar-toggle:active{

    transform:scale(.95);

}

.navbar-toggle svg{

    width:28px;

    height:28px;

}

/* ==========================================================
   MENU CLOSE
========================================================== */

.menu-close{

    align-self:flex-end;

    display:flex;

    align-items:center;

    justify-content:center;

    width:44px;

    height:44px;

    margin-bottom:18px;

    border:none;

    border-radius:12px;

    background:rgba(255,255,255,.08);

    color:#ffffff;

    cursor:pointer;

    transition:

        background .25s ease,

        transform .25s ease;

}

.menu-close:hover{

    background:rgba(255,255,255,.14);

}

.menu-close:active{

    transform:scale(.95);

}

.menu-close svg{

    width:24px;

    height:24px;

}

/* ==========================================================
   FEATURES MOBILE
========================================================== */

.features{

    padding:72px 0;

}

.features .section-header{

    margin-bottom:42px;

}

.features .section-title{

    max-width:340px;

    margin:0 auto 18px;

    font-size:2rem;

    line-height:1.18;

    text-align:center;

}

.features .section-description{

    max-width:340px;

    margin:0 auto;

    font-size:1rem;

    line-height:1.9;

    text-align:center;

    color:#66758c;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    align-items:stretch;

}

.feature-card{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

    text-align:center;

    padding:28px 18px;

    border-radius:22px;

    min-height:235px;

}

.feature-icon{

    width:72px;

    height:72px;

    margin-bottom:18px;

    font-size:2rem;

    display:flex;

    align-items:center;

    justify-content:center;

}

.feature-card h3{

    margin:0 0 14px;

    font-size:1.12rem;

    line-height:1.3;

}

.feature-card p{

    margin:0;

    font-size:.92rem;

    line-height:1.7;

}

/* ==========================================================
   SEARCH SECTION MOBILE
========================================================== */

.search-section{

    padding:70px 0 42px;
	
	overflow:hidden;

}

.search-section .section-header{

    margin-bottom:30px;

}

.search-section .section-title{

    max-width:340px;

    margin:0 auto 16px;

    font-size:2rem;

    line-height:1.15;

    text-align:center;

}

.search-section .section-description{

    max-width:340px;

    margin:0 auto;

    text-align:center;

    font-size:1rem;

    line-height:1.8;

}

.search-box{

    margin-bottom:22px;

}

.search-input-wrapper{

    height:60px;

    border-radius:18px;

    padding:0 20px;

    box-shadow:

        0 14px 34px rgba(14,78,166,.08);

}

.search-input-wrapper input{

    font-size:1rem;

}

.library-toolbar{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:18px;

    margin-bottom:24px;

}

.library-results{

    width:100%;

}

.library-sort{

    width:100%;

}

.library-sort select{

    width:100%;

    height:52px;

}

.category-filter{

    display:flex;

    justify-content:flex-start;

    align-items:center;

    flex-wrap:nowrap;

    gap:12px;

    overflow-x:auto;

    overflow-y:hidden;

    padding:0 22px 8px;

    scroll-behavior:smooth;

    -webkit-overflow-scrolling:touch;

}

.category-filter::-webkit-scrollbar{

    display:none;

}

.category-chip{

    flex:none;

    white-space:nowrap;

}


/* ==========================================================
   LIBRARY MOBILE
========================================================== */

.library{

    padding:64px 0 48px;

}

.library .section-header{

    margin-bottom:42px;

}

.library .section-title{

    max-width:340px;

    margin:0 auto 16px;

    font-size:2rem;

    line-height:1.15;

    text-align:center;

}

.library .section-description{

    max-width:340px;

    margin:0 auto;

    text-align:center;

    font-size:1rem;

    line-height:1.8;

}

/* ---------- GRID ---------- */

.library-grid{

    grid-template-columns:1fr;

    gap:28px;

}

/* ---------- CARD ---------- */

.library-card{

    border-radius:24px;

    overflow:hidden;

}

/* ---------- CAPA ---------- */

.library-cover{

    height:280px;

    padding:8px 20px 8px;

}

.library-cover img{

    width:160px;

}

/* ---------- CONTEÚDO ---------- */

.library-content{

    padding:22px 24px 24px;

    gap:2px;

}

/* ---------- CATEGORIA ---------- */

.library-category{

    margin-bottom:10px;

}

/* ---------- TÍTULO ---------- */

.library-title{

    margin:0 0 10px;

    font-size:1.42rem;

    line-height:1.28;

}

/* ---------- META ---------- */

.library-meta{

    margin:0 0 14px;

    font-size:.95rem;

    gap:18px;

    opacity:.82;

}

/* ---------- LINK ---------- */

.library-link{

    margin-top:6px;

    font-size:1.08rem;

}


/* ==========================================================
   BLOG MOBILE
========================================================== */

.blog{

    padding:48px 0 72px;

}

.blog .section-header{

    margin-bottom:40px;

}

.blog .section-title{

    max-width:340px;

    margin:0 auto 16px;

    font-size:2rem;

    line-height:1.15;

}

.blog .section-description{

    max-width:340px;

    margin:0 auto;

    font-size:1rem;

    line-height:1.8;

}

.blog-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:24px;

}

.blog-featured,

.blog-sidebar,

.blog-card{

    width:100%;

    min-width:0;

}

.blog-card{

    border-radius:24px;

}

.blog-content{

    padding:24px;

}

.blog-category{

    margin-bottom:12px;

}

.blog-title{

    margin:0 0 10px;

    font-size:1.45rem;

    line-height:1.30;

}

.blog-meta{

    margin-bottom:16px;

    opacity:.75;

}

.blog-description{

    line-height:1.8;

}

.blog-link{

    margin-top:18px;

}

