/**
 * ========================================
 * PUBLIC THEME - Página Pública
 * Tema Moderno com Gradientes, Sombras Elegantes & Efeitos
 * Design System: UX/UI Professional Grade
 * ========================================
 */

/* ===== PUBLIC LAYOUT ===== */
body {
    background-color: #F8F4FB;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(255, 182, 255, 0.45) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(235, 168, 255, 0.45) 0%, transparent 35%),
        radial-gradient(circle at 50% 60%, rgba(255, 158, 242, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 10% 85%, rgba(169, 178, 255, 0.4) 0%, transparent 40%);
    background-attachment: fixed;
    background-size: cover;
    color: var(--color-text-dark);
    min-height: 100vh;
}

:root {
    --navbar-height: 90px;
}

body>main {
    padding-top: var(--navbar-height) !important;
    position: relative;
    z-index: 1;
    margin-bottom: 0 !important;
}

/* ===== PUBLIC NAVBAR - DESIGN MODERNO ===== */
.navbar-custom {
    background: transparent;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: var(--z-index-sticky);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    padding: 0 15px 0 15px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    min-height: var(--navbar-height, 90px);
}

.navbar-custom .container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: var(--safe-margin-lr) !important;
    padding-right: var(--safe-margin-lr) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.navbar-custom .navbar-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #5D3E8B !important;
    letter-spacing: 0px;
    text-decoration: none !important;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
}

.navbar-custom .navbar-brand:hover {
    color: #5D3E8B !important;
    text-decoration: none !important;
}

.navbar-custom .navbar-brand img {
    filter: none;
    transition: none;
    background-color: transparent !important;
}

.navbar-custom .navbar-brand:hover img {
    filter: none;
    opacity: 1;
    background-color: transparent !important;
}

/* ===== NAVBAR BACKDROP (Mobile) ===== */
.navbar-backdrop {
    position: fixed;
    top: calc(var(--navbar-height) + 30px);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: calc(var(--z-index-sticky));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.navbar-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

/* Navbar Brand Elements */
.navbar-brand-logo {
    height: 70px;
    width: auto;
}

.navbar-brand-text {
    margin-left: 12px;
    line-height: 1.3;
    min-width: 0;
    overflow: hidden;
}

.brand-title {
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 767.98px) {
    .brand-hide-mobile {
        display: none;
    }

    .navbar-custom .navbar-brand {
        overflow: visible !important;
    }

    .navbar-brand-text {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        height: var(--navbar-height, 90px) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        pointer-events: none !important;
        z-index: 5;
    }

    .brand-title {
        font-size: 28px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        margin: 0 !important;
        color: #5D3E8B !important;
        text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
    }

    .brand-subtitle {
        font-size: 11px !important;
        margin-top: 2px !important;
        opacity: 0.9 !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
    }

    .navbar-brand-logo {
        height: 60px !important;
        position: relative;
        z-index: 10;
    }
}

.brand-subtitle {
    font-size: 12px;
    margin-top: 2px;
}

.navbar-custom .nav-link {
    color: #5D3E8B !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-radius: 4px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
}

.navbar-custom .nav-link::before {
    display: none;
}

.navbar-custom .nav-link:hover {
    color: #5D3E8B !important;
    background-color: rgba(93, 62, 139, 0.08);
}

.navbar-custom .nav-link:hover::before {
    display: none;
}

.navbar-custom .nav-link.active {
    color: #B680D8 !important;
    /*background: linear-gradient(135deg, rgba(182, 128, 216, 0.15) 0%, rgba(106, 76, 147, 0.08) 100%);*/
    font-weight: 600;
    border-bottom: 3px solid #B680D8;
    /*border-radius: 4px 4px 0 0; */
    box-shadow: inset 0 -2px 0 rgba(182, 128, 216, 0.3);
}

.navbar-custom .nav-link.active::before {
    display: none;
}

/* ===== NAVBAR DROPDOWN ===== */
.navbar-custom .dropdown-menu {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

@keyframes dropdownSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-custom .dropdown-item {
    color: #5D3E8B;
    font-weight: 400;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none !important;
    position: relative;
}

.navbar-custom .dropdown-item:hover {
    background-color: rgba(93, 62, 139, 0.08);
    color: #5D3E8B;
    padding-left: 1.5rem;
}

.navbar-custom .dropdown-item.active {
    background: linear-gradient(90deg, rgba(182, 128, 216, 0.2) 0%, rgba(182, 128, 216, 0.05) 100%);
    color: #B680D8 !important;
    font-weight: 600;
    border-left: 3px solid #B680D8;
    padding-left: calc(1.5rem - 3px);
}

/* ===== NAVBAR DROPDOWN END ===== */

@media (min-width: 1024px) {

    .navbar-custom .nav-item.dropdown:hover .dropdown-menu,
    .navbar-custom .nav-item.dropdown:focus-within .dropdown-menu {
        display: block;
        animation: dropdownSlideDown 0.2s ease forwards;
    }
}

/* ===== NAVBAR TOGGLER ===== */
.navbar-custom .navbar-toggler {
    border-color: rgba(93, 62, 139, 0.3);
    color: #5D3E8B;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(93, 62, 139, 0.25);
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%235D3E8B' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== MOBILE MENU TRANSITION & STYLE ===== */
.navbar-collapse.collapsing {
    transition: height 0.3s ease !important;
}

.navbar-custom .navbar-collapse {
    flex-grow: 1 !important;
    display: flex !important;
    justify-content: center !important;
    transition: opacity 0.25s ease, transform 0.25s ease;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

/* ===== RESPONSIVE NAV BEHAVIOR ===== */
@media (max-width: 991.98px) {
    .navbar-custom .navbar-nav {
        display: none !important;
    }

    .navbar-custom .navbar-toggler {
        display: inline-flex !important;
        margin-left: auto;
        touch-action: manipulation;
    }

    .navbar-custom .navbar-collapse.show {
        display: block !important;
        position: fixed;
        top: calc(var(--navbar-height) + 30px);
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        padding: 0.75rem var(--spacing-lg);
        z-index: calc(var(--z-index-sticky) + 1);
        opacity: 1;
        transform: translateY(0);
        max-height: calc(100vh - (var(--navbar-height) + 30px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .navbar-custom .navbar-collapse.collapsing {
        position: fixed;
        top: calc(var(--navbar-height) + 30px);
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        padding: 0.75rem var(--spacing-lg);
        z-index: calc(var(--z-index-sticky) + 1);
        opacity: 0;
        transform: translateY(-6px);
    }

    .navbar-custom .navbar-collapse.show .navbar-nav {
        display: flex !important;
        flex-direction: column;
        gap: 0.5rem;
        margin-left: 0 !important;
    }

    .navbar-custom .navbar-collapse.show .nav-link {
        padding: 0.95rem 1rem !important;
        border-radius: 0.375rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.75rem;
        text-decoration: none !important;
        text-align: left;
        font-size: 1rem;
        line-height: 1.2;
        min-height: 44px;
        color: #5D3E8B !important;
        width: 100%;
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
    }

    .navbar-custom .navbar-collapse.show {
        z-index: var(--z-index-fixed);
    }

    .navbar-custom .navbar-collapse.show .nav-link:focus {
        outline: 2px solid #9e0dbb;
        outline-offset: 2px;
    }

    .navbar-custom .navbar-collapse.show .nav-link:active {
        background-color: rgba(93, 62, 139, 0.12);
    }

    .navbar-custom .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        box-shadow: none;
        margin-top: 0.25rem;
        border: none;
        padding: 0.25rem 0;
    }
}

/* ===== FIX: ICON OVERLAP 920px–1024px ===== */
@media (min-width: 920px) and (max-width: 1023.98px) {
    .navbar-custom .nav-link i {
        display: none !important;
    }

    .navbar-custom .nav-link {
        padding-left: 1rem !important;
    }
}

@media (min-width: 992px) {
    .navbar-custom .navbar-toggler {
        display: none !important;
    }

    .navbar-custom .navbar-collapse {
        position: static;
        display: flex !important;
    }

    .navbar-custom .navbar-nav {
        display: flex !important;
    }
}

@media (min-width: 1024px) {
    .navbar-custom .nav-link i {
        display: none !important;
    }
}

/* ===== DESKTOP/TABLET/MOBILE NAV VISIBILITY ===== */
@media (max-width: 1024px) {
    .navbar-custom .desktop-nav {
        display: none !important;
    }

    .hamburger-menu-btn {
        display: inline-flex !important;
        margin-left: auto;
        touch-action: manipulation;
    }
}

@media (min-width: 1025px) {
    .navbar-custom .desktop-nav {
        display: flex !important;
        margin-left: auto !important;
        align-items: center !important;
    }

    .hamburger-menu-btn {
        display: none !important;
    }
}

/* ===== MODERN MOBILE OVERLAY MENU ===== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
}

.menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(45, 27, 78, 0.5);
    z-index: 1;
}

.menu-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 40px;
    transform: translateX(100%);
    overflow-y: auto;
}

.menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 60px;
}

.menu-close-btn {
    width: 44px;
    height: 44px;
    background: rgba(93, 62, 139, 0.1);
    border: none;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-close-btn:hover {
    background: rgba(93, 62, 139, 0.2);
    transform: rotate(90deg);
}

.menu-close-btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #5D3E8B;
    border-radius: 2px;
}

.menu-close-btn span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close-btn span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-nav {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 0;
    display: block !important;
    visibility: visible !important;
}

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

.menu-item {
    margin-bottom: 14px;
    overflow: hidden;
}

.menu-item a,
.menu-item>.menu-text-parent {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.menu-num {
    display: none;
    /* Numeração removida a pedido do usuário */
}

.menu-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2D1B4E !important;
    letter-spacing: -0.01em;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.2;
}

.menu-item a:hover .menu-text {
    color: #B680D8;
    transform: translateX(10px);
}

.menu-item a.active .menu-text {
    color: #5D3E8B;
}

/* Sub-list styling */
.sub-list {
    list-style: none;
    padding: 15px 0 0 45px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sub-list a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sub-list a:hover {
    color: #5D3E8B;
}

.menu-footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-social {
    display: flex;
    gap: 25px;
}

.menu-social a {
    font-size: 1.4rem;
    color: #2D1B4E;
    transition: transform 0.3s ease;
}

.menu-social a:hover {
    transform: translateY(-5px) scale(1.1);
    color: #B680D8;
}

/* Toggle Button Styling */
.menu-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.menu-toggle-btn span {
    width: 100%;
    height: 2px;
    background: #5D3E8B;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.menu-toggle-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    width: 100%;
}

.menu-toggle-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    width: 100%;
}

@media (max-width: 1024px) {
    .menu-toggle-btn {
        display: flex;
    }
}

.submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.submenu .sidebar-menu-link:not(.submenu-toggle) {
    padding-left: calc(var(--spacing-lg) + 0.75rem);
}

.sidebar-menu-item.has-submenu>.submenu-toggle {
    padding: 1rem 1.25rem !important;
}

.sidebar-menu-item.open>.submenu {
    display: block;
}

.sidebar-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    color: #5D3E8B;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 0.375rem;
    min-height: 48px;
}

.sidebar-menu-link span {
    display: inline !important;
    flex: 1;
    color: inherit;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
}

/* SUPER ESPECÍFICO - Override para garantir que spans apareçam */
.sidebar-menu .sidebar-menu-list .sidebar-menu-item .sidebar-menu-link span {
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sidebar-menu-link:hover,
.sidebar-menu-link:focus {
    text-decoration: none;
}

.sidebar-menu-link:hover,
.sidebar-menu-link:active {
    background-color: rgba(93, 62, 139, 0.08);
    color: #5D3E8B;
    transform: translateX(2px);
}

/* REMOVE TOOLTIP EFFECT FROM MENU LINKS */
.sidebar-menu-link:hover::after,
.sidebar-menu-link:focus::after {
    display: none !important;
}

.submenu-toggle {
    border: none;
    background: transparent;
}

.submenu-toggle span {
    display: inline !important;
    flex: 1;
    color: inherit;
    visibility: visible !important;
    opacity: 1 !important;
}

/* SUPER ESPECÍFICO - Override para submenu-toggle */
.sidebar-menu .submenu-toggle span {
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sidebar-menu-link.active:not(.submenu-toggle) {
    background: linear-gradient(135deg, rgba(182, 128, 216, 0.2) 0%, rgba(106, 76, 147, 0.1) 100%);
    color: #B680D8;
    font-weight: 600;
    box-shadow: inset -4px 0 0 #B680D8;
}

.submenu-toggle.active {
    background: transparent !important;
    box-shadow: none !important;
    color: #5D3E8B !important;
}

@media (max-width: 1024px) {
    .sidebar-menu-header h3 {
        padding-left: var(--spacing-lg);
    }
}

.sidebar-menu-link i {
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.sidebar-menu-link:hover i {
    transform: scale(1.08);
    color: #8B4BA8;
}

.sidebar-menu-link:focus {
    outline: 2px solid #9e0dbb;
    outline-offset: 2px;
}

.hamburger-menu-btn {
    background: transparent;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    flex-shrink: 0;
    border-radius: 6px;
    margin-left: auto;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 3px;
    background: #5D3E8B;
    margin: 3px 0;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.hamburger-menu-btn[aria-expanded="true"] .line-1 {
    transform: translateY(6px) rotate(45deg);
}

.hamburger-menu-btn[aria-expanded="true"] .line-2 {
    opacity: 0;
}

.hamburger-menu-btn[aria-expanded="true"] .line-3 {
    transform: translateY(-6px) rotate(-45deg);
}

.hamburger-menu-btn:hover .hamburger-line {
    background-color: #8B4BA8;
}

@media (prefers-reduced-motion: reduce) {
    .sidebar-menu-content {
        transition: none;
    }

    .sidebar-menu-overlay {
        transition: none;
    }

    .sidebar-menu-link {
        transition: none;
    }

    .hamburger-line {
        transition: none;
    }
}

/* ===== PUBLIC CONTAINERS ===== */
.container-public {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 200px;
    padding: var(--spacing-xl) var(--safe-margin-lr);
}

.content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: var(--safe-margin-lr);
    padding-right: var(--safe-margin-lr);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
}

.navbar-custom .nav-link:focus-visible,
.sidebar-menu-link:focus-visible {
    outline: 0.15rem solid #9e0dbb;
    outline-offset: 0.15rem;
}

.sidebar-menu-overlay {
    will-change: opacity;
}

.sidebar-menu-content {
    will-change: transform;
}

.hamburger-line {
    will-change: transform, opacity;
}

.hamburger-menu-btn i {
    font-size: 1.5rem;
    color: #5D3E8B;
}

.section-public {
    padding: var(--spacing-2xl) var(--safe-margin-lr);
    position: relative;
}

main.devocionais.mva-plus-exception,
main.podcasts.mva-plus-exception,
main.estudos.mva-plus-exception,
main.radio-mva.mva-plus-exception {
    margin: 0 !important;
    padding: 0 !important;
    --safe-margin-lr: 0 !important;
}

main.devocionais.mva-plus-exception .content-wrapper,
main.podcasts.mva-plus-exception .content-wrapper,
main.estudos.mva-plus-exception .content-wrapper,
main.radio-mva.mva-plus-exception .content-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

main.devocionais.mva-plus-exception .container,
main.podcasts.mva-plus-exception .container,
main.estudos.mva-plus-exception .container,
main.radio-mva.mva-plus-exception .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

main.devocionais.mva-plus-exception .container-public,
main.podcasts.mva-plus-exception .container-public,
main.estudos.mva-plus-exception .container-public,
main.radio-mva.mva-plus-exception .container-public {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

main.devocionais.mva-plus-exception .section-public,
main.podcasts.mva-plus-exception .section-public,
main.estudos.mva-plus-exception .section-public,
main.radio-mva.mva-plus-exception .section-public {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.section-public.dark {
    background: linear-gradient(135deg, #E9C3FA 0%, #DEB3F0 100%);
    color: #5D3E8B;
    box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.section-public.light {
    background-color: var(--color-text-white);
    color: var(--color-text-dark);
}

/* ===== PUBLIC HERO ===== */
.hero-section {
    background: transparent !important;
    padding: 5.5rem var(--spacing-xl) 4.5rem;
    text-align: center;
    color: #5D3E8B;
    border-radius: 0;
    position: relative;
    overflow: visible;
    box-shadow: none;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #5D3E8B 0%, #8B4BA8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    position: relative;
    z-index: 2;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===== PUBLIC CARDS - DESIGN SOFISTICADO ===== */
.card-public {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 244, 251, 0.8) 100%);
    border: 1.5px solid rgba(233, 195, 250, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(93, 62, 139, 0.08);
    position: relative;
    overflow: hidden;
}

.card-public::before {
    content: '';
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, #B300E6 0%, #8B4BA8 50%, #E9C3FA 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-public:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(93, 62, 139, 0.18);
    border-color: rgba(233, 195, 250, 0.6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 244, 251, 1) 100%);
}

.card-public:hover::before {
    opacity: 1;
}

.card-public img {
    border-radius: var(--radius-md);
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.4s ease;
    margin-bottom: var(--spacing-md);
}

.card-public:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.card-public-header {
    margin-bottom: var(--spacing-md);
}

.card-public-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #5D3E8B;
    margin: 0;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.card-public:hover .card-public-title {
    color: #8B4BA8;
}

.card-public-body {
    color: #4B5563;
    line-height: 1.7;
    font-weight: 500;
}

/* ===== PUBLIC BUTTONS - DESIGN PREMIUM ===== */
.btn-public,
.btn-primary {
    background: linear-gradient(135deg, #B300E6 0%, #8B4BA8 100%);
    border: none;
    color: var(--color-text-white);
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.4px;
}

.btn-public::before,
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-public:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 8px rgba(179, 0, 230, 0.4);
    background: linear-gradient(135deg, #8B4BA8 0%, #B300E6 100%);
}

.btn-public:hover::before,
.btn-primary:hover::before {
    left: 100%;
}

.btn-public:active,
.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(179, 0, 230, 0.3);
}

/* ===== PUBLIC FORMS ===== */
.form-label {
    color: #5D3E8B;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.form-control,
.form-select {
    border: 2px solid rgba(233, 195, 250, 0.4);
    border-radius: var(--radius-md);
    color: var(--color-text-dark);
    transition: all 0.3s ease;
    background-color: rgba(248, 244, 251, 0.5);
}

.form-control:focus,
.form-select:focus {
    border-color: #B300E6;
    box-shadow: 0 0 0 0.3rem rgba(179, 0, 230, 0.15);
    background-color: var(--color-text-white);
}

.form-control::placeholder {
    color: rgba(75, 85, 99, 0.6);
    font-weight: 500;
}

/* ===== PUBLIC FOOTER - DESIGN ELEGANTE ===== */
.footer-public,
footer {
    background: linear-gradient(135deg, #5D3E8B 0%, #4A2D6B 100%);
    color: var(--color-text-white);
    padding: var(--spacing-2xl) var(--spacing-xl);
    margin-top: auto;
    position: static;
    overflow: visible;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.footer-public::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

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

.footer-section.footer-brand {
    align-items: center;
    text-align: center;
}

.footer-logo {
    height: 50px;
    margin-bottom: var(--spacing-lg);
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(1.3) drop-shadow(0 0 8px rgba(233, 195, 250, 0.5));
    transform: scale(1.05);
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
}

.footer-description {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 500;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: rgba(233, 195, 250, 1);
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #E9C3FA 0%, transparent 100%);
}

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

.footer-links li {
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-links a i {
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--color-text-white);
    transform: translateX(4px);
}

.footer-links a:hover i {
    color: #E9C3FA;
    transform: scale(1.2);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    margin-top: var(--spacing-lg);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(233, 195, 250, 0.15);
    color: var(--color-text-white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(233, 195, 250, 0.3);
    font-size: 1.2rem;
}

.social-icon:hover {
    background: linear-gradient(135deg, #E9C3FA 0%, #DEB3F0 100%);
    color: #5D3E8B;
    transform: translateY(-4px) scale(1.1);
    border-color: rgba(233, 195, 250, 0.8);
    box-shadow: 0 8px 20px rgba(233, 195, 250, 0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: var(--spacing-xl) 0;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--spacing-lg);
    font-size: 0.9rem;
    opacity: 0.85;
}

.footer-bottom-left {
    text-align: left;
}

.footer-bottom-center {
    text-align: center;
    font-weight: 600;
}

.footer-bottom-right {
    text-align: right;
}

.footer-links-bottom {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-links-bottom a:hover {
    color: var(--color-text-white);
    text-decoration: underline;
}

.footer-public a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.footer-public a:hover {
    color: var(--color-text-white);
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* ===== HEADINGS ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #5D3E8B;
    font-weight: 700;
    letter-spacing: -0.3px;
}

h2 {
    margin-bottom: var(--spacing-xl);
    font-size: 2.8rem;
}

h3 {
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
}

/* ===== IMAGES FIX ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[alt] {
    /* Garante que imagens quebradas mostram o alt text */
    background-color: #F0F0F0;
    /*padding: 10px;*/
    border-radius: var(--radius-md);
}

/* ===== LINKS ===== */
a {
    color: #a855f7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

a:hover {
    color: #8B4BA8;
    text-decoration: none;
}

/* ===== SEÇÕES ESPECIAIS ===== */
section {
    scroll-margin-top: 100px;
}

/* Reduzir margens entre seções em 50% */
section.my-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

section.container {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

/* Sobrescrever margin-bottom inline de 3rem para 1.5rem (50% redução) */
.card-section {
    margin-bottom: 1.5rem !important;
}

.testimonials-section {
    margin-bottom: 1.5rem !important;
}

.hero-section {
    margin-bottom: 1rem !important;
}

.news-section {
    margin-bottom: 1.5rem !important;
}

/* Aumentar padding das seções principais */
section.card-section {
    padding: 4rem var(--spacing-xl) !important;
}

section.my-5.py-5.card-section {
    padding: 4rem var(--spacing-xl) !important;
}

section.testimonials-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.section-title {
    position: relative;
    padding-bottom: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #B300E6 0%, #E9C3FA 100%);
    border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body>main {
        padding-top: var(--navbar-height) !important;
        /* padding-bottom gerenciado no footer-fix.css */
    }

    .navbar-custom {
        padding: 0.5rem var(--spacing-md) !important;
    }

    .navbar-custom .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-custom .nav-link {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 4rem var(--spacing-md) 3rem;
        margin-left: var(--safe-margin-lr);
        margin-right: var(--safe-margin-lr);
    }

    .container.hero-section {
        padding-left: var(--spacing-md) !important;
        padding-right: var(--spacing-md) !important;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-public {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .container-public {
        padding-left: var(--safe-margin-lr) !important;
        padding-right: var(--safe-margin-lr) !important;
    }

    .container.card-section {
        padding-left: var(--safe-margin-lr) !important;
        padding-right: var(--safe-margin-lr) !important;
    }

    h2 {
        font-size: 2.8rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .card-public {
        padding: var(--spacing-md);
    }

    .btn-public,
    .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }

    .footer-section.footer-brand {
        grid-column: 1 / -1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: var(--spacing-lg);
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar-custom {
        padding: 0.6rem var(--spacing-sm) !important;
    }

    .navbar-custom .navbar-brand {
        font-size: 1rem;
    }

    .navbar-custom .nav-link {
        padding: 0.3rem 0.5rem !important;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .card-public {
        padding: var(--spacing-sm);
    }

    .section-public {
        padding-left: var(--safe-margin-lr) !important;
        padding-right: var(--safe-margin-lr) !important;
    }

    .container.hero-section {
        padding-left: var(--safe-margin-lr) !important;
        padding-right: var(--safe-margin-lr) !important;
    }

    .container.card-section {
        padding-left: var(--safe-margin-lr) !important;
        padding-right: var(--safe-margin-lr) !important;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .btn-public,
    .btn-primary {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .footer-public {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-section.footer-brand {
        grid-column: 1;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        font-size: 0.85rem;
    }

    .footer-links-bottom {
        gap: var(--spacing-sm);
        font-size: 0.8rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .footer-social {
        gap: var(--spacing-sm);
    }
}

/* ===== CARD SECTION CUSTOM ===== */
.card-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 251, 0.9) 100%);
    border: 0.5px solid rgba(179, 0, 230, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(93, 62, 139, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* Seção padrão com espaçamento padronizado */
.section-public-standard {
    padding: 3.5rem var(--spacing-xl);
    margin: 2rem 0;
}

@media (max-width: 767.98px) {
    .section-public-standard {
        padding: 2rem var(--spacing-md);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .section-public-standard {
        padding: 2.5rem var(--spacing-lg);
    }
}

.card-section:hover {
    border-color: rgba(233, 195, 250, 0.5);
    box-shadow: 0 8px 24px rgba(93, 62, 139, 0.12);
    transform: translateY(-2px);
}

.card-section .card-img-top {
    width: 100%;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: 0;
    padding: 0;
    display: block;
}

.card-section .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
}

.card-section h5 {
    color: #5D3E8B;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    margin-top: 0;
}

.card-section .card-text {
    color: #4B5563;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.card-section .btn {
    margin-top: auto;
}

/* ===== CAROUSEL CUSTOM ===== */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.6s;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Indicadores do Carousel - Barras Retangulares ABAIXO */
#acaoSocialCarousel {
    position: relative;
    padding-bottom: 15px;
}

.carousel-indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 0;
    justify-content: center;
    gap: 8px;
    z-index: 10;
    pointer-events: auto;
}

.carousel-indicator-btn {
    background-color: rgba(93, 62, 139, 0.3);
    border: none;
    border-radius: 2px;
    width: 40px;
    height: 4px;
    opacity: 0.6;
    transition: all 0.4s ease;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer;
    pointer-events: auto;
    display: inline-block;
}

.carousel-indicator-btn:hover {
    opacity: 0.8;
    background-color: rgba(93, 62, 139, 0.5);
}

.carousel-indicator-btn.active {
    background-color: rgba(179, 0, 230, 0.7);
    width: 50px;
    height: 4px;
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    background-color: rgba(93, 62, 139, 0.3);
    border: none;
    border-radius: 2px;
    width: 40px;
    height: 4px;
    opacity: 0.6;
    transition: all 0.4s ease;
    padding: 0;
    margin: 0;
    cursor: pointer;
    pointer-events: auto;
}

.carousel-indicators [data-bs-target]:hover {
    opacity: 0.8;
    background-color: rgba(93, 62, 139, 0.5);
}

.carousel-indicators .active {
    background-color: rgba(179, 0, 230, 0.7);
    width: 50px;
    height: 4px;
    opacity: 1;
    transform: none;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 244, 251, 0.8) 100%);
    border: 1px solid rgba(233, 195, 250, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    position: relative;
    box-shadow: 0 4px 12px rgba(93, 62, 139, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 0;
    left: var(--spacing-md);
    font-size: 3rem;
    color: rgba(179, 0, 230, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(93, 62, 139, 0.12);
    border-color: rgba(233, 195, 250, 0.5);
}

.testimonial-text {
    color: #4B5563;
    font-style: italic;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    line-height: 1.8;
    padding-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: #5D3E8B;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #E9C3FA;
}

/* ===== FEATURE BOXES ===== */
.feature-box {
    text-align: center;
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.feature-box i {
    font-size: 3rem;
    color: #B300E6;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.feature-box h4 {
    color: #5D3E8B;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.feature-box p {
    color: #4B5563;
    font-weight: 500;
    line-height: 1.7;
}

.feature-box:hover i {
    color: #8B4BA8;
    transform: scale(1.15) rotate(-10deg);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #E9C3FA 0%, #DEB3F0 100%);
    border-radius: var(--radius-2xl);
    padding: 4rem var(--spacing-xl);
    text-align: center;
    color: #5D3E8B;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(93, 62, 139, 0.15);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    position: relative;
    z-index: 2;
    color: #5D3E8B;
    margin-bottom: var(--spacing-lg);
    font-size: 2rem;
}

.cta-section p {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    color: #5D3E8B;
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

/* ===== CUSTOM ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* ===== BADGES E LABELS ===== */
.badge-custom {
    background: linear-gradient(135deg, #B300E6 0%, #8B4BA8 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(179, 0, 230, 0.2);
}

/* ===== PADRONIZAÇÃO DE PARÁGRAFOS ===== */
p {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* ===== ESTILOS DO PAINEL ADMINISTRATIVO ===== */

/* Grid para checklist de menu */
.menu-checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 15px 0;
}

.menu-check-item {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.menu-check-item:hover {
    background: #e7f3ff;
    border-color: #0d6efd;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.15);
}

.menu-check-item .form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    cursor: pointer;
}

.menu-check-item .form-check-label {
    cursor: pointer;
    margin-bottom: 0;
    font-weight: 500;
    user-select: none;
}

.menu-checkbox:checked~.form-check-label {
    color: #0d6efd;
    font-weight: 600;
}

/* Estilo para cards no painel admin */
.admin-card-sub {
    border: none;
    border-left: 4px solid #dee2e6;
}

.admin-card-sub .card-header {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

/* ===== CKEditor - Estilos de Texto ===== */
.ck-editor__editable {
    color: #000 !important;
    font-size: 1rem !important;
}

.ck-editor__editable p {
    color: #000 !important;
}

.ck-editor__editable h1,
.ck-editor__editable h2,
.ck-editor__editable h3,
.ck-editor__editable h4,
.ck-editor__editable h5,
.ck-editor__editable h6 {
    color: #000 !important;
}

.ck-editor__editable ul,
.ck-editor__editable ol {
    color: #000 !important;
}

.ck-editor__editable li {
    color: #000 !important;
}

.ck-editor__editable blockquote {
    color: #000 !important;
}

.ck-content {
    color: #000 !important;
}

.ck-content p {
    color: #000 !important;
}

/* ===== Responsividade Admin ===== */
@media (max-width: 768px) {
    .menu-checklist-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .btn-lg {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== FOOTER ADMIN SETTINGS ===== */
.links-checklist-grid,
.content-checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.link-check-item,
.content-check-item {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
}

/* ===== MOBILE HERO TITLE FIX ===== */
@media (max-width: 767.98px) {
    .hero-section h1.display-4 {
        font-size: 2.5rem !important;
        font-weight: 900 !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem !important;
        letter-spacing: -1px !important;
        background: linear-gradient(135deg, #5D3E8B 0%, #8B4BA8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none !important;
        display: block;
    }

    .hero-section .lead {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        color: #5D3E8B !important;
        opacity: 0.9;
        font-weight: 500 !important;
    }
}