/* ===========================================================
   SAGRES CONCURSOS
   Style.css
   Parte 1
===========================================================*/

/*=========================
        GOOGLE FONT
==========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================
      VARIÁVEIS
==========================*/

:root{

    --primary:#0E7C3C;
    --primary-dark:#095B2C;
    --secondary:#F8B400;

    --light:#ffffff;
    --gray:#f6f7fb;
    --gray2:#eceff3;
    --text:#252525;
    --text-light:#666;

    --radius:18px;

    --shadow:
        0 20px 60px rgba(0,0,0,.08);

    --shadow-hover:
        0 25px 70px rgba(0,0,0,.14);

    --transition:.35s;

}

/*=========================
      RESET
==========================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--text);

    background:#fff;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

    margin:0;

    padding:0;

}

section{

    padding:90px 0;

}

/*=========================
      SCROLLBAR
==========================*/

::-webkit-scrollbar{

    width:9px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#efefef;

}

/*=========================
      TITULOS
==========================*/

.section-subtitle{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:10px;

}

.section-title{

    font-size:42px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:20px;

}

.section-title span{

    color:var(--primary);

}

/*=========================
        BOTÕES
==========================*/

.btn{

    border-radius:50px;

    padding:15px 34px;

    font-weight:600;

    transition:.4s;

}

.btn-success{

    background:var(--primary);

    border:none;

}

.btn-success:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.btn-login{

    background:var(--primary);

    color:#fff;

    padding:13px 26px;

    border-radius:50px;

}

.btn-login:hover{

    color:#fff;

    background:var(--primary-dark);

}

.btn-video{

    border:2px solid #fff;

    color:#fff;

    margin-left:15px;

}

.btn-video:hover{

    background:#fff;

    color:var(--primary);

}

/*=========================
      NAVBAR
==========================*/

.navbar{

    padding:18px 0;

    transition:.4s;

    z-index:999;

}

.navbar-brand img{

    height:60px;

}

.nav-link{

    color:#222;

    font-weight:500;

    margin:0 12px;

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    border-radius:10px;

    background:var(--primary);

    transition:.3s;

}

.nav-link:hover::after,

.nav-link.active::after{

    width:100%;

}

.nav-link:hover{

    color:var(--primary);

}

/*=========================
          HERO
==========================*/

.hero{

    background:linear-gradient(135deg,#0E7C3C,#17984E);

    color:#fff;

    position:relative;

    overflow:hidden;

    padding:60px 0;

}

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    background:rgba(255,255,255,.06);

    border-radius:50%;

    right:-250px;

    top:-150px;

}

.hero::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    left:-180px;

    bottom:-180px;

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    padding:10px 18px;

    border-radius:30px;

    margin-bottom:25px;

    font-size:14px;

}

.hero h1{

    font-size:62px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

}

.hero h1 span{

    color:#F8E45C;

}

.hero p{

    font-size:19px;

    line-height:1.9;

    max-width:560px;

    opacity:.95;

}

.hero-buttons{

    margin-top:40px;

    margin-bottom:50px;

}

.hero-image{

    position:relative;

}

.hero-image img{

    animation:float 5s ease-in-out infinite;

}

/*=========================
      FEATURES
==========================*/

.hero-features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.feature{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    border-radius:20px;

    padding:22px;

    display:flex;

    align-items:center;

    transition:.35s;

}

.feature:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.18);

}

.feature .icon{

    width:40px;

    height:40px;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:21px;

    margin-right:13px;

}

.feature h5{

    margin:0;

    font-size:14px;

    font-weight:700;

}

.feature small{

    opacity:.8;

}

/*=========================
      FLOAT
==========================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=========================
     FADE UP
==========================*/

.fade-up{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
                ESTATÍSTICAS
==================================================*/

.statistics{

    background:#fff;

    margin-top:-70px;

    position:relative;

    z-index:20;

}

.stat-card{

    background:#fff;

    border-radius:20px;

    box-shadow:var(--shadow);

    padding:35px 25px;

    text-align:center;

    transition:var(--transition);

    height:100%;

    border:1px solid rgba(0,0,0,.04);

}

.stat-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-hover);

}

.stat-card i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    background:rgba(14,124,60,.08);

    color:var(--primary);

    font-size:32px;

}

.stat-card h3{

    font-size:34px;

    font-weight:800;

    color:var(--primary);

    margin-bottom:8px;

}

.stat-card p{

    margin:0;

    color:#777;

}


/*==================================================
                CURSOS
==================================================*/

.courses{

    background:var(--gray);

}

.course-card{

    background:#fff;

    border-radius:25px;

    padding:40px 30px;

    box-shadow:var(--shadow);

    transition:.4s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.course-card::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    border-radius:50%;

    background:rgba(14,124,60,.05);

    top:-40px;

    right:-40px;

    transition:.4s;

}

.course-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-hover);

}

.course-card:hover::before{

    transform:scale(2);

}

.course-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    background:rgba(14,124,60,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

    font-size:38px;

    margin-bottom:25px;

}

.course-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:18px;

}

.course-card p{

    color:#777;

    line-height:1.8;

    min-height:95px;

}

.course-card span{

    display:block;

    color:var(--primary);

    font-weight:600;

    margin-top:15px;

}

.course-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:25px;

    font-weight:700;

    color:var(--primary);

}

.course-link i{

    transition:.3s;

}

.course-link:hover i{

    transform:translateX(8px);

}


/*==================================================
            DIFERENCIAIS
==================================================*/

.advantages{

    background:#fff;

}

.advantages img{

    animation:float 6s infinite;

}

.adv-card{

    background:#fff;

    border-radius:20px;

    box-shadow:var(--shadow);

    padding:28px;

    height:100%;

    transition:.35s;

    border:1px solid rgba(0,0,0,.04);

}

.adv-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.adv-card i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:linear-gradient(135deg,var(--primary),#25b75a);

    color:#fff;

    font-size:30px;

    margin-bottom:20px;

}

.adv-card h5{

    font-weight:700;

    margin-bottom:12px;

}

.adv-card p{

    margin:0;

    color:#777;

}


/*==================================================
            NEWS
==================================================*/

.news{

    background:var(--gray);

}

.news-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.news-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-hover);

}

.news-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.4s;

}

.news-card:hover img{

    transform:scale(1.08);

}

.news-content{

    padding:28px;

}

.news-content small{

    display:block;

    color:#888;

    margin:15px 0;

}

.news-content h4{

    font-size:24px;

    font-weight:700;

    line-height:1.4;

    margin-bottom:15px;

}

.news-content p{

    color:#777;

    line-height:1.8;

}

.news-content a{

    color:var(--primary);

    font-weight:700;

}

.news-content a i{

    transition:.3s;

}

.news-content a:hover i{

    transform:translateX(8px);

}


/*==================================================
            CTA
==================================================*/

.cta{

    background:linear-gradient(135deg,#0E7C3C,#0A5D2C);

    color:#fff;

    padding:80px 0;

}

.cta h2{

    font-size:48px;

    font-weight:800;

    margin-bottom:15px;

}

.cta p{

    font-size:18px;

    opacity:.9;

}

.cta .btn{

    background:#fff;

    color:var(--primary);

    border-radius:60px;

    font-weight:700;

}

.cta .btn:hover{

    transform:translateY(-6px);

}


/*==================================================
        MICRO ANIMAÇÕES
==================================================*/

.course-card,
.news-card,
.stat-card,
.adv-card{

    will-change:transform;

}

.shadow-hover:hover{

    box-shadow:0 35px 80px rgba(0,0,0,.15);

}


/*==================================================
                    FOOTER
==================================================*/

footer{

    background:#082417;

    color:#d8d8d8;

    padding:90px 0 30px;

    position:relative;

}

footer::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,
        #0E7C3C,
        #2FBF65,
        #7FD957);

}

.footer-logo{

    height:65px;

    margin-bottom:25px;

}

footer h5{

    color:#fff;

    font-weight:700;

    margin-bottom:25px;

}

footer p{

    line-height:1.9;

    color:#bfc6c4;

}

footer ul li{

    margin-bottom:14px;

}

footer ul li a{

    color:#cfcfcf;

    transition:.3s;

}

footer ul li a:hover{

    color:#fff;

    padding-left:8px;

}

.social{

    display:flex;

    gap:14px;

    margin-top:30px;

}

.social a{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    font-size:15px;

    transition:.35s;

}

.social a:hover{

    background:var(--primary);

    transform:translateY(-6px);

}

footer .form-control{

    height:56px;

    border:none;

    border-radius:50px 0 0 50px;

    padding-left:25px;

}

footer .btn{

    border-radius:0 50px 50px 0;

    padding:0 30px;

}

footer hr{

    margin:50px 0 25px;

    border-color:rgba(255,255,255,.08);

}

.footer-bottom{

    font-size:13px;

    color:#b9b9b9;

}


/*==================================================
            BACK TO TOP
==================================================*/

.back-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:24px;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

    z-index:999;

    opacity:0;

    visibility:hidden;

    transition:.35s;

}

.back-top.show{

    opacity:1;

    visibility:visible;

}

.back-top:hover{

    color:#fff;

    transform:translateY(-8px);

}


/*==================================================
                LOADER
==================================================*/

#loader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

    transition:.5s;

}

#loader.hide{

    opacity:0;

    visibility:hidden;

}


/*==================================================
            NAVBAR SCROLL
==================================================*/

.navbar.scrolled{

    background:#fff !important;

    box-shadow:0 12px 40px rgba(0,0,0,.08);

    padding:12px 0;

}


/*==================================================
        INPUTS
==================================================*/

.form-control{

    border-radius:14px;

    border:1px solid #ddd;

    height:55px;

    transition:.3s;

}

.form-control:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 .25rem rgba(14,124,60,.15);

}


/*==================================================
            SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}


/*==================================================
            RESPONSIVO
==================================================*/

@media(max-width:1200px){

.hero h1{

    font-size:52px;

}

.section-title{

    font-size:38px;

}

}


@media(max-width:992px){

section{

    padding:70px 0;

}

.navbar{

    padding:15px;

}

.hero{

    text-align:center;

    padding-top:80px;

}

.hero h1{

    font-size:46px;

}

.hero p{

    margin:auto;

}

.hero-buttons{

    justify-content:center;

}

.hero-features{

    margin-top:50px;

}

.hero-image{

    margin-top:60px;

}

.statistics{

    margin-top:0;

}

.cta{

    text-align:center;

}

.cta .text-lg-end{

    margin-top:30px;

}

}


@media(max-width:768px){

.section-title{

    font-size:32px;

}

.hero h1{

    font-size:38px;

}

.hero-features{

    grid-template-columns:1fr;

}

.feature{

    padding:18px;

}

.course-card{

    padding:30px;

}

.news-card img{

    height:220px;

}

.footer-bottom{

    text-align:center;

}

.footer-bottom .text-md-end{

    text-align:center !important;

    margin-top:12px;

}

.back-top{

    width:48px;

    height:48px;

}

}


@media(max-width:576px){

.hero{

    padding:60px 0;

}

.hero h1{

    font-size:32px;

}

.hero-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.btn-video{

    margin-left:0;

}

.stat-card{

    padding:25px;

}

.course-card{

    padding:25px;

}

.news-content{

    padding:22px;

}

.cta h2{

    font-size:34px;

}

footer{

    text-align:center;

}

.social{

    justify-content:center;

}

footer .input-group{

    flex-direction:column;

}

footer .form-control{

    border-radius:50px;

    margin-bottom:15px;

}

footer .btn{

    border-radius:50px;

    height:55px;

}

}


/*==================================================
            ANIMAÇÕES
==================================================*/

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

.btn-success:hover{

animation:pulse .6s;

}


/*==================================================
            UTILITÁRIOS
==================================================*/

.radius{

border-radius:var(--radius);

}

.shadow{

box-shadow:var(--shadow);

}

.shadow-lg{

box-shadow:var(--shadow-hover);

}

.bg-gray{

background:var(--gray);

}

.text-primary{

color:var(--primary)!important;

}

.transition{

transition:.35s;

}



.theme-toggle{

    width:48px;
    height:48px;

    border:none;

    border-radius:50%;

    background:#f5f5f5;

    color:#222;

    cursor:pointer;

    margin-right:15px;

    transition:.35s;

}

.theme-toggle:hover{

    transform:rotate(20deg);

}

body.dark{

    --primary:#38c172;

    --primary-dark:#1d8f4e;

    --light:#111827;

    --gray:#1F2937;

    --gray2:#374151;

    --text:#F3F4F6;

    --text-light:#d1d5db;

    background:#111827;

    color:#F3F4F6;

}



/*==================================================
                DARK MODE
==================================================*/

body.dark{

    background:#111827;
    color:#F9FAFB;

}

/* Seções */

body.dark .statistics,
body.dark .advantages,
body.dark .testimonials{

    background:#111827;

}

body.dark .courses,
body.dark .news{

    background:#1F2937;

}

body.dark .cta{

    background:linear-gradient(135deg,#0b3a1d,#071d11);

}

/* Cards */

body.dark .course-card,
body.dark .news-card,
body.dark .stat-card,
body.dark .adv-card,
body.dark .testimonial-card{

    background:#1E293B;

    color:#F9FAFB;

    border:1px solid rgba(255,255,255,.08);

}

/* Textos */

body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5,
body.dark p,
body.dark span,
body.dark small{

    color:#F9FAFB;

}

body.dark .section-subtitle{

    color:#53d67d;

}

body.dark .course-link{

    color:#53d67d;

}

/* Navbar */

body.dark .navbar{

    background:#111827 !important;

}

body.dark .navbar.scrolled{

    background:#111827 !important;

}

body.dark .nav-link{

    color:#fff;

}

body.dark .nav-link:hover{

    color:#53d67d;

}

/* Botão */

body.dark .theme-toggle{

    background:#1F2937;

    color:#FFD54F;

}

/* Inputs */

body.dark .form-control{

    background:#1F2937;

    color:#fff;

    border:1px solid #374151;

}

body.dark .form-control::placeholder{

    color:#bbb;

}

/* Footer */

body.dark footer{

    background:#020617;

}

/* Scrollbar */

body.dark ::-webkit-scrollbar-track{

    background:#1F2937;

}

body.dark ::-webkit-scrollbar-thumb{

    background:#53d67d;

}


/*=========================================
        PREMIUM TESTIMONIALS
=========================================*/

.testimonials{

    background:linear-gradient(180deg,#f8fafc,#eef3f7);

    padding:120px 0;

}

.testimonial-wrapper{

    position:relative;

    max-width:1300px;

    margin:auto;

}

.testimonialSwiper{

    width:100%;

    overflow:visible;

    padding:50px 0 70px;

}

.swiper-wrapper{

    align-items:stretch;

}

.swiper-slide{

    display:flex;

    justify-content:center;

    align-items:stretch;

    transition:.45s;

    opacity:.45;

    transform:scale(.82);

}

.swiper-slide-active{

    opacity:1;

    transform:scale(1);

}

.swiper-slide-prev,
.swiper-slide-next{

    opacity:.75;

    transform:scale(.92);

}

.testimonial-card{

    width:100%;

    max-width:380px;

    min-height:420px;

    background:#fff;

    border-radius:28px;

    padding:40px;

    box-shadow:0 20px 60px rgba(0,0,0,.10);

}

.swiper-button-next,
.swiper-button-prev{

    color:#0E7C3C;

}

.swiper-pagination{

    bottom:0 !important;

}

/*=========================================
            TIMELINE PREMIUM
=========================================*/

.timeline-section{

    background:#F8FAFC;

    overflow:hidden;

}

.timeline-horizontal{

    display:flex;

    justify-content:space-between;

    position:relative;

    margin-top:80px;

    gap:25px;

}

.timeline-line{

    position:absolute;

    left:0;

    right:0;

    top:38px;

    height:5px;

    background:#dfe6eb;

    z-index:0;

}

.timeline-event{

    flex:1;

    position:relative;

    z-index:2;

    text-align:center;

}

.timeline-dot{

    width:24px;

    height:24px;

    border-radius:50%;

    background:#0E7C3C;

    margin:auto;

    border:5px solid #fff;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

}

.timeline-dot.success{

    background:#22C55E;

}

.timeline-card{

    margin-top:35px;

    background:#fff;

    border-radius:22px;

    padding:30px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.timeline-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.timeline-card i{

    font-size:42px;

    color:#0E7C3C;

    margin:15px 0;

}

.timeline-card .year{

    display:inline-block;

    background:#E8F6ED;

    color:#0E7C3C;

    padding:6px 18px;

    border-radius:30px;

    font-weight:700;

}

.timeline-card h5{

    margin:18px 0 15px;

    font-weight:700;

}

.timeline-card p{

    color:#666;

    line-height:1.7;

}


@media(max-width:992px){

.timeline-horizontal{

    flex-direction:column;

}

.timeline-line{

    width:5px;

    height:100%;

    left:50%;

    top:0;

    right:auto;

}

.timeline-event{

    margin-bottom:50px;

}

}

/*=====================================
        BREADCRUMB PREMIUM
======================================*/

.custom-breadcrumb{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:14px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    margin-bottom:35px;

}

.custom-breadcrumb a{

    color:#fff;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

.custom-breadcrumb a:hover{

    color:#7CF29A;

}

.custom-breadcrumb strong{

    color:#7CF29A;

    font-weight:700;

}

.custom-breadcrumb span{

    color:rgba(255,255,255,.45);

}

.custom-breadcrumb i{

    margin-right:6px;

}

/*=====================================
        BREADCRUMB PREMIUM
======================================*/

.custom-breadcrumb{

    display:inline-flex;

    align-items:center;

    gap:14px;

    padding:12px 18px;

    border-radius:60px;

    background:linear-gradient(135deg,#0E7C3C,#16A34A);

    box-shadow:0 15px 35px rgba(14,124,60,.25);

    margin-bottom:35px;

}

.custom-breadcrumb a{

    color:#fff;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

.custom-breadcrumb a:hover{

    opacity:.8;

}

.custom-breadcrumb span{

    color:rgba(255,255,255,.6);

}

.custom-breadcrumb i{

    margin-right:6px;

}

.current-page{

    background:#fff;

    color:#0E7C3C;

    padding:8px 16px;

    border-radius:40px;

    font-weight:700;

    display:flex;

    align-items:center;

    gap:8px;

}

.current-page i{

    margin:0;

}

/*=====================================
            NEWS CARD
======================================*/

.news-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 45px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

}

.news-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.news-image{

    position:relative;

    overflow:hidden;

}

.news-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.news-card:hover img{

    transform:scale(1.08);

}

.news-category{

    position:absolute;

    top:20px;

    left:20px;

    background:#0E7C3C;

    color:#fff;

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.news-content{

    padding:28px;

}

.news-meta{

    display:flex;

    justify-content:space-between;

    color:#999;

    font-size:14px;

    margin-bottom:18px;

}

.news-content h4{

    font-weight:700;

    margin-bottom:18px;

    line-height:1.4;

}

.news-content p{

    color:#666;

    margin-bottom:22px;

}

.news-content a{

    color:#0E7C3C;

    text-decoration:none;

    font-weight:700;

}

.news-content a:hover{

    color:#16A34A;

}


/*=====================================
        ABOUT COURSE
======================================*/

.about-item{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:20px;

    font-weight:600;

}

.about-item i{

    color:var(--primary);

    font-size:20px;

}


/*=====================================
        LEARN CARD
======================================*/

.learn-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    height:100%;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.learn-card:hover{

    transform:translateY(-8px);

}

.learn-card i{

    font-size:45px;

    color:var(--primary);

    margin-bottom:20px;

}


/*=====================================
        FEATURE BOX
======================================*/

.feature-box{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

    border:1px solid #ececec;

}

.feature-box:hover{

    background:var(--primary);

    color:#fff;

}

.feature-box:hover i{

    color:#fff;

}

.feature-box i{

    font-size:40px;

    color:var(--primary);

    margin-bottom:15px;

}


/*=====================================
        COURSE STATS
======================================*/

.course-stats{

    background:linear-gradient(135deg,#0b7a3d,#12a150);

    color:#fff;

    padding:70px 0;

}

.stat-item h2{

    font-size:48px;

    font-weight:800;

}

/*====================================
        ACCORDION
====================================*/

.custom-accordion .accordion-item{

    border:none;

    margin-bottom:20px;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.custom-accordion .accordion-button{

    background:#fff;

    padding:25px;

}

.custom-accordion .accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.accordion-title{

    display:flex;

    justify-content:space-between;

    width:100%;

}


/*====================================
        TEACHERS
====================================*/

.teacher-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.teacher-card img{

    width:120px;

    height:120px;

    object-fit:cover;

    border-radius:50%;

    margin-bottom:20px;

}


/*====================================
        VIDEO
====================================*/

.video-preview{

    position:relative;

}

.play-button{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:90px;

    height:90px;

    border-radius:50%;

    background:#16A34A;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:40px;

}


/*====================================
        MATERIAL
====================================*/

.material-card{

    background:#fff;

    padding:40px;

    border-radius:22px;

    text-align:center;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.material-card:hover{

    transform:translateY(-8px);

}

.material-card i{

    font-size:45px;

    color:var(--primary);

    margin-bottom:20px;

}


/*======================================
        HERO NOTÍCIA
======================================*/

.news-single-hero{

    padding:120px 0 60px;

    background:linear-gradient(135deg,#0d7d3e,#19a354);

    color:#fff;

}

.news-single-hero h1{

    font-size:3rem;

    font-weight:800;

    line-height:1.2;

    margin:25px 0;

}

.news-subtitle{

    font-size:1.2rem;

    opacity:.95;

}

.news-meta{

    display:flex;

    gap:30px;

    flex-wrap:wrap;

    align-items:center;

    margin-top:35px;

}

.news-meta img{

    width:45px;

    height:45px;

    border-radius:50%;

    object-fit:cover;

    margin-right:10px;

}

.news-category{

    display:inline-block;

    padding:8px 20px;

    background:rgba(255,255,255,.15);

    border-radius:50px;

}



/*======================================
        ARTICLE
======================================*/

.article-content{

    font-size:18px;

    line-height:2;

}

.article-content p{

    margin-bottom:30px;

}

.article-content blockquote{

    border-left:5px solid var(--primary);

    background:#f5f5f5;

    padding:30px;

    border-radius:10px;

    font-size:22px;

    font-style:italic;

    margin:50px 0;

}



/*======================================
        SIDEBAR
======================================*/

.news-sidebar{

    position:sticky;

    top:110px;

}

.sidebar-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    margin-bottom:30px;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

}

.social-share{

    display:flex;

    gap:15px;

}

.social-share a{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#f3f3f3;

    color:var(--primary);

    font-size:22px;

    transition:.3s;

}

.social-share a:hover{

    background:var(--primary);

    color:#fff;

}

.mini-news{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.mini-news img{

    width:90px;

    height:70px;

    border-radius:12px;

    object-fit:cover;

}

.mini-news a{

    color:#222;

    font-weight:600;

    text-decoration:none;

}

/*=====================================
        ARTICLE SUMMARY
======================================*/

.article-summary{

    background:#fff;

    border-left:5px solid var(--primary);

    padding:30px;

    border-radius:18px;

    margin-bottom:50px;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.article-summary ul{

    margin-top:20px;

}

.article-summary li{

    margin-bottom:15px;

}

.article-summary a{

    color:#222;

    text-decoration:none;

    font-weight:600;

}

.article-summary a:hover{

    color:var(--primary);

}



/*=====================================
        ARTICLE
======================================*/

.article-section{

    margin-bottom:60px;

}

.article-section h2{

    font-size:38px;

    margin-bottom:25px;

    font-weight:800;

}

.article-section p{

    font-size:19px;

    line-height:2;

}



/*=====================================
        HIGHLIGHT
======================================*/

.article-highlight{

    background:#eefaf3;

    border-left:6px solid var(--primary);

    padding:35px;

    display:flex;

    gap:25px;

    border-radius:20px;

    margin:50px 0;

}

.article-highlight i{

    font-size:42px;

    color:var(--primary);

}



/*=====================================
        ARTICLE IMAGE
======================================*/

.article-image{

    margin:60px 0;

}

.article-image figcaption{

    text-align:center;

    margin-top:15px;

    color:#777;

}



/*=====================================
        QUOTE
======================================*/

.quote-box{

    font-size:32px;

    font-style:italic;

    text-align:center;

    margin:80px 0;

    color:#0b7a3d;

}



/*=====================================
        INFO CARD
======================================*/

.info-card{

    background:linear-gradient(135deg,#0b7a3d,#15a04d);

    color:#fff;

    border-radius:25px;

    padding:40px;

    margin:60px 0;

}

.info-card h5{

    opacity:.8;

}



/*=====================================
        GALERIA
======================================*/

.article-gallery{

    margin-top:80px;

}

.article-gallery img{

    transition:.3s;

    cursor:pointer;

}

.article-gallery img:hover{

    transform:scale(1.03);

}

/*====================================
        HERO
====================================*/

.legal-hero{

    padding:120px 0 80px;

    background:linear-gradient(135deg,#0B7A3D,#14A44D);

    color:#fff;

}

.legal-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    margin-bottom:25px;

}

.legal-hero h1{

    font-size:56px;

    font-weight:800;

    margin-bottom:25px;

}

.legal-hero p{

    font-size:20px;

    opacity:.95;

}

.legal-meta{

    display:flex;

    justify-content:center;

    gap:40px;

    margin-top:45px;

    flex-wrap:wrap;

}

.legal-meta div{

    background:rgba(255,255,255,.12);

    padding:18px 28px;

    border-radius:16px;

}

/*====================================
        SIDEBAR
====================================*/

.legal-sidebar{

    position:sticky;

    top:110px;

}

.legal-menu{

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.legal-menu ul{

    margin-top:25px;

}

.legal-menu li{

    margin-bottom:15px;

    list-style:none;

}

.legal-menu a{

    text-decoration:none;

    color:#333;

    font-weight:600;

    transition:.3s;

}

.legal-menu a:hover{

    color:var(--primary);

}

/*====================================
        CARD
====================================*/

.legal-card{

    background:#fff;

    border-radius:22px;

    padding:50px;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.legal-card h2{

    margin:20px 0 30px;

    font-size:42px;

    font-weight:700;

}

.legal-card p{

    font-size:18px;

    line-height:2;

}

/*====================================
        ALERT
====================================*/

.legal-alert{

    margin-top:40px;

    display:flex;

    gap:20px;

    background:#EEF9F2;

    border-left:5px solid var(--primary);

    padding:25px;

    border-radius:15px;

}

.legal-alert i{

    font-size:30px;

    color:var(--primary);

}

/*=========================================
        PAGE HERO (Páginas Internas)
=========================================*/

.page-hero {
    background: linear-gradient(135deg, #0E7C3C, #17984E);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 40px 0 60px;
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    right: -200px;
    top: -150px;
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
    left: -150px;
    bottom: -150px;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.page-hero h1 span { color: #F8E45C; }
.page-hero p { font-size: 18px; line-height: 1.9; max-width: 560px; opacity: .95; }
.page-hero .hero-buttons { margin-top: 30px; }
.page-hero .hero-tag { display: inline-block; background: rgba(255,255,255,.15); backdrop-filter: blur(15px); padding: 10px 18px; border-radius: 30px; margin-bottom: 20px; font-size: 14px; }
.page-hero img { border-radius: 24px; max-width: 100%; }

.courses-hero { padding: 30px 0 60px; }

/*=========================================
        MISSION CARDS
=========================================*/

.mission-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,.04);
}

.mission-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.mission-card .icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(14,124,60,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 38px;
    margin: 0 auto 20px;
}

.mission-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.mission-card p { color: #777; line-height: 1.8; }

/*=========================================
        CATEGORY CARDS (Página Cursos)
=========================================*/

.course-categories { background: #fff; }

.category-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    height: 100%;
}

.category-card:hover,
.category-card.active {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.category-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.category-card h5 { font-weight: 700; margin-bottom: 8px; }
.category-card small { color: #888; }

/*=========================================
        COURSES LIST
=========================================*/

.courses-list { background: var(--gray); }

.course-body { padding: 0; }

.course-category {
    display: inline-block;
    background: rgba(14,124,60,.08);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.course-info {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.course-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.course-info li i { color: var(--primary); }

.rating { color: #F8B400; font-weight: 600; margin-bottom: 10px; }
.rating small { color: #888; margin-left: 6px; }

.price small { display: block; color: #999; text-decoration: line-through; margin-bottom: 4px; }
.price h3 { font-size: 28px; font-weight: 800; color: var(--primary); margin: 0; }

/*=========================================
        ABOUT (Página Sagres)
=========================================*/

.about-image img { border-radius: 24px; }

.mini-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,.04);
}

.mini-card:hover { transform: translateY(-8px); }

.mini-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

.mini-card h5 { font-weight: 700; margin-bottom: 8px; }
.mini-card p { color: #777; margin: 0; }

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.method-item i {
    font-size: 22px;
    color: var(--primary);
    margin-top: 3px;
}

.method-item small { display: block; color: #888; }

/*=========================================
        CONTACT
=========================================*/

.form-label { font-weight: 600; }

/*=========================================
        DARK MODE — PÁGINAS INTERNAS
=========================================*/

body.dark .page-hero { background: linear-gradient(135deg, #0b3a1d, #071d11); }

body.dark .mission-card,
body.dark .category-card,
body.dark .mini-card,
body.dark .learn-card,
body.dark .feature-box,
body.dark .teacher-card,
body.dark .material-card,
body.dark .legal-card,
body.dark .legal-menu,
body.dark .sidebar-card,
body.dark .article-summary,
body.dark .news-single-hero {
    background: #1E293B;
    color: #F9FAFB;
    border: 1px solid rgba(255,255,255,.08);
}

body.dark .course-categories { background: #111827; }
body.dark .courses-list { background: #1F2937; }
body.dark .course-body { background: transparent; }

body.dark .category-card i { color: #53d67d; }

body.dark .mission-card p,
body.dark .mini-card p,
body.dark .course-info li { color: #d1d5db; }

body.dark .course-category { background: rgba(56,193,114,.15); color: #53d67d; }

body.dark .mini-card,
body.dark .legal-menu,
body.dark .sidebar-card,
body.dark .article-summary {
    background: #1E293B;
    border: 1px solid rgba(255,255,255,.08);
}

body.dark .legal-menu a { color: #F9FAFB; }
body.dark .legal-menu a:hover { color: #53d67d; }
body.dark .legal-alert { background: #1E293B; border-left-color: #53d67d; }
body.dark .legal-card { background: #1E293B; }

body.dark .learn-card,
body.dark .feature-box,
body.dark .teacher-card,
body.dark .material-card { background: #1E293B; border: 1px solid rgba(255,255,255,.08); }

body.dark .course-info li i { color: #53d67d; }
body.dark .price h3 { color: #53d67d; }

body.dark .timeline-section { background: #111827; }
body.dark .timeline-line { background: #374151; }
body.dark .timeline-card { background: #1E293B; border: 1px solid rgba(255,255,255,.08); }
body.dark .timeline-card p { color: #d1d5db; }
body.dark .timeline-card .year { background: rgba(56,193,114,.15); color: #53d67d; }

body.dark .article-content blockquote { background: #1E293B; }
body.dark .article-highlight { background: #1E293B; }
body.dark .info-card { background: linear-gradient(135deg, #0b3a1d, #071d11); }

/*=========================================
        PAGINATION (Bootstrap override)
=========================================*/

.page-link {
    border-radius: 12px;
    margin: 0 4px;
    color: var(--primary);
    font-weight: 600;
    border: none;
    padding: 10px 18px;
    transition: .3s;
}

.page-link:hover {
    background: var(--primary);
    color: #fff;
}

.page-item.active .page-link {
    background: var(--primary);
    border-radius: 12px;
}

.page-item.disabled .page-link {
    color: #bbb;
    background: transparent;
}

/*=========================================
        RESPONSIVO
=========================================*/

@media(max-width:992px) {
    .page-hero { text-align: center; padding: 60px 0; }
    .page-hero h1 { font-size: 38px; }
    .page-hero p { margin: auto; }
    .page-hero .hero-buttons { justify-content: center; }
    .page-hero img { margin-top: 40px; }
}

@media(max-width:768px) {
    .page-hero h1 { font-size: 32px; }
    .news-content { padding: 22px; }
}

@media(max-width:576px) {
    .page-hero { padding: 40px 0; }
    .page-hero h1 { font-size: 28px; }
    .hero-buttons { display: flex; flex-direction: column; gap: 15px; }
    .legal-card { padding: 25px; }
    .legal-card h2 { font-size: 32px; }
}

/*=========================================
        DARK MODE — MELHORIAS DE CONTRASTE
=========================================*/

body.dark .nav-link.active {
    color: #53d67d !important;
}

body.dark .btn-login {
    background: #53d67d;
    color: #111827;
}

body.dark .btn-login:hover {
    background: #3cb861;
    color: #111827;
}

body.dark .text-muted {
    color: #d1d5db !important;
}
