	/* RESET & BASE */
	.index-menu-inicio * {
	    box-sizing: border-box;
	    margin: 0;
	    padding: 0;
	    font-family: 'Inter', 'Segoe UI', sans-serif;
	}

	/* SCROLL PERSONALIZADO */
	.index-menu-inicio ::-webkit-scrollbar {
	    width: 8px;
	}

	.index-menu-inicio ::-webkit-scrollbar-thumb {
	    background: linear-gradient(180deg, #00bf72, #008793);
	    border-radius: 10px;
	}

	.index-menu-inicio ::-webkit-scrollbar-track {
	    background: #f0f0f0;
	}

	/* NAVBAR */
	.index-menu-inicio .navCustom {
	    background: #ffffff;
	    padding: 1rem 2.5rem;
	    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	    border-bottom: 4px solid #00bf72;
	    transition: all 0.3s ease-in-out;
	    position: sticky;
	    top: 0;
	    z-index: 1000;
	}

	/* LOGO */
	.index-menu-inicio .navCustom img[alt="Logo Logimodal"] {
	    width: 11rem;
	    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
	    transition: transform 0.3s ease;
	}

	.index-menu-inicio .navCustom img[alt="Logo Logimodal"]:hover {
	    transform: scale(1.06);
	}

	/* PERFIL */
	.index-menu-inicio .nav-link img {
	    border-radius: 50%;
	    border: 2px solid #00bf72;
	    transition: all 0.3s ease;
	}

	.index-menu-inicio .nav-link img:hover {
	    transform: scale(1.15) rotate(3deg);
	}

	/* DROPDOWN */
	.index-menu-inicio .dropdown-menu {
	    border: none;
	    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
	    border-radius: 10px;
	    padding: 0.5rem 0;
	    right: 0 !important;
	    left: auto !important;
	    min-width: 230px;
	    background: #ffffff;
	}

	.index-menu-inicio .dropdown-item {
	    font-weight: 500;
	    color: #333;
	    padding: 0.75rem 1.2rem;
	    transition: background-color 0.2s ease, color 0.2s ease;
	}

	.index-menu-inicio .dropdown-item:hover {
	    background: #f8f9fa;
	    color: #00bf72;
	}

	.index-menu-inicio .dropdown-item.text-danger:hover {
	    background: #ffe5e5;
	    color: #c0392b;
	}

	/* SAUDAÇÃO */
	.index-menu-inicio .dropdown-item strong {
	    color: #00bf72;
	}

	/* CONTAINER SEÇÃO */
	.index-menu-inicio .section_index {
	    background: #f4f6f9;
	    padding: 2.5rem 3rem;
	    min-height: calc(100vh - 80px);
	}

	/* LAYOUT FLEX DOS CARDS */
	.index-menu-inicio .row_index {
	    display: flex;
	    flex-wrap: wrap;
	    justify-content: center;
	    gap: 2rem;
	    margin-top: 2rem;
	}

	/* DASHBOARD CARD */
	/* DASHBOARD CARD - Versão refinada */
	.index-menu-inicio .dashboard-card {
	    background: #fff;
	    border-radius: 16px;
	    padding: 1.5rem 1.2rem;
	    width: 260px;
	    max-width: 100%;
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	    text-align: center;
	    cursor: pointer;
	    position: relative;
	    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
	    border: 1px solid #e6e6e6;
	    transition: all 0.3s ease-in-out;
	}

	/* Efeito ao passar o mouse */
	.index-menu-inicio .dashboard-card:hover {
	    transform: translateY(-6px);
	    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	    border-color: #00bf72;
	}

	/* Ícone dos cards */
	.index-menu-inicio .dashboard-card img {
	    width: 48px;
	    height: 48px;
	    margin-bottom: 1rem;
	    object-fit: contain;
	    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.08));
	    transition: transform 0.2s ease;
	}

	.index-menu-inicio .dashboard-card:hover img {
	    transform: scale(1.08);
	}

	.dashboard-card {
	    text-decoration: none;
	    color: #082444;
	    /* Herda a cor do elemento pai */
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	    padding: 1rem;
	    border-radius: 8px;
	    transition: box-shadow 0.3s ease;
	    background-color: #fff;
	    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	}

	.dashboard-card:hover {
	    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}

	.dashboard-card h3 {
	    font-weight: 800;
	    /* Deixa o título mais grosso */
	    font-size: 1.25rem;
	    color: #082444;
	    margin-bottom: 0.5rem;
	    text-transform: uppercase;
	    letter-spacing: 0.75px;
	    text-decoration: none;
	    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	}




	/* Linha inferior animada (apenas estética no hover) */
	.index-menu-inicio .dashboard-card::after {
	    content: "";
	    position: absolute;
	    bottom: 0;
	    left: 0;
	    width: 100%;
	    height: 4px;
	    background: linear-gradient(to right, #00bf72, #008793);
	    transform: scaleX(0);
	    transform-origin: left;
	    transition: transform 0.3s ease;
	    border-radius: 0 0 16px 16px;
	}

	.index-menu-inicio .dashboard-card:hover::after {
	    transform: scaleX(1);
	}

	.dashboard-card {
	    display: flex;
	    align-items: center;
	    gap: 10px;
	    /* espaço entre os elementos */
	    flex-wrap: wrap;
	    /* se precisar quebrar linha */
	}

	.dashboard-card img {
	    width: 40px;
	    height: auto;
	    margin-bottom: 10px;
	}

	/* RESPONSIVO */
	@media (max-width: 768px) {
	    .index-menu-inicio .navCustom {
	        flex-direction: column;
	        align-items: flex-start;
	        text-align: left;
	        padding: 1.2rem;
	    }

	    .index-menu-inicio .navbar-nav {
	        flex-direction: row;
	        justify-content: center;
	        width: 100%;
	    }

	    .index-menu-inicio .row_index {
	        flex-direction: column;
	        align-items: center;
	    }

	    .index-menu-inicio .dashboard-card {
	        width: 90%;
	    }
	}

	.foto-usuario {
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    width: 48px;
	    height: 48px;
	    border-radius: 50%;
	    background-color: #f9f9f9;
	    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.08);
	    transition: box-shadow 0.25s ease, transform 0.2s ease;
	    cursor: pointer;
	}

	.foto-usuario:hover {
	    box-shadow: 0 0 0 2px rgba(2, 255, 36, 0.3), 0 4px 10px rgba(0, 0, 0, 0.1);
	    transform: translateY(-1px);
	}

	.foto-usuario img {
	    width: 100%;
	    height: 100%;
	    border-radius: 50%;
	    object-fit: cover;
	    display: block;
	}