    .titulo-pagina {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1f2937;
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
        padding-bottom: 1rem;
    }
    
    .titulo-pagina::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6, #2563eb, #1d4ed8);
        border-radius: 2px;
    }

    /* Custom styles for pills */
    .nav-pills .nav-link {
        color: #555;
        font-weight: 600;
        border-radius: 50px;
        padding: 10px 25px;
        margin: 0 5px;
        transition: all 0.3s ease;
    }

    .nav-pills .nav-link.active {
        background-color: #3b82f6;
        color: white;
        box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    }

    .info-card {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 2rem;
        margin-bottom: 2rem;
        border: none;
        text-align: center;
    }
    
    .img-coleta {
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .img-coleta:hover {
        transform: scale(1.02);
    }