

    /* ===== CARROSSEL CORRIGIDO ===== */
    .carousel-container {
        margin-top: 40px;
    }

    .carousel-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        gap: 20px;
    }

    .carousel-buttons {
        display: flex;
        gap: 10px;
    }

    .carousel-btn {
        background-color: #00B3FF;
        color: #000;
        padding: 8px 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        font-size: 12px;
        transition: 0.3s ease;
    }

    .carousel-btn:hover {
        opacity: 0.85;
        transform: translateY(-1px);
    }

    .carousel-wrapper {
        overflow: hidden;
        border-radius: 12px;
    }

    .carousel {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 15px;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
    }

    .carousel::-webkit-scrollbar {
        height: 6px;
    }

    .carousel::-webkit-scrollbar-track {
        background: #111;
        border-radius: 3px;
    }

    .carousel::-webkit-scrollbar-thumb {
        background: #00B3FF;
        border-radius: 3px;
    }

    .carousel-card {
        flex: 0 0 calc(33.333% - 14px);
        min-width: 300px;
        background-color: #1a1a1a;
        border: 1px solid #00B3FF;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: 0.3s ease;
        scroll-snap-align: start;
    }

    .carousel-card:hover {
        border-color: #6A3DFF;
        box-shadow: 0 0 20px rgba(0, 179, 255, 0.15);
    }

    .carousel-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .carousel-card .card-content {
        padding: 15px;
        flex: 1;
    }

    .carousel-card h3 {
        font-size: 14px;
        margin-bottom: 8px;
        color: #fff;
    }

    .carousel-card p {
        font-size: 12px;
        color: #aaa;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .card-meta {
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: 11px;
        color: #666;
    }

    .card-meta span {
        display: flex;
        gap: 4px;
    }

    .card-footer {
        padding: 12px 15px;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
    }

    .progress-info {
        display: flex;
        justify-content: space-between;
        margin-bottom: 6px;
        font-size: 12px;
    }

    .progress-label {
        color: #aaa;
    }

    .progress-percent {
        color: #00B3FF;
        font-weight: 600;
    }

    .progress-bar {
        background-color: #111;
        height: 6px;
        border-radius: 3px;
        overflow: hidden;
    }

    .progress-fill {
        background: linear-gradient(90deg, #00B3FF, #6A3DFF);
        height: 100%;
        border-radius: 3px;
        transition: width 0.3s ease;
    }

    .carousel-card .btn {
        margin: 12px 15px;
        width: calc(100% - 30px);
    }

    /* ===== IDEIAS ===== */
    .ideas-section {
        margin-top: 40px;
    }

    .ideas-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .ideas-link {
        color: #00B3FF;
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        transition: 0.2s ease;
    }

    .ideas-link:hover {
        text-decoration: underline;
    }

    .ideas-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }

    .idea {
        background-color: #1a1a1a;
        border: 1px solid #00B3FF;
        border-radius: 8px;
        padding: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        transition: 0.3s ease;
    }

    .idea:hover {
        border-color: #6A3DFF;
        box-shadow: 0 0 15px rgba(0, 179, 255, 0.1);
    }

    .idea p {
        font-size: 12px;
        color: #aaa;
        margin: 0;
        flex: 1;
    }

    .btn-editar {
        color: #00B3FF;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 14px;
        transition: 0.2s ease;
        flex-shrink: 0;
    }

    .btn-editar:hover {
        color: #6A3DFF;
        transform: scale(1.2);
    }

    /* ===== CALENDÁRIO ===== */
    .calendar-section {
        margin-top: 40px;
    }

    .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .calendar-link {
        color: #00B3FF;
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        transition: 0.2s ease;
    }

    .calendar-link:hover {
        text-decoration: underline;
    }

    .calendar-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .day {
        background-color: #1a1a1a;
        border: 1px solid #00B3FF;
        border-radius: 8px;
        padding: 15px;
        transition: 0.3s ease;
    }

    .day:hover {
        border-color: #6A3DFF;
        box-shadow: 0 0 15px rgba(0, 179, 255, 0.1);
    }

    .date {
        font-size: 13px;
        font-weight: 600;
        color: #00B3FF;
        margin-bottom: 10px;
    }

    .activities {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .activity {
        font-size: 12px;
        color: #aaa;
        padding-left: 12px;
        position: relative;
    }

    .activity:before {
        content: "•";
        position: absolute;
        left: 0;
        color: #00B3FF;
    }

    /* ===== PROJETOS EM RISCO ===== */
    .projetos-risco {
        margin-top: 40px;
    }

    .projetos-risco h3 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #00B3FF;
    }

    .risco-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .card-risco {
        background-color: #1a1a1a;
        padding: 15px;
        border-radius: 8px;
        border: 1px solid #ff6b6b;
    }

    .card-risco h4 {
        font-size: 14px;
        margin-bottom: 10px;
        color: #fff;
    }

    .card-risco .atraso {
        color: #ff6b6b;
        font-weight: 600;
        font-size: 12px;
    }

    .card-risco .motivo {
        color: #aaa;
        font-size: 12px;
        margin-top: 5px;
    }

    /* ===== GRÁFICOS ===== */
    .graficos-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .grafico-wrapper {
        background-color: #1a1a1a;
        padding: 20px;
        border-radius: 8px;
        border: 1px solid #00B3FF;
    }

    .grafico-wrapper h3 {
        font-size: 14px;
        margin-bottom: 15px;
        color: #00B3FF;
    }

    .grafico-wrapper canvas {
        width: 100% !important;
        height: 250px !important;
    }

    .botoes-grafico {
        display: flex;
        gap: 10px;
        margin-top: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-grafico {
        background-color: #222;
        color: #fff;
        padding: 8px 12px;
        border: 1px solid #333;
        border-radius: 6px;
        cursor: pointer;
        font-size: 12px;
        transition: 0.3s ease;
    }

    .btn-grafico:hover,
    .btn-grafico.active {
        background-color: #00B3FF;
        color: #000;
        border-color: #00B3FF;
    }

    /* ===== TABELA ===== */
    .tabela-atividades {
        margin-top: 40px;
    }

    .tabela-atividades h3 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #00B3FF;
    }

    .status-concluido {
        color: #51cf66;
        font-weight: 600;
        font-size: 12px;
    }

    .status-progresso {
        color: #ffd43b;
        font-weight: 600;
        font-size: 12px;
    }

    .status-atraso {
        color: #ff6b6b;
        font-weight: 600;
        font-size: 12px;
    }

    /* ===== RESPONSIVO ===== */
    @media (max-width: 1024px) {
        .carousel-card {
            flex: 0 0 calc(50% - 10px);
            min-width: 250px;
        }

        .ideas-list {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        }

        .calendar-container {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .carousel-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .carousel-card {
            flex: 0 0 calc(100% - 20px);
            min-width: 100%;
        }

        .carousel-buttons {
            width: 100%;
        }

        .carousel-btn {
            flex: 1;
        }

        .ideas-list {
            grid-template-columns: 1fr;
        }

        .calendar-container {
            grid-template-columns: 1fr;
        }

        .graficos-container {
            grid-template-columns: 1fr;
        }
    }
