:root {
    /* --- CORES DA MARCA --- */
    --primary: #144781;
    --primary-dark: #113a6b;
    --primary-light: #a7d7ed;
    --primary-soft: #6dbce1;
    --primary-link: #0d6efd;
    --secondary: #008641;
    --secondary-light: #e1faec;
    --accent: #ffc107;
    /* --- STATUS E ALERTAS --- */
    --success: #28a745;
    --danger: #ef4036;
    --danger-soft: #f8d7da;
    --warning: #ffc01f;
    --info: #17a2b8;
    /* --- TIPOGRAFIA E TEXTOS --- */
    --text-main: #333333;
    --text-muted: #6c757d;
    --text-light: #828282;
    --text-dark: #2d3748;
    --text-grey: #718096;
    --text-silver: #a0aec0;
    /* --- ESTRUTURA E NEUTROS --- */
    --white: #ffffff;
    --black: #000000;
    --bg-body: #f8fafc;
    --bg-light: #f6f6f6;
    --bg-soft: #f8f9fa;
    --bg-slate: #edf2f7;
    --border-color: #dce2e5;
    --border-grey: #dee2e6;
    --border-soft: #e2e8f0;
    --grey-light: #eeeeee;
    --grey-medium: #cccccc;
    /* --- SHADOWS --- */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* --- RESET & BASE --- */
* {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    margin-top: 132px; /* Espaço para a Navbar fixa */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- LINKS --- */
a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

    a:hover {
        color: var(--primary-dark);
        text-decoration: none;
    }

/* --- TIPOGRAFIA --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.85rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* --- AUXILIARES --- */
.text-primary {
    color: var(--primary) !important;
}

.text-primary-link {
    color: var(--primary-link) !important;
}

.text-secondary, .green {
    color: var(--secondary) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-white {
    color: var(--white) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.bg-soft {
    background-color: var(--bg-soft) !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.rounded-lg {
    border-radius: 12px !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow {
    box-shadow: var(--shadow-md) !important;
}

/* --- CONTAINERS --- */
.container {
    max-width: 1215px;
}

.container-fluid {
    max-width: 1440px;
}

/* --- BOTÕES --- */
.btn {
    border-radius: 16px;
    padding: 8px 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-lg {
    padding: 12px 35px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    border: solid 2px;
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm) !important;
}

    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary:focus {
        background-color: var(--white) !important;
        border-color: var(--primary) !important;
        color: var(--primary) !important;
    }

.btn-outline-primary {
    background-color: var(--white);
    border: solid 2px;
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-sm) !important;
}

    .btn-outline-primary:hover,
    .btn-outline-primary:active,
    .btn-outline-primary:focus {
        background-color: var(--primary) !important;
        border-color: var(--primary) !important;
        color: var(--white) !important;
    }

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

    .btn-secondary:hover {
        background-color: var(--primary);
        border-color: var(--primary);
        color: var(--white);
    }

.btn-danger {
    background-color: var(--danger);
    border-color: var(--danger);
    color: var(--white);
}

.btn-whatsapp {
    color: var(--white) !important;
    background-color: #04D361;
    border-color: #04D361;
    border-radius: 16px;
    padding: 8px 16px;
}

    .btn-whatsapp:hover {
        color: var(--white);
        background-color: var(--primary);
        text-decoration: none;
    }

.btn-all-slider {
    display: inline-block;
    margin-top: 3rem;
    padding: 12px 30px;
    border-radius: 16px;
    background: #144781;
    color: #fff;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(45, 52, 121, 0.3);
}

    .btn-all-slider:hover {
        background: #1a1f4d;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(45, 52, 121, 0.4);
        color: #fff;
    }

a.btn-mais-default {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 2.4em;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 16px;
    padding: 16px 24px;
    text-decoration: none;
    text-transform: uppercase;
    background-color: var(--primary);
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease;
}

    a.btn-mais-default:hover {
        color: var(--white);
        border: none;
        text-decoration: none;
        background-color: var(--primary-dark);
        transition: all 0.3s ease;
    }

a.mais {
    color: var(--white);
    font-size: .9rem;
    line-height: 2.4em;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 16px;
    padding: 16px 20px;
    text-decoration: none;
    text-transform: uppercase;
    background-color: var(--text-light);
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease;
}

    a.mais:hover {
        color: var(--white);
        border: none;
        text-decoration: none;
        background-color: var(--primary);
        transition: all 0.3s ease;
    }

/* Estilo antigo unificado */


/* --- FORMULÁRIOS --- */
.form-control {
    border-radius: 8px;
    border: 1px solid var(--border-grey);
    transition: border-color 0.2s;
}

    .form-control:focus {
        border-color: var(--primary-soft);
        box-shadow: 0 0 0 0.2rem rgba(20, 71, 129, 0.1);
    }

.form-control-lg {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    border-radius: 10px;
}

label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* --- LAYOUT & NAVBAR --- */

.menu-principal {
    background-color: var(--primary);
    z-index: 1030;
}

    .menu-principal .nav-link {
        color: var(--white) !important;
        font-weight: 600;
        font-size: 0.95rem;
        padding: 12px 18px !important;
        transition: all 0.3s;
    }

        .menu-principal .nav-link:hover {
            background: rgba(255, 255, 255, 0.15);
        }

/* --- MOBILE NAVIGATION --- */


.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1060;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

    .mobile-drawer.active {
        left: 0;
    }

.drawer-header {
    padding: 20px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.drawer-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0;
}

.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: var(--text-dark);
    font-weight: 600;
    border-bottom: 1px solid var(--bg-light);
}

    .drawer-link:hover {
        color: var(--primary);
        background: var(--bg-slate);
    }

.drawer-link-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .drawer-link-content i {
        width: 24px;
        text-align: center;
        color: var(--primary);
        font-size: 1.2rem;
    }

.drawer-submenu {
    background: var(--bg-soft);
    list-style: none;
    padding: 0;
    display: none;
}

    .drawer-submenu.open {
        display: block;
    }

    .drawer-submenu .drawer-link {
        padding-left: 55px;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-grey);
    }

.drawer-footer {
    padding: 25px 20px;
    background: var(--white);
    border-top: 1px solid var(--border-soft);
}

.btn-drawer-login, .btn-drawer-signup {
    border-radius: 12px;
    font-weight: 700;
    padding: 16px;
    margin-bottom: 12px;
    text-align: center;
    display: block;
    color: var(--white) !important;
}

.btn-drawer-login {
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(20, 71, 129, 0.2);
}

.btn-drawer-signup {
    background: var(--secondary);
    box-shadow: 0 4px 12px rgba(0, 134, 65, 0.2);
}

.burger-menu {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

body.drawer-open {
    overflow: hidden;
}

/* --- COMPONENTES --- */

/* CARDS */
.card {
    border: none;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.card-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-soft);
    padding: 20px;
}

.card-body {
    padding: 25px;
}

.accordionModulos .card-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-soft);
    padding: 15px 20px;
}

/* ACCORDIONS */
.accordion .card {
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
}

.accordion .btn-link {
    width: 100%;
    text-align: left;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background 0.2s;
}

    .accordion .btn-link:hover {
        background: var(--bg-soft);
    }

    .accordion .btn-link:not(.collapsed) {
        color: var(--primary);
        background: var(--bg-slate);
    }

/* BADGES */
.badge {
    font-size: .7rem;
    font-weight: 800;
    line-height: .9em;
    padding: 8px 12px;
    border-radius: .5rem !important;
}

.badge-primary {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.badge-success {
    background-color: var(--secondary);
    color: var(--white);
}

.badge-danger {
    background-color: var(--danger-soft);
    color: var(--danger);
}

.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge-course {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.badge-cat {
    border: 1.5px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
    transition: all 0.2s;
}

    .badge-cat:hover {
        background: var(--secondary);
        color: var(--white);
    }

.badge-cat {
    color: var(--secondary);
    padding: 4px 10px;
    border-radius: 5px;
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border: solid 1px var(--secondary);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

    .badge-cat:hover {
        color: var(--secondary);
        text-decoration: none;
        border: solid 1px var(--secondary);
    }

/* --- SEÇÕES DE PÁGINAS --- */

/* SERVIÇOS & LISTAS */
.bg-lista {
    padding: 30px 20px;
    border-radius: 12px;
    background-color: var(--secondary-light);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

    .bg-lista:hover {
        background-color: var(--primary);
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

        .bg-lista:hover a, .bg-lista:hover h4 {
            color: var(--white) !important;
        }

        .bg-lista:hover img {
            filter: brightness(0) invert(1);
        }

/* ETAPAS / PASSOS */
.etapa {
    border-radius: 15px;
    padding: 50px 30px 30px;
    background-color: var(--secondary-light);
    margin-bottom: 60px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.etapas .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    background-color: var(--primary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -90px auto 0;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
}


/* DEPOIMENTOS */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
    position: relative;
}

    .testimonial-card p {
        font-style: italic;
        font-size: 1.15rem;
        color: var(--text-dark);
    }

.testimonial-autor {
    margin-top: 20px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}


/* --- ÁREA DO USUÁRIO & ALUNO --- */

/* SIDEBAR DA CONTA */
ul.sidebar {
    list-style: none;
    padding: 0;
    margin: 0;
}

    ul.sidebar li {
        margin-bottom: 8px;
    }

        ul.sidebar li a {
            display: flex;
            align-items: center;
            padding: 12px 18px;
            color: var(--text-dark);
            font-weight: 600;
            background: var(--bg-soft);
            border-radius: 100px;
            transition: all 0.2s ease;
        }

            ul.sidebar li a i {
                width: 24px;
                margin-right: 12px;
                color: var(--primary);
                font-size: 1.1rem;
            }

            ul.sidebar li a:hover {
                background: var(--bg-slate);
                color: var(--primary);
                transform: translateX(5px);
            }

        ul.sidebar li.active a {
            background: var(--primary);
            color: var(--white) !important;
        }

            ul.sidebar li.active a i {
                color: var(--white);
            }

/* CARDS DE ALUNO / ESTUDANTE */
.student-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
    height: 100%;
}

    .student-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
        border-color: var(--primary-light);
    }

.student-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.student-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* CARDS DE CURSO */
.course-card-clean {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-soft);
}

    .course-card-clean:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-5px);
    }

.course-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.course-card-body {
    padding: 20px;
}

.course-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.4;
}

/* --- BLOG & NOTÍCIAS --- */
.blog-post-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
}

    .blog-post-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-5px);
    }

.blog-post-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-img {
    transform: scale(1.05);
}

.blog-post-body {
    padding: 25px;
}

.blog-post-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
    line-height: 1.3;
}

/* --- TIMELINE --- */
ul.timeline {
    list-style-type: none;
    position: relative;
    padding-left: 50px;
}

    ul.timeline:before {
        content: ' ';
        background: var(--border-grey);
        display: inline-block;
        position: absolute;
        left: 20px;
        width: 2px;
        height: 100%;
        z-index: 1;
    }

    ul.timeline > li {
        margin: 30px 0;
        position: relative;
    }

        ul.timeline > li:before {
            content: ' ';
            background: var(--primary);
            display: inline-block;
            position: absolute;
            border-radius: 50%;
            border: 4px solid var(--white);
            left: -38px;
            width: 18px;
            height: 18px;
            z-index: 2;
            box-shadow: var(--shadow-sm);
        }

/* --- MODAIS --- */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.modal-header {
    border-bottom: none;
    padding: 30px 30px 10px;
}

.modal-title {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.btn-modal-submit {
    background-color: var(--primary);
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    color: var(--white);
    transition: all 0.3s ease;
    width: 100%;
}

    .btn-modal-submit:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(20, 71, 129, 0.2);
    }

/* --- ÁREA DE ESTUDOS --- */
/*.lesson-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid var(--border-soft);
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.lesson-item:hover {
    background: var(--bg-slate);
    border-color: var(--primary-soft);
}*/

.lesson-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-right: 15px;
}

.progresscircle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(var(--success) calc(var(--value) * 1%), var(--bg-slate) 0);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

    .progresscircle::before {
        content: "";
        position: absolute;
        width: 82%;
        height: 82%;
        background: var(--white);
        border-radius: 50%;
    }

/* --- ESTADOS VAZIOS --- */
.empty-state-container {
    padding: 60px 40px;
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    border: 2px dashed var(--border-soft);
    margin: 20px 0;
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 25px;
    opacity: 0.5;
}

/* --- SLIDERS & FLUTUANTES --- */
/*.owl-nav button, .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--white) !important;
    color: var(--primary) !important;
    border-radius: 50% !important;
    box-shadow: var(--shadow-md) !important;
    border: none !important;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem !important;
}

.owl-nav button:hover, .slick-arrow:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
}*/

/* SLIDER */

/*.slider-home .img {
        display: block;
        overflow: hidden;
        border-radius: .3rem;
    }

    .slider-home a img {
        transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -webkit-transition: all 0.5s ease 0s;
        -ms-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        margin: 0;
    }

    .slider-home a:hover img {
        transform: scale(1.15);
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
    }

    .slider-home a h4 {
        font-family: "Roboto", sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-main);
        line-height: 1.4em;
        transition: .2s;
        text-align: left;
        margin-top: 1rem;
    }

    .slider-home a p {
        font-family: "Roboto", sans-serif;
        font-optical-sizing: auto;
        color: #666666;
        font-size: .9rem;
        font-weight: 300;
        font-style: normal;
        line-height: 1.5em;
    }

    .slider-home a:hover {
        text-decoration: none;
    }*/

.responsive button.slick-prev.slick-arrow {
    left: -10px;
    z-index: 10;
}

.responsive button.slick-next.slick-arrow {
    right: 10px;
    z-index: 10;
}

.responsive:hover .slick-prev:before, .responsive:hover .slick-next:before {
    font-size: 36px !important;
    opacity: 1;
    color: var(--text-light) !important;
    font-family: 'slick';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* FIM SLIDER */


/* --- RESPONSIVIDADE ADICIONAL --- */
@media (max-width: 767px) {
    body {
        margin-top: 70px;
    }

    html {
        font-size: 95%;
    }

    h1 {
        font-size: 1.85rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-desktop {
        display: none !important;
    }
    /*.owl-nav, .slick-arrow { display: none !important; }*/
}

.subtitle {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}


/* Breadcrumb */
ol.breadcrumb li a {
    font-family: "Roboto", sans-serif;
    font-size: .75rem;
}

.bg-breadcrumb {
    color: var(--white);
    background: linear-gradient(90deg, var(--primary-soft) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

    .bg-breadcrumb::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 200%;
        background: rgba(255, 255, 255, 0.03);
        transform: rotate(25deg);
        pointer-events: none;
    }

    .bg-breadcrumb h1 {
        color: var(--white);
    }

.breadcrumb {
    padding: .75rem 0;
    background: transparent;
}

li.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--white);
    font-size: .75rem;
    font-family: "Roboto", sans-serif;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
    font-size: .75rem;
    font-family: "Roboto", sans-serif;
}
/* Fim Breadcrumb */





/*Início Sidebar Minha Conta*/
.sidebar-modern {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    padding: 25px 20px;
    border: 1px solid #f0f2f5;
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #a0aec0;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #edf2f7;
}

    .sidebar-title:first-of-type {
        margin-top: 0;
    }

.sidebar-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 5px;
    border-radius: 8px;
    color: #4a5568;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .sidebar-link i {
        width: 24px;
        font-size: 1.1rem;
        color: #a0aec0;
        transition: all 0.3s ease;
    }

    .sidebar-link:hover {
        background-color: #ebf4ff;
        color: #3182ce;
        text-decoration: none;
        transform: translateX(5px);
    }

        .sidebar-link:hover i {
            color: #3182ce;
        }
/*Fim Sidebar Minha Conta*/




/* Meu Usuário */

.user-header {
    background: linear-gradient(90deg, var(--primary-soft) 0%, var(--primary-light) 100%);
    padding: 25px 0 50px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

    .user-header::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 200%;
        background: rgba(255,255,255,0.03);
        transform: rotate(25deg);
        pointer-events: none;
    }

.user-avatar-wrapper {
    position: relative;
    z-index: 2;
}

.user-avatar-img {
    width: 110px;
    height: 110px;
    border-radius: 25px;
    border: 4px solid rgba(255,255,255,0.2);
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: #fff;
    transition: all 0.3s ease;
}

.user-avatar-wrapper:hover .user-avatar-img {
    transform: scale(1.05) rotate(-2deg);
    border-color: #fff;
}

.user-content {
    color: #fff;
    z-index: 2;
    position: relative;
}

.user-badge {
    display: inline-block;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    /* padding: 5px 15px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        background: var(--secondary);
        border-radius: 50px; */
}

.user-content h2 {
    /* font-weight: 800;
        font-size: 2rem; */
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.user-nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .user-nav-links a {
        color: rgba(255,255,255,0.85);
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        text-decoration: none !important;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .user-nav-links a:hover {
            color: #fff;
            transform: translateY(-2px);
        }

        .user-nav-links a i {
            font-size: 1.1rem;
            opacity: 0.8;
        }

/* Fim Meu Usuário */


/* Navbar */
.navbar-desktop {
    height: 85px;
    background: var(--white) !important;
    border-bottom: 1px solid var(--border-soft);
    z-index: 1031 !important;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 992px) {
    .navbar-desktop .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.navbar-brand img {
    height: 55px;
    width: auto;
}

ul.navbar-nav li.nav-item a i.fa {
    font-size: 38px;
}

.mobile-logo img {
    height: 40px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
}


/* Estilos do Menu Mobile */
@media (max-width: 991px) {
    .navbar-mobile {
        height: 70px;
        background: var(--white) !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        z-index: 1031;
    }

    .mobile-drawer {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 1060;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
    }

        .mobile-drawer.active {
            left: 0;
        }

    .burger-menu {
        width: 28px;
        height: 18px;
        position: relative;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 1051;
    }

    .burger-line {
        width: 100%;
        height: 3px;
        background-color: var(--primary);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
}

@media (min-width: 992px) {
    .navbar-mobile, .mobile-drawer, .drawer-overlay {
        display: none !important;
    }
}

.drawer-header {
    padding: 20px;
    background: #f4f8fb;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-close-btn {
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    line-height: 1;
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.drawer-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0;
}

.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: #444;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
}

    .drawer-link:hover {
        color: var(--primary);
        background: #f0f7ff;
        text-decoration: none;
    }

.drawer-link-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .drawer-link-content i {
        width: 20px;
        text-align: center;
        color: var(--primary);
        font-size: 1.1rem;
    }

.drawer-submenu {
    background: #fafafa;
    list-style: none;
    padding: 0;
    display: none;
}

    .drawer-submenu.open {
        display: block;
    }

    .drawer-submenu .drawer-link {
        padding-left: 52px;
        font-size: 0.95rem;
        font-weight: 500;
        color: #666;
    }

.drawer-footer {
    padding: 25px 20px;
    background: #fff;
    border-top: 1px solid #eee;
}

.btn-drawer-login {
    background: var(--primary);
    color: #fff !important;
    border-radius: 12px;
    font-weight: 700;
    padding: 14px;
    margin-bottom: 12px;
    text-align: center;
    display: block;
    box-shadow: 0 4px 10px rgba(20, 71, 129, 0.2);
}

.btn-drawer-signup {
    background: var(--secondary);
    color: #fff !important;
    border-radius: 12px;
    font-weight: 700;
    padding: 14px;
    text-align: center;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 134, 65, 0.2);
}

body.drawer-open {
    overflow: hidden;
}

/* Menu Interno (Desktop) */
.menu-principal {
    background-color: var(--primary);
}

    .menu-principal .nav-link {
        color: #ffffff !important;
        font-weight: 600;
        font-size: 0.95rem;
        padding: 12px 18px !important;
        transition: all 0.3s;
    }

        .menu-principal .nav-link:hover {
            background: rgba(255,255,255,0.15);
        }

/* Dropdown Hover e Indicador (Biquinho) */
@media (min-width: 992px) {
    .navbar-desktop .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-desktop .dropdown-menu {
        display: none;
        transition: all 0.3s ease;
        margin-top: 15px !important; /* Espaçamento que você desejava */
    }

        /* Ponte invisível para o mouse não perder o foco no gap */
        .navbar-desktop .dropdown-menu::before {
            content: "";
            position: absolute;
            top: -15px;
            left: 0;
            right: 0;
            height: 15px;
            background: transparent;
        }

        /* O Biquinho (Triângulo) */
        .navbar-desktop .dropdown-menu::after {
            content: "";
            border-bottom: 10px solid #fff;
            border-right: 10px solid transparent;
            border-left: 10px solid transparent;
            position: absolute;
            top: -10px;
            right: 12px;
            z-index: 10;
        }

    .dropdown-menu .dropdown-item {
        padding: .75rem 1.5rem;
    }
}

/* Menu Mobile */
@media (max-width: 991px) {
    .navbar-mobile {
        height: 70px;
        background: var(--white) !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }

    .mobile-drawer {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 1060;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
    }

        .mobile-drawer.active {
            left: 0;
        }

    .burger-menu {
        width: 28px;
        height: 18px;
        position: relative;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 1051;
    }

    .burger-line {
        width: 100%;
        height: 3px;
        background-color: var(--primary);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
}

@media (min-width: 992px) {
    .navbar-mobile, .mobile-drawer, .drawer-overlay {
        display: none !important;
    }
}

.drawer-header {
    padding: 20px;
    background: #f4f8fb;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-close-btn {
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    line-height: 1;
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.drawer-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0;
}

.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: #444;
    font-weight: 600;
    text-decoration: none !important;
    border-bottom: 1px solid #f5f5f5;
}

    .drawer-link:hover {
        color: var(--primary);
        background: #f0f7ff;
    }

.drawer-link-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .drawer-link-content i {
        width: 20px;
        text-align: center;
        color: var(--primary);
        font-size: 1.1rem;
    }

.drawer-submenu {
    background: #fafafa;
    list-style: none;
    padding: 0;
    display: none;
}

    .drawer-submenu.open {
        display: block;
    }

    .drawer-submenu .drawer-link {
        padding-left: 52px;
        font-size: 0.95rem;
        font-weight: 500;
        color: #666;
    }

.drawer-footer {
    padding: 25px 20px;
    background: #fff;
    border-top: 1px solid #eee;
}

.btn-drawer-login {
    background: var(--primary);
    color: #fff !important;
    border-radius: 12px;
    font-weight: 700;
    padding: 14px;
    margin-bottom: 12px;
    text-align: center;
    display: block;
    box-shadow: 0 4px 10px rgba(20, 71, 129, 0.2);
}

.btn-drawer-signup {
    background: var(--secondary);
    color: #fff !important;
    border-radius: 12px;
    font-weight: 700;
    padding: 14px;
    text-align: center;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 134, 65, 0.2);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    z-index: 1049;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .drawer-overlay.active {
        display: block !important;
        opacity: 1;
    }

body.drawer-open {
    overflow: hidden;
}


/* Modal */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.modal-header {
    border-bottom: none;
    padding: 30px 30px 10px;
}

.modal-body {
    padding: 10px 30px 30px;
}

.modal-title {
    font-weight: 800;
    color: #333;
    font-size: 1.5rem;
}

.modal .form-control-lg {
    border-radius: 12px;
    border: 2px solid #eee;
    font-size: 0.95rem;
    height: auto;
}

    .modal .form-control-lg:focus {
        border-color: #144781;
        box-shadow: none;
        background-color: #f4f8fb;
    }

.btn-modal-submit {
    background-color: #144781;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

    .btn-modal-submit:hover {
        background-color: #113a6b;
        transform: translateY(-1px);
        color: white;
    }

.modal-user-type {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

    .modal-user-type .btn-group-toggle {
        width: 100%;
        display: flex;
        gap: 5px;
    }

    .modal-user-type .btn-outline-primary {
        flex: 1;
        border-radius: 10px;
        border: 2px solid #eee;
        color: #666;
        font-weight: 600;
        transition: all 0.2s ease;
    }

        .modal-user-type .btn-outline-primary:hover {
            background-color: #144781;
            border-color: #144781;
            color: #fff;
        }

        .modal-user-type .btn-outline-primary:not(:disabled):not(.disabled).active {
            background-color: #f4f8fb;
            border-color: #144781;
            color: #144781;
        }
/* Fim Modal */


/* FOOTER */
footer {
    background-color: var(--primary-light);
    padding: 80px 0 40px;
}

    footer h5 {
        color: var(--primary-dark);
        margin-bottom: 25px;
    }

    footer .list-footer {
        list-style: none;
        padding: 0;
    }

        footer .list-footer li {
            margin-bottom: 12px;
        }

        footer .list-footer a {
            color: var(--text-dark);
        }

            footer .list-footer a:hover {
                color: var(--primary);
                padding-left: 5px;
            }

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-logo {
    max-height: 70px;
    width: auto;
}

.footer-modern {
    background-color: #fcfdfe;
    padding: 80px 0 0;
    border-top: 1px solid #edf2f7;
    color: #4a5568;
    position: relative;
    overflow: hidden;
}

    .footer-modern::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 100%;
        background: radial-gradient(circle, rgba(20, 71, 129, 0.03) 0%, transparent 70%);
        pointer-events: none;
    }

    .footer-modern .brand-main {
        font-weight: 800;
        color: var(--primary);
        text-transform: uppercase;
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .footer-modern .brand-sub {
        font-size: 0.9rem;
        color: #718096;
        margin-top: 4px;
    }

    .footer-modern .brand-text {
        border-left: 3px solid var(--primary);
        padding-left: 15px;
        margin-top: 15px;
    }

    .footer-modern .btn-whatsapp-footer {
        background: #25d366;
        color: var(--white) !important;
        padding: 14px 28px;
        border-radius: 15px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-weight: 700;
        text-decoration: none !important;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.15);
        margin-top: 20px;
    }

        .footer-modern .btn-whatsapp-footer:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(37, 211, 102, 0.25);
        }

    .footer-modern .copyright-bar {
        margin-top: 60px;
        padding: 30px 0;
        border-top: 1px solid #edf2f7;
        text-align: center;
        font-size: 0.85rem;
        color: #a0aec0;
        background: #f8fafc;
    }

    .footer-modern .footer-brand {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-modern .footer-logo {
        max-height: 65px;
        width: auto;
        transition: all 0.3s ease;
    }

    .footer-modern .footer-title {
        font-weight: 700;
        color: #2d3748;
        margin-bottom: 25px;
        font-size: 1.1rem;
        position: relative;
    }

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

        .footer-modern .list-footer a {
            color: #718096;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none !important;
            display: inline-block;
        }

            .footer-modern .list-footer a:hover {
                color: var(--primary);
                transform: translateX(5px);
            }

        .footer-modern .list-footer li {
            margin-bottom: 6px;
        }

    .footer-modern .social-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-decoration: none !important;
        border: 1px solid #edf2f7;
        font-size: 1.2rem;
    }

        .footer-modern .social-icon:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-5px) rotate(8deg);
            box-shadow: 0 8px 20px rgba(20, 71, 129, 0.2);
        }

    .footer-modern .social-links {
        display: flex;
        gap: 12px;
        margin-top: 25px;
    }

footer ul.list-footer li {
    font-size: 1rem;
    line-height: 2.5rem;
}

form.form-search, form.form-news {
    display: flex;
}

input.form-news {
    flex: 1;
    height: 50px;
    padding: 0 15px;
    border: 0;
    border-radius: 15px 0 0 15px;
    color: #3a3a3a;
    font-size: 1rem;
    border: 2px solid var(--grey-medium);
    background-color: var(--border-color);
    border-right: 0;
}

.btn-news {
    height: 50px;
    padding: 5px 15px;
    background: var(--primary);
    border-radius: 0px 15px 15px 0px;
    border: 0;
    color: var(--white);
    font-weight: 500;
    transition: background-color 0.2s;
}

    .btn-news:hover {
        color: var(--white);
        background: var(--secondary);
        transition: background-color 0.2s;
    }

input.news {
    border-radius: 5px 0 0 5px;
}

input.search {
    flex: 1;
    height: 70px;
    padding: 0 15px;
    border: 0;
    border-radius: 100px 0 0 100px;
    color: #3a3a3a;
    font-size: 1.1rem;
    border: 2px solid var(--grey-medium);
    background-color: var(--border-color);
    border-right: 0;
    border-radius: 5px 0 0 5px;
}

.fa-tiktok {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.32c7.87,33.47,31.76,60.59,62.75,74.71,13.31,6.06,28.24,9.31,43.16,9.31Z"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.32c7.87,33.47,31.76,60.59,62.75,74.71,13.31,6.06,28.24,9.31,43.16,9.31Z"/></svg>') no-repeat center;
    vertical-align: middle;
}

.copyright {
    padding: 30px 0;
    border-top: 1px solid rgba(20, 71, 129, 0.1);
    font-size: 0.85rem;
    text-align: center;
    color: var(--text-grey);
}

@media (max-width: 767px) {
    #FormNewsletter h6 {
        font-size: 1.25rem;
    }
}

@media (max-width: 991px) {
    .footer-modern {
        padding: 60px 0 0;
    }

        .footer-modern .footer-brand {
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .footer-modern .social-links {
            justify-content: center;
        }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
        border-radius: 15px;
    }
}
/* Fim Footer */


/* WhatsApp FLUTUANTES */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 20px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

    .whatsapp-float:hover {
        transform: scale(1.1) rotate(10deg);
        color: var(--white);
    }

/* Fim WhatsApp FLUTUANTES */

/* SHARE FLUTUANTE */
.floating-share {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

    .floating-share ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .floating-share a {
        width: 45px;
        height: 45px;
        background: var(--white);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-bottom: 10px;
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
        font-size: 1.2rem;
        text-decoration: none;
    }

        .floating-share a:hover {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.1);
        }
/* Fim SHARE FLUTUANTE */


/* Cookies */
.box-cookies {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 900px;
    width: calc(100% - 20px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    z-index: 9999;
    border-left: 5px solid var(--primary-soft);
    transition: all 0.3s ease;
}

.msg-cookies {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.5;
}

    .msg-cookies a {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
    }

        .msg-cookies a:hover {
            text-decoration: underline;
        }

.btn-cookies {
    background: var(--primary-soft);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

    .btn-cookies:hover {
        background: var(--primary);
    }

.hide {
    display: none;
}

@media (max-width: 576px) {
    .box-cookies {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .btn-cookies {
        width: 100%;
        text-align: center;
    }
}
/* --- Fim Cookies --- */